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