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