Mercurial > emacs
annotate lisp/language/thai-util.el @ 97656:0ddcae8d4119
(handle_interrupt) [MSDOS]: Call cursor_to with SELECTED_FRAME as
additional (1st) argument.
(tty_read_avail_input): Handle output_msdos_raw in addition to output_termcap.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 23 Aug 2008 16:52:37 +0000 |
parents | 55b7f25d920a |
children | 8e246e0bdbba |
rev | line source |
---|---|
36683
b82a6fbaae16
Add coding: iso-2022-7bit tag.
Kenichi Handa <handa@m17n.org>
parents:
29360
diff
changeset
|
1 ;;; thai-util.el --- utilities for Thai -*- coding: iso-2022-7bit; -*- |
17052 | 2 |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
74544
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
79711 | 4 ;; 2005, 2006, 2007, 2008 |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
5 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
6 ;; Registration Number H14PRO021 |
79711 | 7 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
74544 | 8 ;; Free Software Foundation, Inc. |
17052 | 9 |
88761 | 10 ;; Keywords: mule, multilingual, Thai, i18n |
17052 | 11 |
12 ;; This file is part of GNU Emacs. | |
13 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17052 | 15 ;; it under the terms of the GNU General Public License as published by |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
16 ;; the Free Software Foundation, either version 3 of the License, or |
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
17 ;; (at your option) any later version. |
17052 | 18 |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17052 | 26 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36683
diff
changeset
|
27 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36683
diff
changeset
|
28 |
17052 | 29 ;;; Code: |
30 | |
65203
a66eae7cedb1
(thai-auto-composition-mode): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64085
diff
changeset
|
31 (defvar thai-auto-composition-mode) |
a66eae7cedb1
(thai-auto-composition-mode): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64085
diff
changeset
|
32 |
17052 | 33 ;; Setting information of Thai characters. |
34 | |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
35 (defconst thai-category-table (make-category-table)) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
36 (define-category ?c "Thai consonant" thai-category-table) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
37 (define-category ?v "Thai upper/lower vowel" thai-category-table) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
38 (define-category ?t "Thai tone mark" thai-category-table) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
39 (define-category ?u "Thai tone mark and upper sign" thai-category-table) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
40 (define-category ?I "THAI CHARACTER SARA I" thai-category-table) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
41 (define-category ?U "THAI CHARACTER THANTHAKHAT" thai-category-table) |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
42 |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
43 ;; The general composing rules are as follows: |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
44 ;; |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
45 ;; T |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
46 ;; V U V U |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
47 ;; CV -> C, CU -> C, CVT -> C, Cv -> C, CvU -> C |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
48 ;; v v |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
49 ;; |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
50 ;; where C: consonant, V: vowel upper, v: vowel lower, |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
51 ;; T: tone mark, U: tone mark and upper sign. |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
52 ;; Special rule: The sign `,Tl(B' can be put on the vowel `,TT(B'. |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
53 |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
54 |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
55 (defvar thai-composition-pattern |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
56 "\\cc\\(\\cu\\|\\cI\\cU\\|\\cv\\ct?\\)\\|\\cv\\ct\\|\\cI\\cU" |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
57 "Regular expression matching a Thai composite sequence.") |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
58 |
17052 | 59 (let ((l '((?,T!(B consonant "LETTER KO KAI") ; 0xA1 |
60 (?,T"(B consonant "LETTER KHO KHAI") ; 0xA2 | |
61 (?,T#(B consonant "LETTER KHO KHUAT") ; 0xA3 | |
62 (?,T$(B consonant "LETTER KHO KHWAI") ; 0xA4 | |
63 (?,T%(B consonant "LETTER KHO KHON") ; 0xA5 | |
64 (?,T&(B consonant "LETTER KHO RAKHANG") ; 0xA6 | |
65 (?,T'(B consonant "LETTER NGO NGU") ; 0xA7 | |
66 (?,T((B consonant "LETTER CHO CHAN") ; 0xA8 | |
67 (?,T)(B consonant "LETTER CHO CHING") ; 0xA9 | |
68 (?,T*(B consonant "LETTER CHO CHANG") ; 0xAA | |
69 (?,T+(B consonant "LETTER SO SO") ; 0xAB | |
70 (?,T,(B consonant "LETTER CHO CHOE") ; 0xAC | |
71 (?,T-(B consonant "LETTER YO YING") ; 0xAD | |
72 (?,T.(B consonant "LETTER DO CHADA") ; 0xAE | |
73 (?,T/(B consonant "LETTER TO PATAK") ; 0xAF | |
74 (?,T0(B consonant "LETTER THO THAN") ; 0xB0 | |
75 (?,T1(B consonant "LETTER THO NANGMONTHO") ; 0xB1 | |
76 (?,T2(B consonant "LETTER THO PHUTHAO") ; 0xB2 | |
77 (?,T3(B consonant "LETTER NO NEN") ; 0xB3 | |
78 (?,T4(B consonant "LETTER DO DEK") ; 0xB4 | |
79 (?,T5(B consonant "LETTER TO TAO") ; 0xB5 | |
80 (?,T6(B consonant "LETTER THO THUNG") ; 0xB6 | |
81 (?,T7(B consonant "LETTER THO THAHAN") ; 0xB7 | |
82 (?,T8(B consonant "LETTER THO THONG") ; 0xB8 | |
83 (?,T9(B consonant "LETTER NO NU") ; 0xB9 | |
84 (?,T:(B consonant "LETTER BO BAIMAI") ; 0xBA | |
85 (?,T;(B consonant "LETTER PO PLA") ; 0xBB | |
86 (?,T<(B consonant "LETTER PHO PHUNG") ; 0xBC | |
87 (?,T=(B consonant "LETTER FO FA") ; 0xBD | |
88 (?,T>(B consonant "LETTER PHO PHAN") ; 0xBE | |
89 (?,T?(B consonant "LETTER FO FAN") ; 0xBF | |
90 (?,T@(B consonant "LETTER PHO SAMPHAO") ; 0xC0 | |
91 (?,TA(B consonant "LETTER MO MA") ; 0xC1 | |
92 (?,TB(B consonant "LETTER YO YAK") ; 0xC2 | |
93 (?,TC(B consonant "LETTER RO RUA") ; 0xC3 | |
94 (?,TD(B vowel-base "LETTER RU (Pali vowel letter)") ; 0xC4 | |
95 (?,TE(B consonant "LETTER LO LING") ; 0xC5 | |
96 (?,TF(B vowel-base "LETTER LU (Pali vowel letter)") ; 0xC6 | |
97 (?,TG(B consonant "LETTER WO WAEN") ; 0xC7 | |
98 (?,TH(B consonant "LETTER SO SALA") ; 0xC8 | |
99 (?,TI(B consonant "LETTER SO RUSI") ; 0xC9 | |
100 (?,TJ(B consonant "LETTER SO SUA") ; 0xCA | |
101 (?,TK(B consonant "LETTER HO HIP") ; 0xCB | |
102 (?,TL(B consonant "LETTER LO CHULA") ; 0xCC | |
103 (?,TM(B consonant "LETTER O ANG") ; 0xCD | |
104 (?,TN(B consonant "LETTER HO NOK HUK") ; 0xCE | |
105 (?,TO(B special "PAI YAN NOI (abbreviation)") ; 0xCF | |
106 (?,TP(B vowel-base "VOWEL SIGN SARA A") ; 0xD0 | |
107 (?,TQ(B vowel-upper "VOWEL SIGN MAI HAN-AKAT N/S-T") ; 0xD1 | |
108 (?,TR(B vowel-base "VOWEL SIGN SARA AA") ; 0xD2 | |
109 (?,TS(B vowel-base "VOWEL SIGN SARA AM") ; 0xD3 | |
110 (?,TT(B vowel-upper "VOWEL SIGN SARA I N/S-T") ; 0xD4 | |
111 (?,TU(B vowel-upper "VOWEL SIGN SARA II N/S-T") ; 0xD5 | |
112 (?,TV(B vowel-upper "VOWEL SIGN SARA UE N/S-T") ; 0xD6 | |
113 (?,TW(B vowel-upper "VOWEL SIGN SARA UEE N/S-T") ; 0xD7 | |
114 (?,TX(B vowel-lower "VOWEL SIGN SARA U N/S-B") ; 0xD8 | |
115 (?,TY(B vowel-lower "VOWEL SIGN SARA UU N/S-B") ; 0xD9 | |
116 (?,TZ(B vowel-lower "VOWEL SIGN PHINTHU N/S-B (Pali virama)") ; 0xDA | |
117 (?,T[(B invalid nil) ; 0xDA | |
118 (?,T\(B invalid nil) ; 0xDC | |
119 (?,T](B invalid nil) ; 0xDC | |
120 (?,T^(B invalid nil) ; 0xDC | |
121 (?,T_(B special "BAHT SIGN (currency symbol)") ; 0xDF | |
122 (?,T`(B vowel-base "VOWEL SIGN SARA E") ; 0xE0 | |
123 (?,Ta(B vowel-base "VOWEL SIGN SARA AE") ; 0xE1 | |
124 (?,Tb(B vowel-base "VOWEL SIGN SARA O") ; 0xE2 | |
125 (?,Tc(B vowel-base "VOWEL SIGN SARA MAI MUAN") ; 0xE3 | |
126 (?,Td(B vowel-base "VOWEL SIGN SARA MAI MALAI") ; 0xE4 | |
127 (?,Te(B vowel-base "LAK KHANG YAO") ; 0xE5 | |
128 (?,Tf(B special "MAI YAMOK (repetion)") ; 0xE6 | |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
129 (?,Tg(B sign-upper "VOWEL SIGN MAI TAI KHU N/S-T") ; 0xE7 |
17052 | 130 (?,Th(B tone "TONE MAI EK N/S-T") ; 0xE8 |
131 (?,Ti(B tone "TONE MAI THO N/S-T") ; 0xE9 | |
132 (?,Tj(B tone "TONE MAI TRI N/S-T") ; 0xEA | |
133 (?,Tk(B tone "TONE MAI CHATTAWA N/S-T") ; 0xEB | |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
134 (?,Tl(B sign-upper "THANTHAKHAT N/S-T (cancellation mark)") ; 0xEC |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
135 (?,Tm(B sign-upper "NIKKHAHIT N/S-T (final nasal)") ; 0xED |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
136 (?,Tn(B sign-upper "YAMAKKAN N/S-T") ; 0xEE |
17052 | 137 (?,To(B special "FONRMAN") ; 0xEF |
138 (?,Tp(B special "DIGIT ZERO") ; 0xF0 | |
139 (?,Tq(B special "DIGIT ONE") ; 0xF1 | |
140 (?,Tr(B special "DIGIT TWO") ; 0xF2 | |
141 (?,Ts(B special "DIGIT THREE") ; 0xF3 | |
142 (?,Tt(B special "DIGIT FOUR") ; 0xF4 | |
143 (?,Tu(B special "DIGIT FIVE") ; 0xF5 | |
144 (?,Tv(B special "DIGIT SIX") ; 0xF6 | |
145 (?,Tw(B special "DIGIT SEVEN") ; 0xF7 | |
146 (?,Tx(B special "DIGIT EIGHT") ; 0xF8 | |
147 (?,Ty(B special "DIGIT NINE") ; 0xF9 | |
148 (?,Tz(B special "ANGKHANKHU (ellipsis)") ; 0xFA | |
149 (?,T{(B special "KHOMUT (beginning of religious texts)") ; 0xFB | |
150 (?,T|(B invalid nil) ; 0xFC | |
151 (?,T}(B invalid nil) ; 0xFD | |
152 (?,T~(B invalid nil) ; 0xFE | |
153 )) | |
154 elm) | |
155 (while l | |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
156 (setq elm (car l) l (cdr l)) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
157 (let ((char (car elm)) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
158 (ptype (nth 1 elm))) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
159 (put-char-code-property char 'phonetic-type ptype) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
160 (cond ((eq ptype 'consonant) |
90138 | 161 (modify-category-entry char ?c thai-category-table)) |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
162 ((memq ptype '(vowel-upper vowel-lower)) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
163 (modify-category-entry char ?v thai-category-table) |
90130 | 164 (if (= char ?,TT(B) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
165 ;; Give category `I' to "SARA I". |
90130 | 166 (modify-category-entry char ?I thai-category-table))) |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
167 ((eq ptype 'tone) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
168 (modify-category-entry char ?t thai-category-table) |
90130 | 169 (modify-category-entry char ?u thai-category-table)) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
170 ((eq ptype 'sign-upper) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
171 (modify-category-entry char ?u thai-category-table) |
90130 | 172 (if (= char ?,Tl(B) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
173 ;; Give category `U' to "THANTHAKHAT". |
90130 | 174 (modify-category-entry char ?U thai-category-table)))) |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
175 (put-char-code-property char 'name (nth 2 elm))))) |
23546
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
176 |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
177 (defun thai-compose-syllable (beg end &optional category-set string) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
178 (or category-set |
61281
68eb0186eb0d
(thai-auto-composition-mode, thai-word-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61082
diff
changeset
|
179 (setq category-set |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
180 (char-category-set (if string (aref string beg) (char-after beg))))) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
181 (if (aref category-set ?c) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
182 ;; Starting with a consonant. We do relative composition. |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
183 (if string |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
184 (compose-string string beg end) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
185 (compose-region beg end)) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
186 ;; Vowel tone sequence. |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
187 (if string |
61281
68eb0186eb0d
(thai-auto-composition-mode, thai-word-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61082
diff
changeset
|
188 (compose-string string beg end (list (aref string beg) '(Bc . Bc) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
189 (aref string (1+ beg)))) |
61281
68eb0186eb0d
(thai-auto-composition-mode, thai-word-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61082
diff
changeset
|
190 (compose-region beg end (list (char-after beg) '(Bc . Bc) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
191 (char-after (1+ beg)))))) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
192 (- end beg)) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
193 |
17052 | 194 ;;;###autoload |
195 (defun thai-compose-region (beg end) | |
196 "Compose Thai characters in the region. | |
197 When called from a program, expects two arguments, | |
198 positions (integers or markers) specifying the region." | |
199 (interactive "r") | |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
200 (let ((pos (point))) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
201 (save-restriction |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
202 (narrow-to-region beg end) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
203 (goto-char (point-min)) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
204 (with-category-table thai-category-table |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
205 (while (re-search-forward thai-composition-pattern nil t) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
206 (setq beg (match-beginning 0) end (match-end 0)) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
207 (if (and (> pos beg) (< pos end)) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
208 (setq pos end)) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
209 (thai-compose-syllable beg end |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
210 (char-category-set (char-after beg)))))) |
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
211 (goto-char pos))) |
17052 | 212 |
213 ;;;###autoload | |
23994
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
214 (defun thai-compose-string (string) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
215 "Compose Thai characters in STRING and return the resulting string." |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
216 (with-category-table thai-category-table |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
217 (let ((idx 0)) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
218 (while (setq idx (string-match thai-composition-pattern string idx)) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
219 (thai-compose-syllable idx (match-end 0) nil string) |
26892
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
220 (setq idx (match-end 0))))) |
fce3871ada53
(thai-category-table): Use
Kenichi Handa <handa@m17n.org>
parents:
23994
diff
changeset
|
221 string) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48043
diff
changeset
|
222 |
23994
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
223 ;;;###autoload |
17052 | 224 (defun thai-compose-buffer () |
225 "Compose Thai characters in the current buffer." | |
226 (interactive) | |
227 (thai-compose-region (point-min) (point-max))) | |
228 | |
229 ;;;###autoload | |
91284
d1ec766050a6
(thai-composition-function): Fix arguments.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
230 (defun thai-composition-function (pos to font-object string) |
89302
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
231 (setq pos (1- pos)) |
60703
e3798cf289c0
Fix categorization of Thai characters in
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
232 (with-category-table thai-category-table |
89302
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
233 (if string |
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
234 (if (and (>= pos 0) |
90130 | 235 (eq (string-match thai-composition-pattern string pos) pos)) |
89302
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
236 (prog1 (match-end 0) |
90130 | 237 (thai-compose-syllable pos (match-end 0) nil string))) |
89302
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
238 (if (>= pos (point-min)) |
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
239 (progn |
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
240 (goto-char pos) |
90130 | 241 (if (looking-at thai-composition-pattern) |
89302
b1774ad77cc7
(thai-post-read-conversion): Delete this
Kenichi Handa <handa@m17n.org>
parents:
88761
diff
changeset
|
242 (prog1 (match-end 0) |
90130 | 243 (thai-compose-syllable pos (match-end 0))))))))) |
17052 | 244 |
61080 | 245 ;; Thai-word-mode requires functions in the feature `thai-word'. |
246 (require 'thai-word) | |
247 | |
248 (defvar thai-word-mode-map | |
249 (let ((map (make-sparse-keymap))) | |
250 (define-key map [remap forward-word] 'thai-forward-word) | |
251 (define-key map [remap backward-word] 'thai-backward-word) | |
252 (define-key map [remap kill-word] 'thai-kill-word) | |
253 (define-key map [remap backward-kill-word] 'thai-backward-kill-word) | |
254 (define-key map [remap transpose-words] 'thai-transpose-words) | |
255 map) | |
256 "Keymap for `thai-word-mode'.") | |
257 | |
258 (define-minor-mode thai-word-mode | |
259 "Minor mode to make word-oriented commands aware of Thai words. | |
260 The commands affected are \\[forward-word], \\[backward-word], \\[kill-word], \\[backward-kill-word], \\[transpose-words], and \\[fill-paragraph]." | |
61281
68eb0186eb0d
(thai-auto-composition-mode, thai-word-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61082
diff
changeset
|
261 :global t :group 'mule |
61080 | 262 (cond (thai-word-mode |
263 ;; This enables linebreak between Thai characters. | |
264 (modify-category-entry (make-char 'thai-tis620) ?|) | |
265 ;; This enables linebreak at a Thai word boundary. | |
266 (put-charset-property 'thai-tis620 'fill-find-break-point-function | |
267 'thai-fill-find-break-point)) | |
268 (t | |
269 (modify-category-entry (make-char 'thai-tis620) ?| nil t) | |
270 (put-charset-property 'thai-tis620 'fill-find-break-point-function | |
271 nil)))) | |
272 | |
273 ;; Function to call on entering the Thai language environment. | |
274 (defun setup-thai-language-environment-internal () | |
275 (thai-word-mode 1)) | |
276 | |
277 ;; Function to call on exiting the Thai language environment. | |
278 (defun exit-thai-language-environment-internal () | |
279 (thai-word-mode -1)) | |
280 | |
17052 | 281 ;; |
18309
bd8b521f5218
Provide XXX-util instead of
Kenichi Handa <handa@m17n.org>
parents:
18203
diff
changeset
|
282 (provide 'thai-util) |
17052 | 283 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
284 ;; arch-tag: 59425d6a-8cf9-4e06-a6ab-8ab7dc7a7a97 |
17052 | 285 ;;; thai-util.el ends here |