1 ;;; lao.el --- Quail package for inputting Lao characters -*-coding: iso-2022-7bit;-*-
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
6 ;; Registration Number H14PRO021
8 ;; Keywords: multilingual, input method, Lao
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 2, or (at your option)
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; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
34 (defun quail-lao-update-translation (control-flag)
35 (if (integerp control-flag
)
36 ;; Non-composable character typed.
37 (setq quail-current-str
38 (buffer-substring (overlay-start quail-overlay
)
39 (overlay-end quail-overlay
))
42 (substring quail-current-key control-flag
)))
43 (setq quail-current-str
44 (compose-string (quail-lookup-map-and-concat quail-current-key
))))
58 ("+" .
["\e(1mh\e(B"])
80 ("A" .
["\e(1Qi\e(B"])
81 ("B" .
["\e(1Vi\e(B"])
84 ("E" .
["\e(1Si\e(B"])
93 ("N" .
["\e(1Wi\e(B"])
96 ("Q" .
["\e(1[i\e(B"])
100 ("U" .
["\e(1Ui\e(B"])
104 ("Y" .
["\e(1Ti\e(B"])
138 ("|" .
["\e(1K\\e(B"])
141 ("\\0" .
"\e(1p\e(B")
142 ("\\1" .
"\e(1q\e(B")
143 ("\\2" .
"\e(1r\e(B")
144 ("\\3" .
"\e(1s\e(B")
145 ("\\4" .
"\e(1t\e(B")
146 ("\\5" .
"\e(1u\e(B")
147 ("\\6" .
"\e(1v\e(B")
148 ("\\7" .
"\e(1w\e(B")
149 ("\\8" .
"\e(1x\e(B")
150 ("\\9" .
"\e(1y\e(B")
152 "Alist of key sequences vs the corresponding Lao string to input.
153 This variable is for the input method \"lao\".
154 If you change the value of this variable while quail/lao is already loaded,
155 you need to re-load it to properly re-initialize related alists.")
157 ;; Temporary variable to initialize lao-consonant-key-alist, etc.
158 (defconst lao-key-alist-vector
159 (let ((tail lao-key-alist
)
160 consonant-key-alist semivowel-key-alist vowel-key-alist
161 voweltone-key-alist tone-key-alist other-key-alist
164 (setq elt
(car tail
) tail
(cdr tail
))
165 (if (stringp (cdr elt
))
166 (setq phonetic-type
(get-char-code-property (aref (cdr elt
) 0)
168 (setq phonetic-type
(get-char-code-property (aref (aref (cdr elt
) 0) 0)
170 (aset (cdr elt
) 0 (compose-string (aref (cdr elt
) 0))))
171 (cond ((eq phonetic-type
'consonant
)
172 (setq consonant-key-alist
(cons elt consonant-key-alist
)))
173 ((memq phonetic-type
'(vowel-upper vowel-lower
))
174 (if (stringp (cdr elt
))
175 (setq vowel-key-alist
(cons elt vowel-key-alist
))
176 (setq voweltone-key-alist
(cons elt voweltone-key-alist
))))
177 ((eq phonetic-type
'tone
)
178 (setq tone-key-alist
(cons elt tone-key-alist
)))
179 ((eq phonetic-type
'semivowel-lower
)
180 (setq semivowel-key-alist
(cons elt semivowel-key-alist
)))
182 (setq other-key-alist
(cons elt other-key-alist
)))))
183 (vector consonant-key-alist semivowel-key-alist vowel-key-alist
184 voweltone-key-alist tone-key-alist other-key-alist
)))
186 (defconst lao-consonant-key-alist
(aref lao-key-alist-vector
0))
187 (defconst lao-semivowel-key-alist
(aref lao-key-alist-vector
1))
188 (defconst lao-vowel-key-alist
(aref lao-key-alist-vector
2))
189 (defconst lao-voweltone-key-alist
(aref lao-key-alist-vector
3))
190 (defconst lao-tone-key-alist
(aref lao-key-alist-vector
4))
191 (defconst lao-other-key-alist
(aref lao-key-alist-vector
5))
194 (makunbound 'lao-key-alist-vector
)
196 (quail-define-package
197 "lao" "Lao" "\e(1E\e(B" t
198 "Lao input method simulating Lao keyboard layout based on Thai TIS620"
199 nil t t t t nil nil nil
'quail-lao-update-translation nil t
)
202 (quail-map-from-table
203 '((base-state (lao-consonant-key-alist . svt-state
)
205 lao-voweltone-key-alist
208 (svt-state (lao-semivowel-key-alist . v-state
)
209 (lao-vowel-key-alist . t-state
)
210 lao-voweltone-key-alist
)
211 (v-state (lao-vowel-key-alist . t-state
))
212 (t-state lao-tone-key-alist
))))
214 ;;; arch-tag: 23863a30-a8bf-402c-b7ce-c517a7aa8570