]> code.delx.au - gnu-emacs/blob - lisp/international/quail.el
Tweak previous change.
[gnu-emacs] / lisp / international / quail.el
1 ;;; quail.el --- provides simple input method for multilingual text
2
3 ;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6 ;; 2005, 2006, 2007, 2008, 2009
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
8 ;; Registration Number H14PRO021
9
10 ;; Author: Kenichi HANDA <handa@etl.go.jp>
11 ;; Naoto TAKAHASHI <ntakahas@etl.go.jp>
12 ;; Maintainer: Kenichi HANDA <handa@etl.go.jp>
13 ;; Keywords: mule, multilingual, input method, i18n
14
15 ;; This file is part of GNU Emacs.
16
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation, either version 3 of the License, or
20 ;; (at your option) any later version.
21
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
26
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29
30 ;;; Commentary:
31
32 ;; In Quail minor mode, you can input multilingual text easily. By
33 ;; defining a translation table (named Quail map) which maps ASCII key
34 ;; string to multilingual character or string, you can input any text
35 ;; from ASCII keyboard.
36 ;;
37 ;; We use words "translation" and "conversion" differently. The
38 ;; former is done by Quail package itself, the latter is the further
39 ;; process of converting a translated text to some more desirable
40 ;; text. For instance, Quail package for Japanese (`quail-jp')
41 ;; translates Roman text (transliteration of Japanese in Latin
42 ;; alphabets) to Hiragana text, which is then converted to
43 ;; Kanji-and-Kana mixed text or Katakana text by commands specified in
44 ;; CONVERSION-KEYS argument of the Quail package.
45
46 ;; [There was an input method for Mule 2.3 called `Tamago' from the
47 ;; Japanese `TAkusan MAtasete GOmenasai', or `Sorry for having you
48 ;; wait so long'; this couldn't be included in Emacs 20. `Tamago' is
49 ;; Japanese for `egg' (implicitly a hen's egg). Handa-san made a
50 ;; smaller and simpler system; the smaller quail egg is also eaten in
51 ;; Japan. Maybe others will be egged on to write more sorts of input
52 ;; methods.]
53
54 ;;; Code:
55
56 (require 'help-mode)
57
58 (defgroup quail nil
59 "Quail: multilingual input method."
60 :group 'leim)
61
62 ;; Buffer local variables
63
64 (defvar quail-current-package nil
65 "The current Quail package, which depends on the current input method.
66 See the documentation of `quail-package-alist' for the format.")
67 (make-variable-buffer-local 'quail-current-package)
68 (put 'quail-current-package 'permanent-local t)
69
70 ;; Quail uses the following variables to assist users.
71 ;; A string containing available key sequences or translation list.
72 (defvar quail-guidance-str nil)
73 ;; A buffer to show completion list of the current key sequence.
74 (defvar quail-completion-buf nil)
75 ;; We may display the guidance string in a buffer on a one-line frame.
76 (defvar quail-guidance-buf nil)
77 (defvar quail-guidance-frame nil)
78
79 ;; Each buffer in which Quail is activated should use different
80 ;; guidance string.
81 (make-variable-buffer-local 'quail-guidance-str)
82 (put 'quail-guidance-str 'permanent-local t)
83
84 (defvar quail-overlay nil
85 "Overlay which covers the current translation region of Quail.")
86 (make-variable-buffer-local 'quail-overlay)
87
88 (defvar quail-conv-overlay nil
89 "Overlay which covers the text to be converted in Quail mode.")
90 (make-variable-buffer-local 'quail-conv-overlay)
91
92 (defvar quail-current-key nil
93 "Current key for translation in Quail mode.")
94 (make-variable-buffer-local 'quail-current-key)
95
96 (defvar quail-current-str nil
97 "Currently selected translation of the current key.")
98 (make-variable-buffer-local 'quail-current-str)
99
100 (defvar quail-current-translations nil
101 "Cons of indices and vector of possible translations of the current key.
102 Indices is a list of (CURRENT START END BLOCK BLOCKS), where
103 CURRENT is an index of the current translation,
104 START and END are indices of the start and end of the current block,
105 BLOCK is the current block index,
106 BLOCKS is a number of blocks of translation.")
107 (make-variable-buffer-local 'quail-current-translations)
108
109 (defvar quail-current-data nil
110 "Any Lisp object holding information of current translation status.
111 When a key sequence is mapped to TRANS and TRANS is a cons
112 of actual translation and some Lisp object to be referred
113 for translating the longer key sequence, this variable is set
114 to that Lisp object.")
115 (make-variable-buffer-local 'quail-current-data)
116
117 ;; Quail package handlers.
118
119 (defvar quail-package-alist nil
120 "List of Quail packages.
121 A Quail package is a list of these elements:
122 NAME, TITLE, QUAIL-MAP, GUIDANCE, DOCSTRING, TRANSLATION-KEYS,
123 FORGET-LAST-SELECTION, DETERMINISTIC, KBD-TRANSLATE, SHOW-LAYOUT,
124 DECODE-MAP, MAXIMUM-SHORTEST, OVERLAY-PLIST, UPDATE-TRANSLATION-FUNCTION,
125 CONVERSION-KEYS, SIMPLE.
126
127 QUAIL-MAP is a data structure to map key strings to translations. For
128 the format, see the documentation of `quail-map-p'.
129
130 DECODE-MAP is an alist of translations and corresponding keys.
131
132 See the documentation of `quail-define-package' for the other elements.")
133
134 ;; Return various slots in the current quail-package.
135
136 (defsubst quail-name ()
137 "Return the name of the current Quail package."
138 (nth 0 quail-current-package))
139
140 (defun quail-indent-to (col)
141 (indent-to col)
142 (let ((end (point)))
143 (save-excursion
144 (unless (zerop (skip-chars-backward "\t "))
145 (put-text-property (point) end 'display (list 'space :align-to col))))))
146
147 ;;;###autoload
148 (defun quail-title ()
149 "Return the title of the current Quail package."
150 (let ((title (nth 1 quail-current-package)))
151 ;; TITLE may be a string or a list. If it is a list, each element
152 ;; is a string or the form (VAR STR1 STR2), and the interpretation
153 ;; of the list is the same as that of mode-line-format.
154 (if (stringp title)
155 title
156 (condition-case nil
157 (mapconcat
158 (lambda (x)
159 (cond ((stringp x) x)
160 ((and (listp x) (symbolp (car x)) (= (length x) 3))
161 (if (symbol-value (car x))
162 (nth 1 x) (nth 2 x)))
163 (t "")))
164 title "")
165 (error "")))))
166 (defsubst quail-map ()
167 "Return the translation map of the current Quail package."
168 (nth 2 quail-current-package))
169 (defsubst quail-guidance ()
170 "Return an object used for `guidance' feature of the current Quail package.
171 See also the documentation of `quail-define-package'."
172 (nth 3 quail-current-package))
173 (defsubst quail-docstring ()
174 "Return the documentation string of the current Quail package."
175 (nth 4 quail-current-package))
176 (defsubst quail-translation-keymap ()
177 "Return translation keymap in the current Quail package.
178 Translation keymap is a keymap used while translation region is active."
179 (nth 5 quail-current-package))
180 (defsubst quail-forget-last-selection ()
181 "Return `forget-last-selection' flag of the current Quail package.
182 See also the documentation of `quail-define-package'."
183 (nth 6 quail-current-package))
184 (defsubst quail-deterministic ()
185 "Return `deterministic' flag of the current Quail package.
186 See also the documentation of `quail-define-package'."
187 (nth 7 quail-current-package))
188 (defsubst quail-kbd-translate ()
189 "Return `kbd-translate' flag of the current Quail package.
190 See also the documentation of `quail-define-package'."
191 (nth 8 quail-current-package))
192 (defsubst quail-show-layout ()
193 "Return `show-layout' flag of the current Quail package.
194 See also the documentation of `quail-define-package'."
195 (nth 9 quail-current-package))
196 (defsubst quail-decode-map ()
197 "Return decode map of the current Quail package.
198 It is an alist of translations and corresponding keys."
199 (nth 10 quail-current-package))
200 (defsubst quail-maximum-shortest ()
201 "Return `maximum-shortest' flag of the current Quail package.
202 See also the documentation of `quail-define-package'."
203 (nth 11 quail-current-package))
204 (defsubst quail-overlay-plist ()
205 "Return property list of an overly used in the current Quail package."
206 (nth 12 quail-current-package))
207 (defsubst quail-update-translation-function ()
208 "Return a function for updating translation in the current Quail package."
209 (nth 13 quail-current-package))
210 (defsubst quail-conversion-keymap ()
211 "Return conversion keymap in the current Quail package.
212 Conversion keymap is a keymap used while conversion region is active
213 but translation region is not active."
214 (nth 14 quail-current-package))
215 (defsubst quail-simple ()
216 "Return t if the current Quail package is simple."
217 (nth 15 quail-current-package))
218
219 (defsubst quail-package (name)
220 "Return Quail package named NAME."
221 (assoc name quail-package-alist))
222
223 (defun quail-add-package (package)
224 "Add Quail package PACKAGE to `quail-package-alist'."
225 (let ((pac (quail-package (car package))))
226 (if pac
227 (setcdr pac (cdr package))
228 (setq quail-package-alist (cons package quail-package-alist)))))
229
230 (defun quail-select-package (name)
231 "Select Quail package named NAME as the current Quail package."
232 (let ((package (quail-package name)))
233 (if (null package)
234 (error "No Quail package `%s'" name))
235 (setq quail-current-package package)
236 (setq-default quail-current-package package)
237 name))
238
239 ;;;###autoload
240 (defun quail-use-package (package-name &rest libraries)
241 "Start using Quail package PACKAGE-NAME.
242 The remaining arguments are LIBRARIES to be loaded before using the package.
243
244 This activates input method defined by PACKAGE-NAME by running
245 `quail-activate', which see."
246 (let ((package (quail-package package-name)))
247 (if (null package)
248 ;; Perhaps we have not yet loaded necessary libraries.
249 (while libraries
250 (if (not (load (car libraries) t))
251 (progn
252 (with-output-to-temp-buffer "*Help*"
253 (princ "Quail package \"")
254 (princ package-name)
255 (princ "\" can't be activated\n because library \"")
256 (princ (car libraries))
257 (princ "\" is not in `load-path'.
258
259 The most common case is that you have not yet installed appropriate
260 libraries in LEIM (Libraries of Emacs Input Method) which is
261 distributed separately from Emacs.
262
263 LEIM is available from the same ftp directory as Emacs."))
264 (error "Can't use the Quail package `%s'" package-name))
265 (setq libraries (cdr libraries))))))
266 (quail-select-package package-name)
267 (setq current-input-method-title (quail-title))
268 (quail-activate)
269 ;; Hide all '... loaded' message.
270 (message nil))
271
272 (defvar quail-translation-keymap
273 (let ((map (make-keymap))
274 (i 0))
275 (while (< i ?\ )
276 (define-key map (char-to-string i) 'quail-other-command)
277 (setq i (1+ i)))
278 (while (< i 127)
279 (define-key map (char-to-string i) 'quail-self-insert-command)
280 (setq i (1+ i)))
281 (setq i 128)
282 (while (< i 256)
283 (define-key map (vector i) 'quail-self-insert-command)
284 (setq i (1+ i)))
285 (define-key map "\177" 'quail-delete-last-char)
286 (define-key map "\C-f" 'quail-next-translation)
287 (define-key map "\C-b" 'quail-prev-translation)
288 (define-key map "\C-n" 'quail-next-translation-block)
289 (define-key map "\C-p" 'quail-prev-translation-block)
290 (define-key map [right] 'quail-next-translation)
291 (define-key map [left] 'quail-prev-translation)
292 (define-key map [down] 'quail-next-translation-block)
293 (define-key map [up] 'quail-prev-translation-block)
294 (define-key map "\C-i" 'quail-completion)
295 (define-key map "\C-@" 'quail-select-current)
296 ;; Following simple.el, Enter key on numeric keypad selects the
297 ;; current translation just like `C-SPC', and `mouse-2' chooses
298 ;; any completion visible in the *Quail Completions* buffer.
299 (define-key map [kp-enter] 'quail-select-current)
300 (define-key map [mouse-2] 'quail-mouse-choose-completion)
301 (define-key map [down-mouse-2] nil)
302 (define-key map "\C-h" 'quail-translation-help)
303 (define-key map [?\C- ] 'quail-select-current)
304 (define-key map [tab] 'quail-completion)
305 (define-key map [delete] 'quail-delete-last-char)
306 (define-key map [backspace] 'quail-delete-last-char)
307 map)
308 "Keymap used processing translation in complex Quail modes.
309 Only a few especially complex input methods use this map;
310 most use `quail-simple-translation-keymap' instead.
311 This map is activated while translation region is active.")
312
313 (defvar quail-translation-docstring
314 "When you type keys, the echo area shows the possible characters
315 which correspond to that key sequence, each preceded by a digit. You
316 can select one of the characters shown by typing the corresponding
317 digit. Alternatively, you can use C-f and C-b to move through the
318 line to select the character you want, then type a letter to begin
319 entering another Chinese character or type a space or punctuation
320 character.
321
322 If there are more than ten possible characters for the given spelling,
323 the echo area shows ten characters at a time; you can use C-n to move
324 to the next group of ten, and C-p to move back to the previous group
325 of ten.")
326
327 ;; Categorize each Quail commands to make the output of quail-help
328 ;; concise. This is done by putting `quail-help' property. The value
329 ;; is:
330 ;; hide -- never show this command
331 ;; non-deterministic -- show only for non-deterministic input method
332 (let ((l '((quail-other-command . hide)
333 (quail-self-insert-command . hide)
334 (quail-delete-last-char . hide)
335 (quail-next-translation . non-deterministic)
336 (quail-prev-translation . non-deterministic)
337 (quail-next-translation-block . non-deterministic)
338 (quail-prev-translation-block . non-deterministic))))
339 (while l
340 (put (car (car l)) 'quail-help (cdr (car l)))
341 (setq l (cdr l))))
342
343 (defvar quail-simple-translation-keymap
344 (let ((map (make-keymap))
345 (i 0))
346 (while (< i ?\ )
347 (define-key map (char-to-string i) 'quail-other-command)
348 (setq i (1+ i)))
349 (while (< i 127)
350 (define-key map (char-to-string i) 'quail-self-insert-command)
351 (setq i (1+ i)))
352 (setq i 128)
353 (while (< i 256)
354 (define-key map (vector i) 'quail-self-insert-command)
355 (setq i (1+ i)))
356 (define-key map "\177" 'quail-delete-last-char)
357 (define-key map [delete] 'quail-delete-last-char)
358 (define-key map [backspace] 'quail-delete-last-char)
359 ;;(let ((meta-map (make-sparse-keymap)))
360 ;;(define-key map (char-to-string meta-prefix-char) meta-map)
361 ;;(define-key map [escape] meta-map))
362 map)
363 "Keymap used while processing translation in simple Quail modes.
364 A few especially complex input methods use `quail-translation-keymap' instead.
365 This map is activated while translation region is active.")
366
367 (defvar quail-conversion-keymap
368 (let ((map (make-keymap))
369 (i ?\ ))
370 (while (< i 127)
371 (define-key map (char-to-string i) 'quail-self-insert-command)
372 (setq i (1+ i)))
373 (setq i 128)
374 (while (< i 256)
375 (define-key map (vector i) 'quail-self-insert-command)
376 (setq i (1+ i)))
377 (define-key map "\C-b" 'quail-conversion-backward-char)
378 (define-key map "\C-f" 'quail-conversion-forward-char)
379 (define-key map "\C-a" 'quail-conversion-beginning-of-region)
380 (define-key map "\C-e" 'quail-conversion-end-of-region)
381 (define-key map "\C-d" 'quail-conversion-delete-char)
382 (define-key map "\C-k" 'quail-conversion-delete-tail)
383 (define-key map "\C-h" 'quail-translation-help)
384 (define-key map "\177" 'quail-conversion-backward-delete-char)
385 (define-key map [delete] 'quail-conversion-backward-delete-char)
386 (define-key map [backspace] 'quail-conversion-backward-delete-char)
387 map)
388 "Keymap used for processing conversion in Quail mode.
389 This map is activated while conversion region is active but translation
390 region is not active.")
391
392 ;; Just a dummy definition.
393 (defun quail-other-command ()
394 (interactive)
395 )
396
397 ;;;###autoload
398 (defun quail-define-package (name language title
399 &optional guidance docstring translation-keys
400 forget-last-selection deterministic
401 kbd-translate show-layout create-decode-map
402 maximum-shortest overlay-plist
403 update-translation-function
404 conversion-keys simple)
405 "Define NAME as a new Quail package for input LANGUAGE.
406 TITLE is a string to be displayed at mode-line to indicate this package.
407 Optional arguments are GUIDANCE, DOCSTRING, TRANSLATION-KEYS,
408 FORGET-LAST-SELECTION, DETERMINISTIC, KBD-TRANSLATE, SHOW-LAYOUT,
409 CREATE-DECODE-MAP, MAXIMUM-SHORTEST, OVERLAY-PLIST,
410 UPDATE-TRANSLATION-FUNCTION, CONVERSION-KEYS and SIMPLE.
411
412 GUIDANCE specifies how a guidance string is shown in echo area.
413 If it is t, list of all possible translations for the current key is shown
414 with the currently selected translation being highlighted.
415 If it is an alist, the element has the form (CHAR . STRING). Each character
416 in the current key is searched in the list and the corresponding string is
417 shown.
418 If it is nil, the current key is shown.
419
420 DOCSTRING is the documentation string of this package. The command
421 `describe-input-method' shows this string while replacing the form
422 \\=\\<VAR> in the string by the value of VAR. That value should be a
423 string. For instance, the form \\=\\<quail-translation-docstring> is
424 replaced by a description about how to select a translation from a
425 list of candidates.
426
427 TRANSLATION-KEYS specifies additional key bindings used while translation
428 region is active. It is an alist of single key character vs. corresponding
429 command to be called.
430
431 FORGET-LAST-SELECTION non-nil means a selected translation is not kept
432 for the future to translate the same key. If this flag is nil, a
433 translation selected for a key is remembered so that it can be the
434 first candidate when the same key is entered later.
435
436 DETERMINISTIC non-nil means the first candidate of translation is
437 selected automatically without allowing users to select another
438 translation for a key. In this case, unselected translations are of
439 no use for an interactive use of Quail but can be used by some other
440 programs. If this flag is non-nil, FORGET-LAST-SELECTION is also set
441 to t.
442
443 KBD-TRANSLATE non-nil means input characters are translated from a
444 user's keyboard layout to the standard keyboard layout. See the
445 documentation of `quail-keyboard-layout' and
446 `quail-keyboard-layout-standard' for more detail.
447
448 SHOW-LAYOUT non-nil means the `quail-help' command should show
449 the user's keyboard layout visually with translated characters.
450 If KBD-TRANSLATE is set, it is desirable to set also this flag unless
451 this package defines no translations for single character keys.
452
453 CREATE-DECODE-MAP non-nil means decode map is also created. A decode
454 map is an alist of translations and corresponding original keys.
455 Although this map is not used by Quail itself, it can be used by some
456 other programs. For instance, Vietnamese supporting needs this map to
457 convert Vietnamese text to VIQR format which uses only ASCII
458 characters to represent Vietnamese characters.
459
460 MAXIMUM-SHORTEST non-nil means break key sequence to get maximum
461 length of the shortest sequence. When we don't have a translation of
462 key \"..ABCD\" but have translations of \"..AB\" and \"CD..\", break
463 the key at \"..AB\" and start translation of \"CD..\". Hangul
464 packages, for instance, use this facility. If this flag is nil, we
465 break the key just at \"..ABC\" and start translation of \"D..\".
466
467 OVERLAY-PLIST if non-nil is a property list put on an overlay which
468 covers Quail translation region.
469
470 UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update
471 the current translation region according to a new translation data. By
472 default, a translated text or a user's key sequence (if no translation
473 for it) is inserted.
474
475 CONVERSION-KEYS specifies additional key bindings used while
476 conversion region is active. It is an alist of single key character
477 vs. corresponding command to be called.
478
479 If SIMPLE is non-nil, then we do not alter the meanings of
480 commands such as C-f, C-b, C-n, C-p and TAB; they are treated as
481 non-Quail commands."
482 (let (translation-keymap conversion-keymap)
483 (if deterministic (setq forget-last-selection t))
484 (if translation-keys
485 (progn
486 (setq translation-keymap (copy-keymap
487 (if simple quail-simple-translation-keymap
488 quail-translation-keymap)))
489 (while translation-keys
490 (define-key translation-keymap
491 (car (car translation-keys)) (cdr (car translation-keys)))
492 (setq translation-keys (cdr translation-keys))))
493 (setq translation-keymap
494 (if simple quail-simple-translation-keymap
495 quail-translation-keymap)))
496 (when conversion-keys
497 (setq conversion-keymap (copy-keymap quail-conversion-keymap))
498 (while conversion-keys
499 (define-key conversion-keymap
500 (car (car conversion-keys)) (cdr (car conversion-keys)))
501 (setq conversion-keys (cdr conversion-keys))))
502 (quail-add-package
503 (list name title (list nil) guidance (or docstring "")
504 translation-keymap
505 forget-last-selection deterministic kbd-translate show-layout
506 (if create-decode-map (list 'decode-map) nil)
507 maximum-shortest overlay-plist update-translation-function
508 conversion-keymap simple))
509
510 ;; Update input-method-alist.
511 (let ((slot (assoc name input-method-alist))
512 (val (list language 'quail-use-package title docstring)))
513 (if slot (setcdr slot val)
514 (setq input-method-alist (cons (cons name val) input-method-alist)))))
515
516 (quail-select-package name))
517
518 ;; Quail minor mode handlers.
519
520 ;; Setup overlays used in Quail mode.
521 (defun quail-setup-overlays (conversion-mode)
522 (let ((pos (point)))
523 (if (overlayp quail-overlay)
524 (move-overlay quail-overlay pos pos)
525 (setq quail-overlay (make-overlay pos pos))
526 (if input-method-highlight-flag
527 (overlay-put quail-overlay 'face 'underline))
528 (let ((l (quail-overlay-plist)))
529 (while l
530 (overlay-put quail-overlay (car l) (car (cdr l)))
531 (setq l (cdr (cdr l))))))
532 (if conversion-mode
533 (if (overlayp quail-conv-overlay)
534 (if (not (overlay-start quail-conv-overlay))
535 (move-overlay quail-conv-overlay pos pos))
536 (setq quail-conv-overlay (make-overlay pos pos))
537 (if input-method-highlight-flag
538 (overlay-put quail-conv-overlay 'face 'underline))))))
539
540 ;; Delete overlays used in Quail mode.
541 (defun quail-delete-overlays ()
542 (if (and (overlayp quail-overlay) (overlay-start quail-overlay))
543 (delete-overlay quail-overlay))
544 (if (and (overlayp quail-conv-overlay) (overlay-start quail-conv-overlay))
545 (delete-overlay quail-conv-overlay)))
546
547 (defun quail-inactivate ()
548 "Inactivate Quail input method.
549
550 This function runs the normal hook `quail-inactivate-hook'."
551 (interactive)
552 (quail-activate -1))
553
554 (defun quail-activate (&optional arg)
555 "Activate Quail input method.
556 With ARG, activate Quail input method if and only if arg is positive.
557
558 This function runs `quail-activate-hook' if it activates the input
559 method, `quail-inactivate-hook' if it deactivates it.
560
561 While this input method is active, the variable
562 `input-method-function' is bound to the function `quail-input-method'."
563 (if (and arg
564 (< (prefix-numeric-value arg) 0))
565 ;; Let's inactivate Quail input method.
566 (unwind-protect
567 (progn
568 (quail-delete-overlays)
569 (setq describe-current-input-method-function nil)
570 (quail-hide-guidance)
571 (remove-hook 'post-command-hook 'quail-show-guidance t)
572 (run-hooks 'quail-inactivate-hook))
573 (kill-local-variable 'input-method-function))
574 ;; Let's activate Quail input method.
575 (if (null quail-current-package)
576 ;; Quail package is not yet selected. Select one now.
577 (let (name)
578 (if quail-package-alist
579 (setq name (car (car quail-package-alist)))
580 (error "No Quail package loaded"))
581 (quail-select-package name)))
582 (setq inactivate-current-input-method-function 'quail-inactivate)
583 (setq describe-current-input-method-function 'quail-help)
584 (quail-delete-overlays)
585 (setq quail-guidance-str "")
586 (quail-show-guidance)
587 ;; If we are in minibuffer, turn off the current input method
588 ;; before exiting.
589 (when (eq (selected-window) (minibuffer-window))
590 (add-hook 'minibuffer-exit-hook 'quail-exit-from-minibuffer)
591 (add-hook 'post-command-hook 'quail-show-guidance nil t))
592 (run-hooks 'quail-activate-hook)
593 (make-local-variable 'input-method-function)
594 (setq input-method-function 'quail-input-method)))
595
596 (defun quail-exit-from-minibuffer ()
597 (inactivate-input-method)
598 (if (<= (minibuffer-depth) 1)
599 (remove-hook 'minibuffer-exit-hook 'quail-exit-from-minibuffer)))
600
601 ;; Keyboard layout translation handlers.
602
603 ;; Some Quail packages provide localized keyboard simulation which
604 ;; requires a particular keyboard layout. In this case, what we need
605 ;; is locations of keys the user entered, not character codes
606 ;; generated by those keys. However, for the moment, there's no
607 ;; common way to get such information. So, we ask a user to give
608 ;; information of his own keyboard layout, then translate it to the
609 ;; standard layout which we defined so that all Quail packages depend
610 ;; just on it.
611
612 (defconst quail-keyboard-layout-standard
613 "\
614 \
615 1!2@3#4$5%6^7&8*9(0)-_=+`~ \
616 qQwWeErRtTyYuUiIoOpP[{]} \
617 aAsSdDfFgGhHjJkKlL;:'\"\\| \
618 zZxXcCvVbBnNmM,<.>/? \
619 "
620 "Standard keyboard layout of printable characters Quail assumes.
621 See the documentation of `quail-keyboard-layout' for this format.
622 This layout is almost the same as that of VT100,
623 but the location of key \\ (backslash) is just right of key ' (single-quote),
624 not right of RETURN key.")
625
626 (defconst quail-keyboard-layout-len 180)
627
628 ;; Here we provide several examples of famous keyboard layouts.
629 ;; This is a candidate for a language environment-dependent setting.
630 (defvar quail-keyboard-layout-alist
631 (list
632 (cons "standard" quail-keyboard-layout-standard)
633 '("sun-type3" . "\
634 \
635 1!2@3#4$5%6^7&8*9(0)-_=+\\|`~\
636 qQwWeErRtTyYuUiIoOpP[{]} \
637 aAsSdDfFgGhHjJkKlL;:'\" \
638 zZxXcCvVbBnNmM,<.>/? \
639 ")
640 '("atari-german" . "\
641 \
642 1!2\"3\2474$5%6&7/8(9)0=\337?'`#^ \
643 qQwWeErRtTzZuUiIoOpP\374\334+* \
644 aAsSdDfFgGhHjJkKlL\366\326\344\304~| \
645 <>yYxXcCvVbBnNmM,;.:-_ \
646 ")
647
648 '("pc102-de" . "\
649 \
650 ^\2601!2\"3\2474$5%6&7/8(9)0=\337?\264`#' \
651 qQwWeErRtTzZuUiIoOpP\374\334+* \
652 aAsSdDfFgGhHjJkKlL\366\326\344\304 \
653 <>yYxXcCvVbBnNmM,;.:-_ \
654 ")
655
656 '("jp106" . "\
657 \
658 1!2\"3#4$5%6&7'8(9)0~-=^~\\| \
659 qQwWeErRtTyYuUiIoOpP@`[{ \
660 aAsSdDfFgGhHjJkKlL;+:*]} \
661 zZxXcCvVbBnNmM,<.>/?\\_ \
662 ")
663 '("pc105-uk" . "\
664 \
665 `\2541!2\"3\2434$5%6^7&8*9(0)-_=+ \
666 qQwWeErRtTyYuUiIoOpP[{]} \
667 aAsSdDfFgGhHjJkKlL;:'@#~ \
668 \\|zZxXcCvVbBnNmM,<.>/? \
669 ")
670 )
671 "Alist of keyboard names and corresponding layout strings.
672 See the documentation of `quail-keyboard-layout' for the format of
673 the layout string.")
674
675 (defcustom quail-keyboard-layout quail-keyboard-layout-standard
676 "A string which represents physical key layout of a particular keyboard.
677 We assume there are six rows and each row has 15 keys (columns),
678 the first row is above the `1' - `0' row,
679 the first column of the second row is left of key `1',
680 the first column of the third row is left of key `q',
681 the first column of the fourth row is left of key `a',
682 the first column of the fifth row is left of key `z',
683 the sixth row is below the `z' - `/' row.
684 Nth (N is even) and (N+1)th characters in the string are non-shifted
685 and shifted characters respectively at the same location.
686 The location of Nth character is row (N / 30) and column ((N mod 30) / 2).
687 The command `quail-set-keyboard-layout' usually sets this variable."
688 :group 'quail
689 :type `(choice
690 ,@(mapcar (lambda (pair)
691 (list 'const :tag (car pair) (cdr pair)))
692 quail-keyboard-layout-alist)
693 (string :tag "Other")))
694
695 ;; A non-standard keyboard layout may miss some key locations of the
696 ;; standard layout while having additional key locations not in the
697 ;; standard layout. This alist maps those additional key locations to
698 ;; the missing locations. The value is updated automatically by
699 ;; quail-set-keyboard-layout.
700 (defvar quail-keyboard-layout-substitution nil)
701
702 (defun quail-update-keyboard-layout (kbd-type)
703 (let ((layout (assoc kbd-type quail-keyboard-layout-alist)))
704 (if (null layout)
705 ;; Here, we had better ask a user to define his own keyboard
706 ;; layout interactively.
707 (error "Unknown keyboard type `%s'" kbd-type))
708 (setq quail-keyboard-layout (cdr layout))
709 (let ((i quail-keyboard-layout-len)
710 subst-list missing-list)
711 ;; Sum up additional key locations not in the standard layout in
712 ;; subst-list, and missing key locations in missing-list.
713 (while (> i 0)
714 (setq i (1- i))
715 (if (= (aref quail-keyboard-layout i) ? )
716 (if (/= (aref quail-keyboard-layout-standard i) ? )
717 (setq missing-list (cons i missing-list)))
718 (if (= (aref quail-keyboard-layout-standard i) ? )
719 (setq subst-list (cons (cons i nil) subst-list)))))
720 (setq quail-keyboard-layout-substitution subst-list)
721 ;; If there are additional key locations, map them to missing
722 ;; key locations.
723 (while missing-list
724 (while (and subst-list (cdr (car subst-list)))
725 (setq subst-list (cdr subst-list)))
726 (if subst-list
727 (setcdr (car subst-list) (car missing-list)))
728 (setq missing-list (cdr missing-list))))))
729
730 (defcustom quail-keyboard-layout-type "standard"
731 "Type of keyboard layout used in Quail base input method.
732 Available types are listed in the variable `quail-keyboard-layout-alist'."
733 :group 'quail
734 :type (cons 'choice (mapcar (lambda (elt)
735 (list 'const (car elt)))
736 quail-keyboard-layout-alist))
737 :set #'(lambda (symbol value)
738 (quail-update-keyboard-layout value)
739 (set symbol value)))
740
741 ;;;###autoload
742 (defun quail-set-keyboard-layout (kbd-type)
743 "Set the current keyboard layout to the same as keyboard KBD-TYPE.
744
745 Since some Quail packages depends on a physical layout of keys (not
746 characters generated by them), those are created by assuming the
747 standard layout defined in `quail-keyboard-layout-standard'. This
748 function tells Quail system the layout of your keyboard so that what
749 you type is correctly handled."
750 (interactive
751 (let* ((completion-ignore-case t)
752 (type (completing-read "Keyboard type: "
753 quail-keyboard-layout-alist)))
754 (list type)))
755 (quail-update-keyboard-layout kbd-type)
756 (setq quail-keyboard-layout-type kbd-type))
757
758 (defun quail-keyboard-translate (char)
759 "Translate CHAR to the one in the standard keyboard layout."
760 (if (eq quail-keyboard-layout quail-keyboard-layout-standard)
761 ;; All Quail packages are designed based on
762 ;; `quail-keyboard-layout-standard'.
763 char
764 (let ((i 0))
765 ;; Find the key location on the current keyboard layout.
766 (while (and (< i quail-keyboard-layout-len)
767 (/= char (aref quail-keyboard-layout i)))
768 (setq i (1+ i)))
769 (if (= i quail-keyboard-layout-len)
770 ;; CHAR is not in quail-keyboard-layout, which means that a
771 ;; user typed a key which generated a character code to be
772 ;; handled out of Quail. Just return CHAR and make
773 ;; quail-execute-non-quail-command handle it correctly.
774 char
775 (let ((ch (aref quail-keyboard-layout-standard i)))
776 (if (= ch ?\ )
777 ;; This location not available in the standard keyboard
778 ;; layout. Check if the location is used to substitute
779 ;; for the other location of the standard layout.
780 (if (setq i (cdr (assq i quail-keyboard-layout-substitution)))
781 (aref quail-keyboard-layout-standard i)
782 ;; Just return CHAR as well as above.
783 char)
784 ch))))))
785
786 (defun quail-keyseq-translate (keyseq)
787 (apply 'string
788 (mapcar (function (lambda (x) (quail-keyboard-translate x)))
789 keyseq)))
790
791 (defun quail-insert-kbd-layout (kbd-layout)
792 "Insert the visual keyboard layout table according to KBD-LAYOUT.
793 The format of KBD-LAYOUT is the same as `quail-keyboard-layout'."
794 (let (done-list layout i ch)
795 ;; At first, convert KBD-LAYOUT to the same size vector that
796 ;; contains translated character or string.
797 (setq layout (string-to-vector kbd-layout)
798 i 0)
799 (while (< i quail-keyboard-layout-len)
800 (setq ch (aref kbd-layout i))
801 (if (quail-kbd-translate)
802 (setq ch (quail-keyboard-translate ch)))
803 (let* ((map (cdr (assq ch (cdr (quail-map)))))
804 (translation (and map (quail-get-translation
805 (car map) (char-to-string ch) 1))))
806 (if translation
807 (progn
808 (if (consp translation)
809 (if (> (length (cdr translation)) 0)
810 (setq translation (aref (cdr translation) 0))
811 (setq translation " ")))
812 (setq done-list (cons translation done-list)))
813 (setq translation ch))
814 (aset layout i translation))
815 (setq i (1+ i)))
816
817 (let ((pos (point))
818 (bar "|")
819 lower upper row)
820 ;; Make table without horizontal lines. Each column for a key
821 ;; has the form "| LU |" where L is for lower key and and U is
822 ;; for a upper key. If width of L (U) is greater than 1,
823 ;; preceding (following) space is not inserted.
824 (put-text-property 0 1 'face 'bold bar)
825 (setq i 0)
826 (while (< i quail-keyboard-layout-len)
827 (when (= (% i 30) 0)
828 (setq row (/ i 30))
829 (if (> row 1)
830 (insert-char 32 (+ row (/ (- row 2) 2)))))
831 (setq lower (aref layout i)
832 upper (aref layout (1+ i)))
833 (insert bar)
834 (if (= (if (stringp lower) (string-width lower) (char-width lower)) 1)
835 (insert " "))
836 (insert lower upper)
837 (if (= (if (stringp upper) (string-width upper) (char-width upper)) 1)
838 (insert " "))
839 (setq i (+ i 2))
840 (if (= (% i 30) 0)
841 (insert bar "\n")))
842 ;; Insert horizontal lines while deleting blank key columns at the
843 ;; beginning and end of each line.
844 (save-restriction
845 (narrow-to-region pos (point))
846 (goto-char pos)
847 ;;(while (looking-at "[| ]*$")
848 ;;(forward-line 1)
849 ;;(delete-region pos (point)))
850 (let ((from1 100) (to1 0) from2 to2)
851 (while (not (eobp))
852 (if (looking-at "[| ]*$")
853 ;; The entire row is blank.
854 (delete-region (point) (match-end 0))
855 ;; Delete blank key columns at the head.
856 (if (looking-at " *\\(| \\)+")
857 (subst-char-in-region (point) (match-end 0) ?| ? ))
858 ;; Delete blank key columns at the tail.
859 (if (re-search-forward "\\( |\\)+$" (line-end-position) t)
860 (delete-region (match-beginning 0) (point)))
861 (beginning-of-line))
862 ;; Calculate the start and end columns of a horizontal line.
863 (if (eolp)
864 (setq from2 from1 to2 to1)
865 (skip-chars-forward " ")
866 (setq from2 (current-column))
867 (end-of-line)
868 (setq to2 (current-column))
869 (if (< from2 from1)
870 (setq from1 from2))
871 (if (> to2 to1)
872 (setq to1 to2))
873 (beginning-of-line))
874 ;; If the previous or the current line has at least one key
875 ;; column, insert a horizontal line.
876 (when (> to1 0)
877 (insert-char 32 from1)
878 (setq pos (point))
879 (insert "+")
880 (insert-char ?- (- (- to1 from1) 2))
881 (insert "+")
882 (put-text-property pos (point) 'face 'bold)
883 (insert "\n"))
884 (setq from1 from2 to1 to2)
885 (forward-line 1)))
886 ;; Insert "space bar" box.
887 (forward-line -1)
888 (setq pos (point))
889 (insert
890 " +-----------------------------+
891 | space bar |
892 +-----------------------------+
893 ")
894 (put-text-property pos (point) 'face 'bold)
895 (insert ?\n)))
896
897 done-list))
898
899 ;;;###autoload
900 (defun quail-show-keyboard-layout (&optional keyboard-type)
901 "Show the physical layout of the keyboard type KEYBOARD-TYPE.
902
903 The variable `quail-keyboard-layout-type' holds the currently selected
904 keyboard type."
905 (interactive
906 (list (completing-read "Keyboard type (default current choice): "
907 quail-keyboard-layout-alist
908 nil t)))
909 (or (and keyboard-type (> (length keyboard-type) 0))
910 (setq keyboard-type quail-keyboard-layout-type))
911 (let ((layout (assoc keyboard-type quail-keyboard-layout-alist)))
912 (or layout
913 (error "Unknown keyboard type: %s" keyboard-type))
914 (with-output-to-temp-buffer "*Help*"
915 (with-current-buffer standard-output
916 (insert "Keyboard layout (keyboard type: "
917 keyboard-type
918 ")\n")
919 (quail-insert-kbd-layout (cdr layout))))))
920
921 ;; Quail map
922
923 (defsubst quail-map-p (object)
924 "Return t if OBJECT is a Quail map.
925
926 A Quail map holds information how a particular key should be translated.
927 Its format is (TRANSLATION . ALIST).
928 TRANSLATION is either a character, or a cons (INDEX . VECTOR).
929 In the latter case, each element of VECTOR is a candidate for the translation,
930 and INDEX points the currently selected translation.
931
932 ALIST is normally a list of elements that look like (CHAR . DEFN),
933 where DEFN is another Quail map for a longer key (CHAR added to the
934 current key). It may also be a symbol of a function which returns an
935 alist of the above format.
936
937 Just after a Quail package is read, TRANSLATION may be a string or a
938 vector. Then each element of the string or vector is a candidate for
939 the translation. These objects are transformed to cons cells in the
940 format \(INDEX . VECTOR), as described above."
941 (and (consp object)
942 (let ((translation (car object)))
943 (or (integerp translation) (null translation)
944 (vectorp translation) (stringp translation)
945 (symbolp translation)
946 (and (consp translation) (not (vectorp (cdr translation))))))
947 (let ((alist (cdr object)))
948 (or (and (listp alist) (consp (car alist)))
949 (symbolp alist)))))
950
951 ;;;###autoload
952 (defmacro quail-define-rules (&rest rules)
953 "Define translation rules of the current Quail package.
954 Each argument is a list of KEY and TRANSLATION.
955 KEY is a string meaning a sequence of keystrokes to be translated.
956 TRANSLATION is a character, a string, a vector, a Quail map, or a function.
957 If it is a character, it is the sole translation of KEY.
958 If it is a string, each character is a candidate for the translation.
959 If it is a vector, each element (string or character) is a candidate
960 for the translation.
961 In these cases, a key specific Quail map is generated and assigned to KEY.
962
963 If TRANSLATION is a Quail map or a function symbol which returns a Quail map,
964 it is used to handle KEY.
965
966 The first argument may be an alist of annotations for the following
967 rules. Each element has the form (ANNOTATION . VALUE), where
968 ANNOTATION is a symbol indicating the annotation type. Currently
969 the following annotation types are supported.
970
971 append -- the value non-nil means that the following rules should
972 be appended to the rules of the current Quail package.
973
974 face -- the value is a face to use for displaying TRANSLATIONs in
975 candidate list.
976
977 advice -- the value is a function to call after one of RULES is
978 selected. The function is called with one argument, the
979 selected TRANSLATION string, after the TRANSLATION is
980 inserted.
981
982 no-decode-map --- the value non-nil means that decoding map is not
983 generated for the following translations."
984 (let ((l rules)
985 append no-decode-map props)
986 ;; If the first argument is an alist of annotations, handle them.
987 (if (consp (car (car l)))
988 (let ((annotations (car l)))
989 (setq append (assq 'append annotations))
990 (if append
991 (setq annotations (delete append annotations)
992 append (cdr append)))
993 (setq no-decode-map (assq 'no-decode-map annotations))
994 (if no-decode-map
995 (setq annotations (delete no-decode-map annotations)
996 no-decode-map (cdr no-decode-map)))
997 ;; Convert the remaining annotations to property list PROPS.
998 (dolist (annotation annotations)
999 (setq props
1000 (cons (car annotation)
1001 (cons (cdr annotation)
1002 props))))
1003 (setq l (cdr l))))
1004 ;; Process the remaining arguments one by one.
1005 (if append
1006 ;; There's no way to add new rules at compiling time.
1007 `(let ((tail ',l)
1008 (map (quail-map))
1009 (decode-map (and (quail-decode-map) (not ,no-decode-map)))
1010 (properties ',props)
1011 key trans)
1012 (while tail
1013 (setq key (car (car tail)) trans (car (cdr (car tail)))
1014 tail (cdr tail))
1015 (quail-defrule-internal key trans map t decode-map properties)))
1016 ;; We can build up quail map and decode map at compiling time.
1017 (let ((map (list nil))
1018 (decode-map (if (not no-decode-map) (list 'decode-map)))
1019 key trans)
1020 (while l
1021 (setq key (car (car l)) trans (car (cdr (car l))) l (cdr l))
1022 (quail-defrule-internal key trans map t decode-map props))
1023 `(if (not (quail-decode-map))
1024 (quail-install-map ',map)
1025 (quail-install-map ',map)
1026 (quail-install-decode-map ',decode-map))))))
1027
1028 ;;;###autoload
1029 (defun quail-install-map (map &optional name)
1030 "Install the Quail map MAP in the current Quail package.
1031
1032 Optional 2nd arg NAME, if non-nil, is a name of Quail package for
1033 which to install MAP.
1034
1035 The installed map can be referred by the function `quail-map'."
1036 (if (null quail-current-package)
1037 (error "No current Quail package"))
1038 (if (null (quail-map-p map))
1039 (error "Invalid Quail map `%s'" map))
1040 (setcar (cdr (cdr quail-current-package)) map))
1041
1042 ;;;###autoload
1043 (defun quail-install-decode-map (decode-map &optional name)
1044 "Install the Quail decode map DECODE-MAP in the current Quail package.
1045
1046 Optional 2nd arg NAME, if non-nil, is a name of Quail package for
1047 which to install MAP.
1048
1049 The installed decode map can be referred by the function `quail-decode-map'."
1050 (if (null quail-current-package)
1051 (error "No current Quail package"))
1052 (if (if (consp decode-map)
1053 (eq (car decode-map) 'decode-map)
1054 (if (char-table-p decode-map)
1055 (eq (char-table-subtype decode-map) 'quail-decode-map)))
1056 (setcar (nthcdr 10 quail-current-package) decode-map)
1057 (error "Invalid Quail decode map `%s'" decode-map)))
1058
1059
1060 ;;;###autoload
1061 (defun quail-defrule (key translation &optional name append)
1062 "Add one translation rule, KEY to TRANSLATION, in the current Quail package.
1063 KEY is a string meaning a sequence of keystrokes to be translated.
1064 TRANSLATION is a character, a string, a vector, a Quail map,
1065 a function, or a cons.
1066 It it is a character, it is the sole translation of KEY.
1067 If it is a string, each character is a candidate for the translation.
1068 If it is a vector, each element (string or character) is a candidate
1069 for the translation.
1070 If it is a cons, the car is one of the above and the cdr is a function
1071 to call when translating KEY (the return value is assigned to the
1072 variable `quail-current-data'). If the cdr part is not a function,
1073 the value itself is assigned to `quail-current-data'.
1074 In these cases, a key specific Quail map is generated and assigned to KEY.
1075
1076 If TRANSLATION is a Quail map or a function symbol which returns a Quail map,
1077 it is used to handle KEY.
1078
1079 Optional 3rd argument NAME, if specified, says which Quail package
1080 to define this translation rule in. The default is to define it in the
1081 current Quail package.
1082
1083 Optional 4th argument APPEND, if non-nil, appends TRANSLATION
1084 to the current translations for KEY instead of replacing them."
1085 (if name
1086 (let ((package (quail-package name)))
1087 (if (null package)
1088 (error "No Quail package `%s'" name))
1089 (setq quail-current-package package)))
1090 (quail-defrule-internal key translation (quail-map) append))
1091
1092 (defun quail-vunion (v1 v2)
1093 (apply 'vector
1094 (nreverse (delete-dups (nconc (append v1 ()) (append v2 ()))))))
1095
1096 ;;;###autoload
1097 (defun quail-defrule-internal (key trans map &optional append decode-map props)
1098 "Define KEY as TRANS in a Quail map MAP.
1099
1100 If Optional 4th arg APPEND is non-nil, TRANS is appended to the
1101 current translations for KEY instead of replacing them.
1102
1103 Optional 5th arg DECODE-MAP is a Quail decode map.
1104
1105 Optional 6th arg PROPS is a property list annotating TRANS. See the
1106 function `quail-define-rules' for the detail."
1107 (if (not (or (stringp key) (vectorp key)))
1108 (error "Invalid Quail key `%s'" key))
1109 (if (not (or (numberp trans) (stringp trans) (vectorp trans)
1110 (consp trans)
1111 (symbolp trans)
1112 (quail-map-p trans)))
1113 (error "Invalid Quail translation `%s'" trans))
1114 (if (null (quail-map-p map))
1115 (error "Invalid Quail map `%s'" map))
1116 (let ((len (length key))
1117 (idx 0)
1118 ch entry)
1119 ;; Make a map for registering TRANS if necessary.
1120 (while (< idx len)
1121 (if (null (consp map))
1122 ;; We come here, for example, when we try to define a rule
1123 ;; for "ABC" but a rule for "AB" is already defined as a
1124 ;; symbol.
1125 (error "Quail key %s is too long" key))
1126 (setq ch (aref key idx)
1127 entry (assq ch (cdr map)))
1128 (if (null entry)
1129 (progn
1130 (setq entry (cons ch (list nil)))
1131 (setcdr map (cons entry (cdr map)))))
1132 (setq map (cdr entry))
1133 (setq idx (1+ idx)))
1134 (if (symbolp trans)
1135 (if (cdr map)
1136 ;; We come here, for example, when we try to define a rule
1137 ;; for "AB" as a symbol but a rule for "ABC" is already
1138 ;; defined.
1139 (error "Quail key %s is too short" key)
1140 (setcdr entry trans))
1141 (if (quail-map-p trans)
1142 (if (not (listp (cdr map)))
1143 ;; We come here, for example, when we try to define a rule
1144 ;; for "AB" as a symbol but a rule for "ABC" is already
1145 ;; defined.
1146 (error "Quail key %s is too short" key)
1147 (if (not (listp (cdr trans)))
1148 (if (cdr map)
1149 ;; We come here, for example, when we try to
1150 ;; define a rule for "AB" as a symbol but a rule
1151 ;; for "ABC" is already defined.
1152 (error "Quail key %s is too short" key)
1153 (setcdr entry trans))
1154 (setcdr entry (append trans (cdr map)))))
1155 ;; If PROPS is non-nil or DECODE-MAP is non-nil, convert TRANS
1156 ;; to a vector of strings, add PROPS to each string and record
1157 ;; this rule in DECODE-MAP.
1158 (when (and (or props decode-map)
1159 (not (consp trans)) (not (symbolp trans)))
1160 (if (integerp trans)
1161 (setq trans (vector trans))
1162 (if (stringp trans)
1163 (setq trans (string-to-vector trans))))
1164 (let ((len (length trans))
1165 elt)
1166 (while (> len 0)
1167 (setq len (1- len))
1168 (setq elt (aref trans len))
1169 (if (integerp elt)
1170 (setq elt (char-to-string elt)))
1171 (aset trans len elt)
1172 (if props
1173 (add-text-properties 0 (length elt) props elt))
1174 (if decode-map
1175 (setcdr decode-map
1176 (cons (cons elt key) (cdr decode-map)))))))
1177 (if (and (car map) append)
1178 (let* ((prev (quail-get-translation (car map) key len))
1179 (prevchars (if (integerp prev)
1180 (vector prev)
1181 (cdr prev))))
1182 (if (integerp trans)
1183 (setq trans (vector trans))
1184 (if (stringp trans)
1185 (setq trans (string-to-vector trans))))
1186 (let ((new (quail-vunion prevchars trans)))
1187 (setq trans
1188 (if (equal new prevchars)
1189 ;; Nothing to change, get back to orig value.
1190 prev
1191 (cons (list 0 0 0 0 nil) new))))))
1192 (setcar map trans)))))
1193
1194 (defun quail-get-translation (def key len)
1195 "Return the translation specified as DEF for KEY of length LEN.
1196 The translation is either a character or a cons of the form (INDEX . VECTOR),
1197 where VECTOR is a vector of candidates (character or string) for
1198 the translation, and INDEX points into VECTOR to specify the currently
1199 selected translation."
1200 (if (and def (symbolp def))
1201 (if (functionp def)
1202 ;; DEF is a symbol of a function which returns valid translation.
1203 (setq def (funcall def key len))
1204 (setq def nil)))
1205 (if (and (consp def) (not (vectorp (cdr def))))
1206 (setq def (car def)))
1207
1208 (cond
1209 ((or (integerp def) (consp def))
1210 def)
1211
1212 ((null def)
1213 ;; No translation.
1214 nil)
1215
1216 ((stringp def)
1217 ;; If the length is 1, we don't need vector but a single candidate
1218 ;; as the translation.
1219 (if (= (length def) 1)
1220 (aref def 0)
1221 ;; Each character in DEF is a candidate of translation. Reform
1222 ;; it as (INDICES . VECTOR).
1223 (cons (list 0 0 0 0 nil) (string-to-vector def))))
1224
1225 ((vectorp def)
1226 ;; If the length is 1, and the length of element string is 1, we
1227 ;; don't need vector but a single candidate as the translation.
1228 (if (and (= (length def) 1)
1229 (= (length (aref def 0)) 1))
1230 (aref (aref def 0) 0)
1231 ;; Each element (string or character) in DEF is a candidate of
1232 ;; translation. Reform it as (INDICES . VECTOR).
1233 (cons (list 0 0 0 0 nil) def)))
1234
1235 (t
1236 (error "Invalid object in Quail map: %s" def))))
1237
1238 (defun quail-lookup-key (key &optional len not-reset-indices)
1239 "Lookup KEY of length LEN in the current Quail map and return the definition.
1240 The returned value is a Quail map specific to KEY."
1241 (or len
1242 (setq len (length key)))
1243 (let ((idx 0)
1244 (map (quail-map))
1245 (kbd-translate (quail-kbd-translate))
1246 slot ch translation def)
1247 (while (and map (< idx len))
1248 (setq ch (if kbd-translate (quail-keyboard-translate (aref key idx))
1249 (aref key idx)))
1250 (setq idx (1+ idx))
1251 (if (and (cdr map) (symbolp (cdr map)))
1252 (setcdr map (funcall (cdr map) key idx)))
1253 (setq slot (assq ch (cdr map)))
1254 (if (and (cdr slot) (symbolp (cdr slot)))
1255 (setcdr slot (funcall (cdr slot) key idx)))
1256 (setq map (cdr slot)))
1257 (setq def (car map))
1258 (setq quail-current-translations nil)
1259 (if (and map (setq translation (quail-get-translation def key len)))
1260 (progn
1261 (if (and (consp def) (not (vectorp (cdr def))))
1262 (progn
1263 (if (not (equal (car def) translation))
1264 ;; We must reflect TRANSLATION to car part of DEF.
1265 (setcar def translation))
1266 (setq quail-current-data
1267 (if (functionp (cdr def))
1268 (funcall (cdr def))
1269 (cdr def))))
1270 (if (not (equal def translation))
1271 ;; We must reflect TRANSLATION to car part of MAP.
1272 (setcar map translation)))
1273 (if (and (consp translation) (vectorp (cdr translation)))
1274 (progn
1275 (setq quail-current-translations translation)
1276 (if (and (not not-reset-indices) (quail-forget-last-selection))
1277 (setcar (car quail-current-translations) 0))))))
1278 ;; We may have to reform cdr part of MAP.
1279 (if (and (cdr map) (functionp (cdr map)))
1280 (setcdr map (funcall (cdr map) key len)))
1281 map))
1282
1283 (put 'quail-error 'error-conditions '(quail-error error))
1284 (defun quail-error (&rest args)
1285 (signal 'quail-error (apply 'format args)))
1286
1287 (defun quail-input-string-to-events (str)
1288 "Convert input string STR to a list of events.
1289 If STR has `advice' text property, append the following special event:
1290 \(quail-advice STR)"
1291 (let ((events (mapcar
1292 (lambda (c)
1293 ;; This gives us the chance to unify on input
1294 ;; (e.g. using ucs-tables.el).
1295 (or (and translation-table-for-input
1296 (aref translation-table-for-input c))
1297 c))
1298 str)))
1299 (if (or (get-text-property 0 'advice str)
1300 (next-single-property-change 0 'advice str))
1301 (setq events
1302 (nconc events (list (list 'quail-advice str)))))
1303 events))
1304
1305 (defvar quail-translating nil)
1306 (defvar quail-converting nil)
1307 (defvar quail-conversion-str nil)
1308
1309 (defun quail-input-method (key)
1310 (if (or buffer-read-only
1311 overriding-terminal-local-map
1312 overriding-local-map)
1313 (list key)
1314 (quail-setup-overlays (quail-conversion-keymap))
1315 (let ((modified-p (buffer-modified-p))
1316 (buffer-undo-list t)
1317 (inhibit-modification-hooks t))
1318 (unwind-protect
1319 (let ((input-string (if (quail-conversion-keymap)
1320 (quail-start-conversion key)
1321 (quail-start-translation key))))
1322 (setq quail-guidance-str "")
1323 (when (and (stringp input-string)
1324 (> (length input-string) 0))
1325 (if input-method-exit-on-first-char
1326 (list (aref input-string 0))
1327 (quail-input-string-to-events input-string))))
1328 (quail-delete-overlays)
1329 (set-buffer-modified-p modified-p)
1330 ;; Run this hook only when the current input method doesn't require
1331 ;; conversion. When conversion is required, the conversion function
1332 ;; should run this hook at a proper timing.
1333 (unless (quail-conversion-keymap)
1334 (run-hooks 'input-method-after-insert-chunk-hook))))))
1335
1336 (defun quail-overlay-region-events (overlay)
1337 (let ((start (overlay-start overlay))
1338 (end (overlay-end overlay)))
1339 (if (< start end)
1340 (prog1
1341 (string-to-list (buffer-substring start end))
1342 (delete-region start end)))))
1343
1344 (defsubst quail-delete-region ()
1345 "Delete the text in the current translation region of Quail."
1346 (if (overlay-start quail-overlay)
1347 (delete-region (overlay-start quail-overlay)
1348 (overlay-end quail-overlay))))
1349
1350 (defun quail-start-translation (key)
1351 "Start translation of the typed character KEY by the current Quail package.
1352 Return the input string."
1353 ;; Check the possibility of translating KEY.
1354 ;; If KEY is nil, we can anyway start translation.
1355 (if (or (and (integerp key)
1356 (assq (if (quail-kbd-translate)
1357 (quail-keyboard-translate key) key)
1358 (cdr (quail-map))))
1359 (null key))
1360 ;; OK, we can start translation.
1361 (let* ((echo-keystrokes 0)
1362 (help-char nil)
1363 (overriding-terminal-local-map (quail-translation-keymap))
1364 (generated-events nil) ;FIXME: What is this?
1365 (input-method-function nil)
1366 (modified-p (buffer-modified-p))
1367 last-command-event last-command this-command)
1368 (setq quail-current-key ""
1369 quail-current-str ""
1370 quail-translating t)
1371 (if key
1372 (setq unread-command-events (cons key unread-command-events)))
1373 (while quail-translating
1374 (set-buffer-modified-p modified-p)
1375 (quail-show-guidance)
1376 (let* ((prompt (if input-method-use-echo-area
1377 (format "%s%s %s"
1378 (or input-method-previous-message "")
1379 quail-current-str
1380 quail-guidance-str)))
1381 (keyseq (read-key-sequence prompt nil nil t))
1382 (cmd (lookup-key (quail-translation-keymap) keyseq)))
1383 (if (if key
1384 (and (commandp cmd) (not (eq cmd 'quail-other-command)))
1385 (eq cmd 'quail-self-insert-command))
1386 (progn
1387 (setq last-command-event (aref keyseq (1- (length keyseq)))
1388 last-command this-command
1389 this-command cmd)
1390 (setq key t)
1391 (condition-case err
1392 (call-interactively cmd)
1393 (quail-error (message "%s" (cdr err)) (beep))))
1394 ;; KEYSEQ is not defined in the translation keymap.
1395 ;; Let's return the event(s) to the caller.
1396 (setq unread-command-events
1397 (string-to-list (this-single-command-raw-keys)))
1398 (setq quail-translating nil))))
1399 (quail-delete-region)
1400 quail-current-str)
1401
1402 ;; Since KEY doesn't start any translation, just return it.
1403 ;; But translate KEY if necessary.
1404 (if (quail-kbd-translate)
1405 (setq key (quail-keyboard-translate key)))
1406 (char-to-string key)))
1407
1408 (defun quail-start-conversion (key)
1409 "Start conversion of the typed character KEY by the current Quail package.
1410 Return the input string."
1411 ;; Check the possibility of translating KEY.
1412 ;; If KEY is nil, we can anyway start translation.
1413 (if (or (and (integerp key)
1414 (assq (if (quail-kbd-translate)
1415 (quail-keyboard-translate key) key)
1416 (cdr (quail-map))))
1417 (null key))
1418 ;; Ok, we can start translation and conversion.
1419 (let* ((echo-keystrokes 0)
1420 (help-char nil)
1421 (overriding-terminal-local-map (quail-conversion-keymap))
1422 (generated-events nil) ;FIXME: What is this?
1423 (input-method-function nil)
1424 (modified-p (buffer-modified-p))
1425 last-command-event last-command this-command)
1426 (setq quail-current-key ""
1427 quail-current-str ""
1428 quail-translating t
1429 quail-converting t
1430 quail-conversion-str "")
1431 (if key
1432 (setq unread-command-events (cons key unread-command-events)))
1433 (while quail-converting
1434 (set-buffer-modified-p modified-p)
1435 (or quail-translating
1436 (progn
1437 (setq quail-current-key ""
1438 quail-current-str ""
1439 quail-translating t)
1440 (quail-setup-overlays nil)))
1441 (quail-show-guidance)
1442 (let* ((prompt (if input-method-use-echo-area
1443 (format "%s%s%s %s"
1444 (or input-method-previous-message "")
1445 quail-conversion-str
1446 quail-current-str
1447 quail-guidance-str)))
1448 (keyseq (read-key-sequence prompt nil nil t))
1449 (cmd (lookup-key (quail-conversion-keymap) keyseq)))
1450 (if (if key (commandp cmd) (eq cmd 'quail-self-insert-command))
1451 (progn
1452 (setq last-command-event (aref keyseq (1- (length keyseq)))
1453 last-command this-command
1454 this-command cmd)
1455 (setq key t)
1456 (condition-case err
1457 (call-interactively cmd)
1458 (quail-error (message "%s" (cdr err)) (beep)))
1459 (or quail-translating
1460 (progn
1461 (if quail-current-str
1462 (setq quail-conversion-str
1463 (concat quail-conversion-str
1464 (if (stringp quail-current-str)
1465 quail-current-str
1466 (char-to-string quail-current-str)))))
1467 (if (or input-method-exit-on-first-char
1468 (= (length quail-conversion-str) 0))
1469 (setq quail-converting nil)))))
1470 ;; KEYSEQ is not defined in the conversion keymap.
1471 ;; Let's return the event(s) to the caller.
1472 (setq unread-command-events
1473 (string-to-list (this-single-command-raw-keys)))
1474 (setq quail-converting nil))))
1475 (setq quail-translating nil)
1476 (if (overlay-start quail-conv-overlay)
1477 (delete-region (overlay-start quail-conv-overlay)
1478 (overlay-end quail-conv-overlay)))
1479 (if (> (length quail-conversion-str) 0)
1480 quail-conversion-str))
1481
1482 ;; Since KEY doesn't start any translation, just return it.
1483 ;; But translate KEY if necessary.
1484 (if (quail-kbd-translate)
1485 (setq key (quail-keyboard-translate key)))
1486 (char-to-string key)))
1487
1488 (defun quail-terminate-translation ()
1489 "Terminate the translation of the current key."
1490 (setq quail-translating nil)
1491 (setq quail-guidance-str " "))
1492
1493 (defun quail-select-current ()
1494 "Accept the currently selected translation."
1495 (interactive)
1496 (quail-terminate-translation))
1497
1498 (defun quail-update-translation (control-flag)
1499 "Update the current translation status according to CONTROL-FLAG.
1500 If CONTROL-FLAG is integer value, it is the number of keys in the
1501 head `quail-current-key' which can be translated. The remaining keys
1502 are put back to `unread-command-events' to be handled again. If
1503 CONTROL-FLAG is t, terminate the translation for the whole keys in
1504 `quail-current-key'. If CONTROL-FLAG is nil, proceed the translation
1505 with more keys."
1506 (let ((func (quail-update-translation-function)))
1507 (if func
1508 (setq control-flag (funcall func control-flag))
1509 (cond ((numberp control-flag)
1510 (let ((len (length quail-current-key)))
1511 (if (= control-flag 0)
1512 (setq quail-current-str
1513 (if (quail-kbd-translate)
1514 (quail-keyseq-translate quail-current-key)
1515 quail-current-key)))
1516 (or input-method-exit-on-first-char
1517 (while (> len control-flag)
1518 (setq len (1- len))
1519 (setq unread-command-events
1520 (cons (aref quail-current-key len)
1521 unread-command-events))))))
1522 ((null control-flag)
1523 (unless quail-current-str
1524 (setq quail-current-str
1525 (if (quail-kbd-translate)
1526 (quail-keyseq-translate quail-current-key)
1527 quail-current-key))
1528 (if (and input-method-exit-on-first-char
1529 (quail-simple))
1530 (setq control-flag t)))))))
1531 (or input-method-use-echo-area
1532 (let (pos)
1533 (quail-delete-region)
1534 (setq pos (point))
1535 (or enable-multibyte-characters
1536 (let (char)
1537 (if (stringp quail-current-str)
1538 (catch 'tag
1539 (mapc #'(lambda (ch)
1540 (when (/= (unibyte-char-to-multibyte
1541 (multibyte-char-to-unibyte ch))
1542 ch)
1543 (setq char ch)
1544 (throw 'tag nil)))
1545 quail-current-str))
1546 (if (/= (unibyte-char-to-multibyte
1547 (multibyte-char-to-unibyte quail-current-str))
1548 quail-current-str)
1549 (setq char quail-current-str)))
1550 (when char
1551 (message "Can't input %c in the current unibyte buffer" char)
1552 (ding)
1553 (sit-for 2)
1554 (message nil)
1555 (setq quail-current-str nil)
1556 (throw 'quail-tag nil))))
1557 (insert quail-current-str)
1558 (move-overlay quail-overlay pos (point))
1559 (if (overlayp quail-conv-overlay)
1560 (if (not (overlay-start quail-conv-overlay))
1561 (move-overlay quail-conv-overlay pos (point))
1562 (if (< (overlay-end quail-conv-overlay) (point))
1563 (move-overlay quail-conv-overlay
1564 (overlay-start quail-conv-overlay)
1565 (point)))))))
1566 (let (quail-current-str)
1567 (quail-update-guidance))
1568 (or (stringp quail-current-str)
1569 (setq quail-current-str (char-to-string quail-current-str)))
1570 (if control-flag
1571 (quail-terminate-translation)))
1572
1573 (defun quail-self-insert-command ()
1574 "Translate the typed key by the current Quail map, and insert."
1575 (interactive "*")
1576 (setq quail-current-key
1577 (concat quail-current-key (char-to-string last-command-event)))
1578 (or (catch 'quail-tag
1579 (quail-update-translation (quail-translate-key))
1580 t)
1581 ;; If someone throws for `quail-tag' by value nil, we exit from
1582 ;; translation mode.
1583 (setq quail-translating nil)))
1584
1585 (defun quail-map-definition (map)
1586 "Return the actual definition part of Quail map MAP."
1587 (let ((def (car map)))
1588 (if (and (consp def) (not (vectorp (cdr def))))
1589 (setq def (car def)))
1590 (if (eq def t)
1591 (setq def nil))
1592 def))
1593
1594 (defun quail-get-current-str (len def)
1595 "Return string to be shown as current translation of key sequence.
1596 LEN is the length of the sequence. DEF is a definition part of the
1597 Quail map for the sequence."
1598 (or (and (consp def)
1599 (if (> (length (cdr def)) (car (car def)))
1600 (aref (cdr def) (car (car def)))
1601 ""))
1602 def
1603 (and (> len 1)
1604 (let* ((str (quail-get-current-str
1605 (1- len)
1606 (quail-map-definition (quail-lookup-key
1607 quail-current-key (1- len)))))
1608 (substr1 (substring quail-current-key (1- len) len))
1609 (str1 (and (quail-deterministic)
1610 (quail-get-current-str
1611 1
1612 (quail-map-definition (quail-lookup-key
1613 substr1 1))))))
1614 (if str
1615 (concat (if (stringp str) str (char-to-string str))
1616 (if str1
1617 (if (stringp str1) str1 (char-to-string str1))
1618 substr1)))))))
1619
1620 (defvar quail-guidance-translations-starting-column 20)
1621
1622 (defun quail-update-current-translations (&optional relative-index)
1623 "Update `quail-current-translations'.
1624 Make RELATIVE-INDEX the current translation."
1625 (let* ((indices (car quail-current-translations))
1626 (cur (car indices))
1627 (start (nth 1 indices))
1628 (end (nth 2 indices)))
1629 ;; Validate the index number of current translation.
1630 (if (< cur 0)
1631 (setcar indices (setq cur 0))
1632 (if (>= cur (length (cdr quail-current-translations)))
1633 (setcar indices
1634 (setq cur (1- (length (cdr quail-current-translations)))))))
1635
1636 (if (or (null end) ; We have not yet calculated END.
1637 (< cur start) ; We moved to the previous block.
1638 (>= cur end)) ; We moved to the next block.
1639 (let ((len (length (cdr quail-current-translations)))
1640 (maxcol (- (window-width)
1641 quail-guidance-translations-starting-column))
1642 (block (nth 3 indices))
1643 col idx width trans num-items)
1644 (if (< cur start)
1645 ;; We must calculate from the head.
1646 (setq start 0 block 0)
1647 (if end ; i.e. (>= cur end)
1648 (setq start end)))
1649 (setq idx start col 0 end start num-items 0)
1650 ;; Loop until we hit the tail, or reach the block of CUR.
1651 (while (and (< idx len) (>= cur end))
1652 (if (= num-items 0)
1653 (setq start idx col 0 block (1+ block)))
1654 (setq trans (aref (cdr quail-current-translations) idx))
1655 (setq width (if (integerp trans) (char-width trans)
1656 (string-width trans)))
1657 (setq col (+ col width 3) num-items (1+ num-items))
1658 (if (and (> num-items 0)
1659 (or (>= col maxcol) (> num-items 10)))
1660 (setq end idx num-items 0)
1661 (setq idx (1+ idx))))
1662 (setcar (nthcdr 3 indices) block)
1663 (if (>= idx len)
1664 (progn
1665 ;; We hit the tail before reaching MAXCOL.
1666 (setq end idx)
1667 (setcar (nthcdr 4 indices) block)))
1668 (setcar (cdr indices) start)
1669 (setcar (nthcdr 2 indices) end)))
1670 (if relative-index
1671 (if (>= (+ start relative-index) end)
1672 (setcar indices (1- end))
1673 (setcar indices (+ start relative-index))))
1674 (setq quail-current-str
1675 (aref (cdr quail-current-translations) (car indices)))
1676 (or (stringp quail-current-str)
1677 (setq quail-current-str (char-to-string quail-current-str)))))
1678
1679 (defun quail-translate-key ()
1680 "Translate the current key sequence according to the current Quail map.
1681 Return t if we can terminate the translation.
1682 Return nil if the current key sequence may be followed by more keys.
1683 Return number if we can't find any translation for the current key
1684 sequence. The number is the count of valid keys in the current
1685 sequence counting from the head."
1686 (let* ((len (length quail-current-key))
1687 (map (quail-lookup-key quail-current-key len))
1688 def ch)
1689 (if map
1690 (let ((def (quail-map-definition map)))
1691 (setq quail-current-str (quail-get-current-str len def))
1692 ;; Return t only if we can terminate the current translation.
1693 (and
1694 ;; No alternative translations.
1695 (or (null (consp def)) (= (length (cdr def)) 1))
1696 ;; No translation for the longer key.
1697 (null (cdr map))
1698 ;; No shorter breaking point.
1699 (or (null (quail-maximum-shortest))
1700 (< len 3)
1701 (null (quail-lookup-key quail-current-key (1- len)))
1702 (null (quail-lookup-key
1703 (substring quail-current-key -2 -1) 1)))))
1704
1705 ;; There's no translation for the current key sequence. Before
1706 ;; giving up, we must check two possibilities.
1707 (cond ((and
1708 (quail-maximum-shortest)
1709 (>= len 3)
1710 (setq def (quail-map-definition
1711 (quail-lookup-key quail-current-key (- len 2))))
1712 (quail-lookup-key (substring quail-current-key -2) 2))
1713 ;; Now the sequence is "...ABCD", which can be split into
1714 ;; "...AB" and "CD..." to get valid translation.
1715 ;; At first, get translation of "...AB".
1716 (setq quail-current-str (quail-get-current-str (- len 2) def))
1717 ;; Then, return the length of "...AB".
1718 (- len 2))
1719
1720 ((and (> len 0)
1721 (quail-lookup-key (substring quail-current-key 0 -1))
1722 quail-current-translations
1723 (not (quail-deterministic))
1724 (setq ch (aref quail-current-key (1- len)))
1725 (>= ch ?0) (<= ch ?9))
1726 ;; A numeric key is entered to select a desirable translation.
1727 (setq quail-current-key (substring quail-current-key 0 -1))
1728 ;; We treat key 1,2..,9,0 as specifying 0,1,..8,9.
1729 (setq ch (if (= ch ?0) 9 (- ch ?1)))
1730 (quail-update-current-translations ch)
1731 ;; And, we can terminate the current translation.
1732 t)
1733
1734 ((quail-deterministic)
1735 ;; No way to handle the last character in this context.
1736 ;; Commit the longest successfully translated characters, and
1737 ;; handle the remaining characters in a new loop.
1738 (setq def nil)
1739 (while (and (not def) (> len 1))
1740 (setq len (1- len))
1741 (setq def (quail-map-definition
1742 (quail-lookup-key quail-current-key len))))
1743 (if def (setq quail-current-str
1744 (quail-get-current-str len def))
1745 (setq quail-current-str (aref quail-current-key 0)))
1746 len)
1747
1748 (t
1749 ;; No way to handle the last character in this context.
1750 (setq def (quail-map-definition
1751 (quail-lookup-key quail-current-key (1- len))))
1752 (if def (setq quail-current-str
1753 (quail-get-current-str (1- len) def)))
1754 (1- len))))))
1755
1756 (defun quail-next-translation ()
1757 "Select next translation in the current batch of candidates."
1758 (interactive)
1759 (if quail-current-translations
1760 (let ((indices (car quail-current-translations)))
1761 (if (= (1+ (car indices)) (length (cdr quail-current-translations)))
1762 ;; We are already at the tail.
1763 (beep)
1764 (setcar indices (1+ (car indices)))
1765 (quail-update-current-translations)
1766 (quail-update-translation nil)))
1767 (setq unread-command-events
1768 (cons last-command-event unread-command-events))
1769 (quail-terminate-translation)))
1770
1771 (defun quail-prev-translation ()
1772 "Select previous translation in the current batch of candidates."
1773 (interactive)
1774 (if quail-current-translations
1775 (let ((indices (car quail-current-translations)))
1776 (if (= (car indices) 0)
1777 ;; We are already at the head.
1778 (beep)
1779 (setcar indices (1- (car indices)))
1780 (quail-update-current-translations)
1781 (quail-update-translation nil)))
1782 (setq unread-command-events
1783 (cons last-command-event unread-command-events))
1784 (quail-terminate-translation)))
1785
1786 (defun quail-next-translation-block ()
1787 "Select from the next block of translations."
1788 (interactive)
1789 (if quail-current-translations
1790 (let* ((indices (car quail-current-translations))
1791 (offset (- (car indices) (nth 1 indices))))
1792 (if (>= (nth 2 indices) (length (cdr quail-current-translations)))
1793 ;; We are already at the last block.
1794 (beep)
1795 (setcar indices (+ (nth 2 indices) offset))
1796 (quail-update-current-translations)
1797 (quail-update-translation nil)))
1798 (setq unread-command-events
1799 (cons last-command-event unread-command-events))
1800 (quail-terminate-translation)))
1801
1802 (defun quail-prev-translation-block ()
1803 "Select the previous batch of 10 translation candidates."
1804 (interactive)
1805 (if quail-current-translations
1806 (let* ((indices (car quail-current-translations))
1807 (offset (- (car indices) (nth 1 indices))))
1808 (if (= (nth 1 indices) 0)
1809 ;; We are already at the first block.
1810 (beep)
1811 (setcar indices (1- (nth 1 indices)))
1812 (quail-update-current-translations)
1813 (if (< (+ (nth 1 indices) offset) (nth 2 indices))
1814 (progn
1815 (setcar indices (+ (nth 1 indices) offset))
1816 (quail-update-current-translations)))
1817 (quail-update-translation nil)))
1818 (setq unread-command-events
1819 (cons last-command-event unread-command-events))
1820 (quail-terminate-translation)))
1821
1822 (defun quail-abort-translation ()
1823 "Abort translation and delete the current Quail key sequence."
1824 (interactive)
1825 (quail-delete-region)
1826 (setq quail-current-str nil)
1827 (quail-terminate-translation))
1828
1829 (defun quail-delete-last-char ()
1830 "Delete the last input character from the current Quail key sequence."
1831 (interactive)
1832 (if (= (length quail-current-key) 1)
1833 (quail-abort-translation)
1834 (setq quail-current-key (substring quail-current-key 0 -1))
1835 (quail-delete-region)
1836 (quail-update-translation (quail-translate-key))))
1837
1838 ;; For conversion mode.
1839
1840 (defsubst quail-point-in-conversion-region ()
1841 "Return non-nil value if the point is in conversion region of Quail mode."
1842 (let (start pos)
1843 (and (setq start (overlay-start quail-conv-overlay))
1844 (>= (setq pos (point)) start)
1845 (<= pos (overlay-end quail-conv-overlay)))))
1846
1847 (defun quail-conversion-backward-char ()
1848 (interactive)
1849 (if (<= (point) (overlay-start quail-conv-overlay))
1850 (quail-error "Beginning of conversion region"))
1851 (setq quail-translating nil)
1852 (forward-char -1))
1853
1854 (defun quail-conversion-forward-char ()
1855 (interactive)
1856 (if (>= (point) (overlay-end quail-conv-overlay))
1857 (quail-error "End of conversion region"))
1858 (setq quail-translating nil)
1859 (forward-char 1))
1860
1861 (defun quail-conversion-beginning-of-region ()
1862 (interactive)
1863 (setq quail-translating nil)
1864 (goto-char (overlay-start quail-conv-overlay)))
1865
1866 (defun quail-conversion-end-of-region ()
1867 (interactive)
1868 (setq quail-translating nil)
1869 (goto-char (overlay-end quail-conv-overlay)))
1870
1871 (defun quail-conversion-delete-char ()
1872 (interactive)
1873 (setq quail-translating nil)
1874 (if (>= (point) (overlay-end quail-conv-overlay))
1875 (quail-error "End of conversion region"))
1876 (delete-char 1)
1877 (let ((start (overlay-start quail-conv-overlay))
1878 (end (overlay-end quail-conv-overlay)))
1879 (setq quail-conversion-str (buffer-substring start end))
1880 (if (= start end)
1881 (setq quail-converting nil))))
1882
1883 (defun quail-conversion-delete-tail ()
1884 (interactive)
1885 (if (>= (point) (overlay-end quail-conv-overlay))
1886 (quail-error "End of conversion region"))
1887 (delete-region (point) (overlay-end quail-conv-overlay))
1888 (let ((start (overlay-start quail-conv-overlay))
1889 (end (overlay-end quail-conv-overlay)))
1890 (setq quail-conversion-str (buffer-substring start end))
1891 (if (= start end)
1892 (setq quail-converting nil))))
1893
1894 (defun quail-conversion-backward-delete-char ()
1895 (interactive)
1896 (if (> (length quail-current-key) 0)
1897 (quail-delete-last-char)
1898 (if (<= (point) (overlay-start quail-conv-overlay))
1899 (quail-error "Beginning of conversion region"))
1900 (delete-char -1)
1901 (let ((start (overlay-start quail-conv-overlay))
1902 (end (overlay-end quail-conv-overlay)))
1903 (setq quail-conversion-str (buffer-substring start end))
1904 (if (= start end)
1905 (setq quail-converting nil)))))
1906
1907 (defun quail-do-conversion (func &rest args)
1908 "Call FUNC to convert text in the current conversion region of Quail.
1909 Remaining args are for FUNC."
1910 (delete-overlay quail-overlay)
1911 (apply func args))
1912
1913 (defun quail-no-conversion ()
1914 "Do no conversion of the current conversion region of Quail."
1915 (interactive)
1916 (setq quail-converting nil))
1917
1918 ;; Guidance, Completion, and Help buffer handlers.
1919
1920 (defun quail-make-guidance-frame ()
1921 "Make a new one-line frame for Quail guidance."
1922 (let* ((fparam (frame-parameters))
1923 (top (cdr (assq 'top fparam)))
1924 (border (cdr (assq 'border-width fparam)))
1925 (internal-border (cdr (assq 'internal-border-width fparam)))
1926 (newtop (- top
1927 (frame-char-height) (* internal-border 2) (* border 2))))
1928 (if (< newtop 0)
1929 (setq newtop (+ top (frame-pixel-height) internal-border border)))
1930 (make-frame (append '((user-position . t) (height . 1)
1931 (minibuffer)
1932 (menu-bar-lines . 0) (tool-bar-lines . 0))
1933 (cons (cons 'top newtop) fparam)))))
1934
1935 (defun quail-setup-completion-buf ()
1936 "Setup Quail completion buffer."
1937 (unless (buffer-live-p quail-completion-buf)
1938 (let ((mb enable-multibyte-characters))
1939 (setq quail-completion-buf (get-buffer-create "*Quail Completions*"))
1940 (with-current-buffer quail-completion-buf
1941 (set-buffer-multibyte mb)
1942 (setq buffer-read-only t)
1943 (setq quail-overlay (make-overlay (point-min) (point-min)))
1944 (overlay-put quail-overlay 'face 'highlight)))))
1945
1946 (defun quail-require-guidance-buf ()
1947 "Return t if the current Quail package requires showing guidance buffer."
1948 (and input-method-verbose-flag
1949 (if (eq input-method-verbose-flag 'default)
1950 (not (and (eq (selected-window) (minibuffer-window))
1951 (quail-simple)))
1952 (if (eq input-method-verbose-flag 'complex-only)
1953 (not (quail-simple))
1954 t))))
1955
1956
1957 ;; Quail specific version of minibuffer-message. It displays STRING
1958 ;; with timeout 1000000 seconds instead of two seconds.
1959
1960 (defun quail-minibuffer-message (string)
1961 (message nil)
1962 (let ((point-max (point-max))
1963 (inhibit-quit t))
1964 (save-excursion
1965 (goto-char point-max)
1966 (insert string))
1967 (sit-for 1000000)
1968 (delete-region point-max (point-max))
1969 (when quit-flag
1970 (setq quit-flag nil
1971 unread-command-events '(7)))))
1972
1973 (defun quail-show-guidance ()
1974 "Display a guidance for Quail input method in some window.
1975 The guidance is normally displayed at the echo area,
1976 or in a newly created frame (if the current buffer is a
1977 minibuffer and the selected frame has no other windows)."
1978 ;; At first, setup a buffer for completion.
1979 (quail-setup-completion-buf)
1980 (bury-buffer quail-completion-buf)
1981
1982 ;; Then, show the guidance.
1983 (when (and (quail-require-guidance-buf)
1984 (not input-method-use-echo-area)
1985 (null unread-command-events)
1986 (null unread-post-input-method-events))
1987 (if (minibufferp)
1988 (if (eq (minibuffer-window) (frame-root-window))
1989 ;; Use another frame. It is sure that we are using some
1990 ;; window system.
1991 (let ((guidance quail-guidance-str))
1992 (or (frame-live-p quail-guidance-frame)
1993 (setq quail-guidance-frame
1994 (quail-make-guidance-frame)))
1995 (or (buffer-live-p quail-guidance-buf)
1996 (setq quail-guidance-buf
1997 (get-buffer-create " *Quail-guidance*")))
1998 (with-current-buffer quail-guidance-buf
1999 (erase-buffer)
2000 (setq cursor-type nil)
2001 (insert guidance))
2002 (set-window-buffer (frame-root-window quail-guidance-frame)
2003 quail-guidance-buf)
2004 (quail-minibuffer-message
2005 (format " [%s]" current-input-method-title)))
2006 ;; Show the guidance in the next line of the currrent
2007 ;; minibuffer.
2008 (quail-minibuffer-message
2009 (format " [%s]\n%s"
2010 current-input-method-title quail-guidance-str)))
2011 ;; Show the guidance in echo area without logging.
2012 (let ((message-log-max nil))
2013 (message "%s" quail-guidance-str)))))
2014
2015 (defun quail-hide-guidance ()
2016 "Hide the Quail guidance."
2017 (when (and (quail-require-guidance-buf)
2018 (or (eq (selected-window) (minibuffer-window))
2019 input-method-use-echo-area)
2020 (eq (minibuffer-window) (frame-root-window)))
2021 ;; We are using another frame for the guidance.
2022 (if (frame-live-p quail-guidance-frame)
2023 (delete-frame quail-guidance-frame))
2024 (if (buffer-live-p quail-guidance-buf)
2025 (kill-buffer quail-guidance-buf))))
2026
2027 (defun quail-update-guidance ()
2028 "Update the Quail guidance buffer and completion buffer (if displayed now)."
2029 ;; Update the guidance string.
2030 (when (quail-require-guidance-buf)
2031 (let ((guidance (quail-guidance)))
2032 (cond ((or (eq guidance t)
2033 (consp guidance))
2034 ;; Show the current possible translations.
2035 (setq quail-guidance-str
2036 (quail-get-translations)))
2037 ((null guidance)
2038 ;; Show the current input keys.
2039 (let ((key quail-current-key))
2040 (if (quail-kbd-translate)
2041 (setq key (quail-keyseq-translate key)))
2042 (setq quail-guidance-str (if (stringp key) key (string key)))))
2043 (t
2044 (setq quail-guidance-str " ")))))
2045
2046 ;; Update completion buffer if displayed now. We highlight the
2047 ;; selected candidate string in *Completion* buffer if any.
2048 (let ((win (get-buffer-window quail-completion-buf))
2049 key str pos)
2050 (if win
2051 (save-excursion
2052 (setq str (if (stringp quail-current-str)
2053 quail-current-str
2054 (if (numberp quail-current-str)
2055 (char-to-string quail-current-str)))
2056 key quail-current-key)
2057 (set-buffer quail-completion-buf)
2058 (goto-char (point-min))
2059 (if (null (search-forward (concat " " key ":") nil t))
2060 (delete-overlay quail-overlay)
2061 (setq pos (point))
2062 (if (and str (search-forward (concat "." str) nil t))
2063 (move-overlay quail-overlay (1+ (match-beginning 0)) (point))
2064 (move-overlay quail-overlay (match-beginning 0) (point)))
2065 ;; Now POS points end of KEY and (point) points end of STR.
2066 (if (pos-visible-in-window-p (point) win)
2067 ;; STR is already visible.
2068 nil
2069 ;; We want to make both KEY and STR visible, but if the
2070 ;; window is too short, make at least STR visible.
2071 (setq pos (progn (point) (goto-char pos)))
2072 (beginning-of-line)
2073 (set-window-start win (point))
2074 (if (not (pos-visible-in-window-p pos win))
2075 (set-window-start win pos))
2076 ))))))
2077
2078 (defun quail-get-translations ()
2079 "Return a string containing the current possible translations."
2080 (or (multibyte-string-p quail-current-key)
2081 (setq quail-current-key (string-to-multibyte quail-current-key)))
2082 (let ((map (quail-lookup-key quail-current-key nil t))
2083 (str (copy-sequence quail-current-key)))
2084 (if quail-current-translations
2085 (quail-update-current-translations))
2086
2087 ;; Show the current key.
2088 (let ((guidance (quail-guidance)))
2089 (if (listp guidance)
2090 ;; We must replace the typed key with the specified PROMPT-KEY.
2091 (dotimes (i (length str))
2092 (let ((prompt-key (cdr (assoc (aref str i) guidance))))
2093 (if prompt-key
2094 (aset str i (aref prompt-key 0)))))))
2095
2096 ;; Show followable keys.
2097 (if (and (> (length quail-current-key) 0) (cdr map))
2098 (setq str
2099 (format "%s[%s]"
2100 str
2101 (concat (sort (mapcar (function (lambda (x) (car x)))
2102 (cdr map))
2103 '<)))))
2104 ;; Show list of translations.
2105 (if (and quail-current-translations
2106 (not (quail-deterministic)))
2107 (let* ((indices (car quail-current-translations))
2108 (cur (car indices))
2109 (start (nth 1 indices))
2110 (end (nth 2 indices))
2111 (idx start))
2112 (if (< (string-width str)
2113 (- quail-guidance-translations-starting-column 7))
2114 (setq str
2115 (concat str
2116 (make-string
2117 (- quail-guidance-translations-starting-column
2118 7 (string-width str))
2119 32))))
2120 (setq str (format "%s(%02d/%s)"
2121 str (nth 3 indices)
2122 (if (nth 4 indices)
2123 (format "%02d" (nth 4 indices))
2124 "??")))
2125 (while (< idx end)
2126 (let ((len (length str))
2127 (trans (aref (cdr quail-current-translations) idx)))
2128 (or (stringp trans)
2129 (setq trans (string trans)))
2130 (setq str (format "%s %d.%s"
2131 str
2132 (if (= (- idx start) 9) 0
2133 (1+ (- idx start)))
2134 trans))
2135 (if (= idx cur)
2136 (put-text-property (+ len 3) (length str)
2137 'face 'highlight str))
2138 (setq idx (1+ idx))))))
2139
2140 str))
2141
2142 (defvar quail-completion-max-depth 5
2143 "The maximum depth of Quail completion list.")
2144
2145 (defun quail-completion ()
2146 "List all completions for the current key.
2147 All possible translations of the current key and whole possible longer keys
2148 are shown (at most to the depth specified `quail-completion-max-depth')."
2149 (interactive)
2150 (quail-setup-completion-buf)
2151 (let ((win (get-buffer-window quail-completion-buf 'visible))
2152 (key quail-current-key)
2153 (map (quail-lookup-key quail-current-key nil t))
2154 (require-update nil))
2155 (with-current-buffer quail-completion-buf
2156 (if (and win
2157 (equal key quail-current-key)
2158 (eq last-command 'quail-completion))
2159 ;; The window for Quail completion buffer has already been
2160 ;; shown. We just scroll it appropriately.
2161 (if (pos-visible-in-window-p (point-max) win)
2162 (set-window-start win (point-min))
2163 (let ((other-window-scroll-buffer quail-completion-buf)
2164 ;; This nil binding is necessary to surely scroll
2165 ;; quail-completion-buf.
2166 (minibuffer-scroll-window nil))
2167 (scroll-other-window)))
2168 (setq quail-current-key key)
2169 (let ((inhibit-read-only t))
2170 (erase-buffer)
2171 (insert "Possible completion and corresponding characters are:\n")
2172 (quail-completion-1 key map 1)
2173 (set-buffer-modified-p nil))
2174 (goto-char (point-min))
2175 (display-buffer (current-buffer))
2176 (setq require-update t)))
2177 (if require-update
2178 (quail-update-guidance)))
2179 (setq this-command 'quail-completion))
2180
2181 (defun quail-completion-1 (key map indent)
2182 "List all completions of KEY in MAP with indentation INDENT."
2183 (let ((len (length key)))
2184 (quail-indent-to indent)
2185 (insert key ":")
2186 (if (and (symbolp map) (fboundp map))
2187 (setq map (funcall map key len)))
2188 (if (car map)
2189 (quail-completion-list-translations map key (+ indent len 1))
2190 (insert " -\n"))
2191 (setq indent (+ indent 2))
2192 (if (and (cdr map) (< (/ (1- indent) 2) quail-completion-max-depth))
2193 (let ((l (cdr map))
2194 (newkey (make-string (1+ len) 0))
2195 (i 0))
2196 (if (functionp l)
2197 (setq l (funcall l)))
2198 ;; Set KEY in the first LEN characters of NEWKEY.
2199 (while (< i len)
2200 (aset newkey i (aref key i))
2201 (setq i (1+ i)))
2202 (setq l (reverse l))
2203 (while l ; L = ((CHAR . DEFN) ....) ;
2204 (aset newkey len (car (car l)))
2205 (quail-completion-1 newkey (cdr (car l)) indent)
2206 (setq l (cdr l)))))))
2207
2208 (defun quail-completion-list-translations (map key indent)
2209 "List all possible translations of KEY in Quail MAP with indentation INDENT."
2210 (let (beg (translations
2211 (quail-get-translation (car map) key (length key))))
2212 (if (integerp translations)
2213 (progn
2214 (insert "(1/1) 1.")
2215 ;; Endow the character `translations' with `mouse-face' text
2216 ;; property to enable `mouse-2' completion.
2217 (setq beg (point))
2218 (insert translations)
2219 (put-text-property beg (point) 'mouse-face 'highlight)
2220 (insert "\n"))
2221 ;; We need only vector part.
2222 (setq translations (cdr translations))
2223 ;; Insert every 10 elements with indices in a line.
2224 (let ((len (length translations))
2225 (i 0))
2226 (while (< i len)
2227 (when (zerop (% i 10))
2228 (when (>= i 10)
2229 (insert "\n")
2230 (quail-indent-to indent))
2231 (insert (format "(%d/%d)" (1+ (/ i 10)) (1+ (/ len 10)))))
2232 ;; We show the last digit of FROM while converting
2233 ;; 0,1,..,9 to 1,2,..,0.
2234 (insert (format " %d." (% (1+ i) 10)))
2235 (setq beg (point))
2236 (insert (aref translations i))
2237 ;; Passing the mouse over a character will highlight.
2238 (put-text-property beg (point) 'mouse-face 'highlight)
2239 (setq i (1+ i)))
2240 (insert "\n")))))
2241
2242 (defun quail-mouse-choose-completion (event)
2243 "Click on an alternative in the `*Quail Completions*' buffer to choose it."
2244 (interactive "e")
2245 ;; This function is an exact copy of the mouse.el function
2246 ;; `mouse-choose-completion' except that we:
2247 ;; 1) add two lines from `choose-completion' in simple.el to give
2248 ;; the `mouse-2' click a little more leeway.
2249 ;; 2) don't bury *Quail Completions* buffer, so comment a section, and
2250 ;; 3) delete/terminate the current quail selection here.
2251 ;; Give temporary modes such as isearch a chance to turn off.
2252 (run-hooks 'mouse-leave-buffer-hook)
2253 (let ((buffer (window-buffer))
2254 choice
2255 base-size)
2256 (with-current-buffer (window-buffer (posn-window (event-start event)))
2257 (if completion-reference-buffer
2258 (setq buffer completion-reference-buffer))
2259 (setq base-size completion-base-size)
2260 (save-excursion
2261 (goto-char (posn-point (event-start event)))
2262 (let (beg end)
2263 (if (and (not (eobp)) (get-text-property (point) 'mouse-face))
2264 (setq end (point) beg (1+ (point))))
2265 (if (and (not (bobp)) (get-text-property (1- (point)) 'mouse-face))
2266 (setq end (1- (point)) beg (point)))
2267 (if (null beg)
2268 (quail-error "No completion here"))
2269 (setq beg (previous-single-property-change beg 'mouse-face))
2270 (setq end (or (next-single-property-change end 'mouse-face)
2271 (point-max)))
2272 (setq choice (buffer-substring beg end)))))
2273 ; (let ((owindow (selected-window)))
2274 ; (select-window (posn-window (event-start event)))
2275 ; (if (and (one-window-p t 'selected-frame)
2276 ; (window-dedicated-p (selected-window)))
2277 ; ;; This is a special buffer's frame
2278 ; (iconify-frame (selected-frame))
2279 ; (or (window-dedicated-p (selected-window))
2280 ; (bury-buffer)))
2281 ; (select-window owindow))
2282 (quail-delete-region)
2283 (quail-choose-completion-string choice buffer base-size)
2284 (quail-terminate-translation)))
2285
2286 ;; BASE-SIZE here is for compatibility with an (unused) arg of a
2287 ;; previous implementation.
2288 (defun quail-choose-completion-string (choice &optional buffer base-size)
2289 (setq quail-current-str choice)
2290 (choose-completion-string choice buffer))
2291
2292 (defun quail-build-decode-map (map-list key decode-map num
2293 &optional maxnum ignores)
2294 "Build a decoding map.
2295 Accumulate in the cdr part of DECODE-MAP all pairs of key sequences
2296 vs the corresponding translations defined in the Quail map
2297 specified by the first element MAP-LIST. Each pair has the form
2298 \(KEYSEQ . TRANSLATION). DECODE-MAP should have the form
2299 \(decode-map . ALIST), where ALIST is an alist of length NUM. KEY
2300 is a key sequence to reach MAP.
2301 Optional 5th arg MAXNUM limits the number of accumulated pairs.
2302 Optional 6th arg IGNORES is a list of translations to ignore."
2303 (let* ((map (car map-list))
2304 (translation (quail-get-translation (car map) key (length key)))
2305 elt)
2306 (cond ((integerp translation)
2307 ;; Accept only non-ASCII chars not listed in IGNORES.
2308 (when (and (> translation 127) (not (memq translation ignores)))
2309 (setcdr decode-map
2310 (cons (cons key translation) (cdr decode-map)))
2311 (setq num (1+ num))))
2312 ((consp translation)
2313 (setq translation (cdr translation))
2314 (let ((multibyte nil))
2315 (mapc (function (lambda (x)
2316 ;; Accept only non-ASCII chars not
2317 ;; listed in IGNORES.
2318 (if (and (if (integerp x) (> x 127)
2319 (string-match-p "[^[:ascii:]]" x))
2320 (not (member x ignores)))
2321 (setq multibyte t))))
2322 translation)
2323 (when multibyte
2324 (setcdr decode-map
2325 (cons (cons key translation) (cdr decode-map)))
2326 (setq num (+ num (length translation)))))))
2327 (if (and maxnum (> num maxnum))
2328 (- num)
2329 (setq map (cdr map))
2330 ;; Recursively check the deeper map.
2331 (while (and map (>= num 0))
2332 (setq elt (car map) map (cdr map))
2333 (when (and (integerp (car elt)) (consp (cdr elt))
2334 (not (memq (cdr elt) map-list)))
2335 (setq num (quail-build-decode-map (cons (cdr elt) map-list)
2336 (format "%s%c" key (car elt))
2337 decode-map num maxnum ignores))))
2338 num)))
2339
2340 (defun quail-insert-decode-map (decode-map)
2341 "Insert pairs of key sequences vs the corresponding translations.
2342 These are stored in DECODE-MAP using the concise format. DECODE-MAP
2343 should be made by `quail-build-decode-map' (which see)."
2344 (setq decode-map
2345 (sort (cdr decode-map)
2346 (function (lambda (x y)
2347 (setq x (car x) y (car y))
2348 (or (> (length x) (length y))
2349 (and (= (length x) (length y))
2350 (not (string< x y))))))))
2351 (let ((window-width (window-width (get-buffer-window
2352 (current-buffer) 'visible)))
2353 (single-trans-width 4)
2354 (single-list nil)
2355 (multiple-list nil)
2356 trans)
2357 ;; Divide the elements of decoding map into single ones (i.e. the
2358 ;; one that has single translation) and multiple ones (i.e. the
2359 ;; one that has multiple translations).
2360 (dolist (elt decode-map)
2361 (setq trans (cdr elt))
2362 (if (and (vectorp trans) (= (length trans) 1))
2363 (setq trans (aref trans 0)))
2364 (if (vectorp trans)
2365 (push elt multiple-list)
2366 (push (cons (car elt) trans) single-list)
2367 (let ((width (if (stringp trans) (string-width trans)
2368 (char-width trans))))
2369 (if (> width single-trans-width)
2370 (setq single-trans-width width)))))
2371 (when single-list
2372 ;; Since decode-map is sorted, we known the longest key is at the end.
2373 (let* ((max-key-width (max 3 (length (caar (last single-list)))))
2374 (col-width (+ max-key-width 1 single-trans-width 1))
2375 (cols (/ window-width col-width))
2376 (rows (/ (+ (length single-list) (1- cols)) cols)) ; Round up.
2377 col pos row)
2378 (insert "key")
2379 (quail-indent-to (1+ max-key-width))
2380 (insert "char")
2381 (quail-indent-to (1+ col-width))
2382 (insert "[type a key sequence to insert the corresponding character]\n")
2383 (setq pos (point))
2384 (insert-char ?\n (+ rows 2))
2385 (goto-char pos)
2386 (setq col (- col-width) row 0)
2387 (dolist (elt single-list)
2388 (when (= (% row rows) 0)
2389 (goto-char pos)
2390 (setq col (+ col col-width))
2391 (move-to-column col)
2392 (quail-indent-to col)
2393 (insert-char ?- max-key-width)
2394 (insert ? )
2395 (insert-char ?- single-trans-width)
2396 (forward-line 1))
2397 (move-to-column col)
2398 (quail-indent-to col)
2399 (insert (car elt))
2400 (quail-indent-to (+ col max-key-width 1))
2401 (insert (cdr elt))
2402 (forward-line 1)
2403 (setq row (1+ row)))
2404 (goto-char (point-max))))
2405
2406 (when multiple-list
2407 ;; Since decode-map is sorted, we known the longest key is at the end.
2408 (let ((max-key-width (max 3 (length (caar (last multiple-list))))))
2409 (insert "key")
2410 (quail-indent-to (1+ max-key-width))
2411 (insert "character(s) [type a key (sequence) and select one from the list]\n")
2412 (insert-char ?- max-key-width)
2413 (insert " ------------\n")
2414 (dolist (elt multiple-list)
2415 (insert (car elt))
2416 (quail-indent-to max-key-width)
2417 (if (vectorp (cdr elt))
2418 (mapc (function
2419 (lambda (x)
2420 (let ((width (if (integerp x) (char-width x)
2421 (string-width x))))
2422 (when (> (+ (current-column) 1 width) window-width)
2423 (insert "\n")
2424 (quail-indent-to max-key-width))
2425 (insert " " x))))
2426 (cdr elt))
2427 (insert " " (cdr elt)))
2428 (insert ?\n))
2429 (insert ?\n)))))
2430
2431 (define-button-type 'quail-keyboard-layout-button
2432 :supertype 'help-xref
2433 'help-function '(lambda (layout)
2434 (help-setup-xref `(quail-keyboard-layout-button ,layout)
2435 nil)
2436 (quail-show-keyboard-layout layout))
2437 'help-echo (purecopy "mouse-2, RET: show keyboard layout"))
2438
2439 (define-button-type 'quail-keyboard-customize-button
2440 :supertype 'help-customize-variable
2441 'help-echo (purecopy "mouse-2, RET: customize keyboard layout"))
2442
2443 (defun quail-help (&optional package)
2444 "Show brief description of the current Quail package.
2445 Optional arg PACKAGE specifies the name of alternative Quail
2446 package to describe."
2447 (interactive)
2448 (require 'help-mode)
2449 (let ((help-xref-mule-regexp help-xref-mule-regexp-template)
2450 (mb enable-multibyte-characters)
2451 (package-def
2452 (if package
2453 (assoc package quail-package-alist)
2454 quail-current-package)))
2455 ;; At first, make sure that the help buffer has window.
2456 (let ((temp-buffer-show-hook nil))
2457 (with-output-to-temp-buffer (help-buffer)
2458 (with-current-buffer standard-output
2459 (set-buffer-multibyte mb)
2460 (setq quail-current-package package-def))))
2461 ;; Then, insert text in the help buffer while paying attention to
2462 ;; the width of the window in which the buffer displayed.
2463 (with-current-buffer (help-buffer)
2464 (setq buffer-read-only nil)
2465 (insert "Input method: " (quail-name)
2466 " (mode line indicator:"
2467 (quail-title)
2468 ")\n\n")
2469 (save-restriction
2470 (narrow-to-region (point) (point))
2471 (insert (quail-docstring))
2472 (goto-char (point-min))
2473 (with-syntax-table emacs-lisp-mode-syntax-table
2474 (while (re-search-forward "\\\\<\\sw\\(\\sw\\|\\s_\\)+>" nil t)
2475 (let ((sym (intern-soft
2476 (buffer-substring (+ (match-beginning 0) 2)
2477 (1- (point))))))
2478 (if (and (boundp sym)
2479 (stringp (symbol-value sym)))
2480 (replace-match (symbol-value sym) t t)))))
2481 (goto-char (point-max)))
2482 (or (bolp)
2483 (insert "\n"))
2484 (insert "\n")
2485
2486 (let ((done-list nil))
2487 ;; Show keyboard layout if the current package requests it..
2488 (when (quail-show-layout)
2489 (insert "
2490 KEYBOARD LAYOUT
2491 ---------------
2492 This input method works by translating individual input characters.
2493 Assuming that your actual keyboard has the `")
2494 (help-insert-xref-button
2495 quail-keyboard-layout-type
2496 'quail-keyboard-layout-button
2497 quail-keyboard-layout-type)
2498 (insert "' layout,
2499 translation results in the following \"virtual\" keyboard layout:
2500 ")
2501 (setq done-list
2502 (quail-insert-kbd-layout quail-keyboard-layout))
2503 (insert "If your keyboard has a different layout, rearranged from
2504 `")
2505 (help-insert-xref-button
2506 "standard"
2507 'quail-keyboard-layout-button "standard")
2508 (insert "', the \"virtual\" keyboard you get with this input method
2509 will be rearranged in the same way.
2510
2511 You can set the variable `quail-keyboard-layout-type' to specify
2512 the physical layout of your keyboard; the tables shown in
2513 documentation of input methods including this one are based on the
2514 physical keyboard layout as specified with that variable.
2515 ")
2516 (help-insert-xref-button
2517 "[customize keyboard layout]"
2518 'quail-keyboard-customize-button 'quail-keyboard-layout-type)
2519 (insert "\n"))
2520
2521 ;; Show key sequences.
2522 (let* ((decode-map (list 'decode-map))
2523 (num (quail-build-decode-map (list (quail-map)) "" decode-map
2524 ;; We used to use 512 here, but
2525 ;; TeX has more than 1000 and
2526 ;; it's good to see the list.
2527 0 5120 done-list)))
2528 (when (> num 0)
2529 (insert "
2530 KEY SEQUENCE
2531 ------------
2532 ")
2533 (if (quail-show-layout)
2534 (insert "You can also input more characters")
2535 (insert "You can input characters"))
2536 (insert " by the following key sequences:\n")
2537 (quail-insert-decode-map decode-map))))
2538
2539 (quail-help-insert-keymap-description
2540 (quail-translation-keymap)
2541 "\
2542 KEY BINDINGS FOR TRANSLATION
2543 ----------------------------\n")
2544 (insert ?\n)
2545 (if (quail-conversion-keymap)
2546 (quail-help-insert-keymap-description
2547 (quail-conversion-keymap)
2548 "\
2549 KEY BINDINGS FOR CONVERSION
2550 ---------------------------\n"))
2551 (setq quail-current-package nil)
2552 ;; Resize the help window again, now that it has all its contents.
2553 (save-selected-window
2554 (select-window (get-buffer-window (current-buffer) t))
2555 (run-hooks 'temp-buffer-show-hook)))))
2556
2557 (defun quail-help-insert-keymap-description (keymap &optional header)
2558 (let ((pos1 (point))
2559 pos2)
2560 (if header
2561 (insert header))
2562 (save-excursion
2563 (insert (substitute-command-keys "\\{keymap}")))
2564 ;; Skip headers "key bindings", etc.
2565 (forward-line 3)
2566 (setq pos2 (point))
2567 (with-syntax-table emacs-lisp-mode-syntax-table
2568 (while (re-search-forward "\\sw\\(\\sw\\|\\s_\\)+" nil t)
2569 (let ((sym (intern-soft (buffer-substring (match-beginning 0)
2570 (point)))))
2571 (if (and sym (fboundp sym)
2572 (or (eq (get sym 'quail-help) 'hide)
2573 (and (quail-deterministic)
2574 (eq (get sym 'quail-help) 'non-deterministic))))
2575 (delete-region (line-beginning-position)
2576 (1+ (line-end-position)))))))
2577 (goto-char pos2)
2578 (while (not (eobp))
2579 (if (looking-at "[ \t]*$")
2580 (delete-region (point) (1+ (line-end-position)))
2581 (forward-line 1)))
2582 (goto-char pos2)
2583 (if (eobp)
2584 (delete-region pos1 (point)))
2585 (goto-char (point-max))))
2586
2587 (defun quail-translation-help ()
2588 "Show help message while translating in Quail input method."
2589 (interactive)
2590 (if (not (eq this-command last-command))
2591 (let (state-msg keymap)
2592 (if (and quail-converting (= (length quail-current-key) 0))
2593 (setq state-msg
2594 (format "Converting string %S by input method %S.\n"
2595 quail-conversion-str (quail-name))
2596 keymap (quail-conversion-keymap))
2597 (setq state-msg
2598 (format "Translating key sequence %S by input method %S.\n"
2599 quail-current-key (quail-name))
2600 keymap (quail-translation-keymap)))
2601 (with-output-to-temp-buffer "*Help*"
2602 (with-current-buffer standard-output
2603 (insert state-msg)
2604 (quail-help-insert-keymap-description
2605 keymap
2606 "-----------------------\n")
2607 ;; Isn't this redundant ? -stef
2608 (help-mode)))))
2609 (let (scroll-help)
2610 (save-selected-window
2611 (select-window (get-buffer-window "*Help*"))
2612 (if (eq this-command last-command)
2613 (if (< (window-end) (point-max))
2614 (scroll-up)
2615 (if (> (window-start) (point-min))
2616 (set-window-start (selected-window) (point-min)))))
2617 (setq scroll-help
2618 (if (< (window-end (selected-window) 'up-to-date) (point-max))
2619 "Type \\[quail-translation-help] to scroll up the help"
2620 (if (> (window-start) (point-min))
2621 "Type \\[quail-translation-help] to see the head of help"))))
2622 (if scroll-help
2623 (progn
2624 (message "%s" (substitute-command-keys scroll-help))
2625 (sit-for 1)
2626 (message nil)
2627 (quail-update-guidance)
2628 ))))
2629 \f
2630 ;; Add KEY (string) to the element of TABLE (char-table) for CHAR if
2631 ;; it is not yet stored. As a result, the element is a string or a
2632 ;; list of strings.
2633
2634 (defun quail-store-decode-map-key (table char key)
2635 (let ((elt (aref table char)))
2636 (if elt
2637 (if (consp elt)
2638 (or (member key elt)
2639 (aset table char (cons key elt)))
2640 (or (string= key elt)
2641 (aset table char (list key elt))))
2642 (aset table char key))
2643 (if (and translation-table-for-input
2644 (setq char (aref translation-table-for-input char)))
2645 (let ((translation-table-for-input nil))
2646 (quail-store-decode-map-key table char key)))))
2647
2648 ;; Helper function for quail-gen-decode-map. Store key strings to
2649 ;; type each character under MAP in TABLE (char-table). MAP is an
2650 ;; element of the current Quail map reached by typing keys in KEY
2651 ;; (string).
2652
2653 (defun quail-gen-decode-map1 (map key table)
2654 (when (and (consp map) (listp (cdr map)))
2655 (let ((trans (car map)))
2656 (cond ((integerp trans)
2657 (quail-store-decode-map-key table trans key))
2658 ((stringp trans)
2659 (dotimes (i (length trans))
2660 (quail-store-decode-map-key table (aref trans i) key)))
2661 ((or (vectorp trans)
2662 (and (consp trans)
2663 (setq trans (cdr trans))))
2664 (dotimes (i (length trans))
2665 (let ((elt (aref trans i)))
2666 (if (stringp elt)
2667 (if (= (length elt) 1)
2668 (quail-store-decode-map-key table (aref elt 0) key))
2669 (quail-store-decode-map-key table elt key)))))))
2670 (if (> (length key) 1)
2671 (dolist (elt (cdr map))
2672 (quail-gen-decode-map1 (cdr elt) key table))
2673 (dolist (elt (cdr map))
2674 (quail-gen-decode-map1 (cdr elt) (format "%s%c" key (car elt))
2675 table)))))
2676
2677 (put 'quail-decode-map 'char-table-extra-slots 0)
2678
2679 ;; Generate a halfly-cooked decode map (char-table) for the current
2680 ;; Quail map. An element for a character C is a key string or a list
2681 ;; of a key strings to type to input C. The lenth of key string is at
2682 ;; most 2. If it is 2, more keys may be required to input C.
2683
2684 (defun quail-gen-decode-map ()
2685 (let ((table (make-char-table 'quail-decode-map nil)))
2686 (dolist (elt (cdr (quail-map)))
2687 (quail-gen-decode-map1 (cdr elt) (string (car elt)) table))
2688 table))
2689
2690 ;; Check if CHAR equals to TARGET while also trying to translate CHAR
2691 ;; by translation-table-for-input.
2692
2693 (defsubst quail-char-equal-p (char target)
2694 (or (= char target)
2695 (and translation-table-for-input
2696 (setq char (aref translation-table-for-input char))
2697 (= char target))))
2698
2699 ;; Helper function for quail-find-key. Prepend key strings to type
2700 ;; for inputting CHAR by the current input method to KEY-LIST and
2701 ;; return the result. MAP is an element of the current Quail map
2702 ;; reached by typing keys in KEY.
2703
2704 (defun quail-find-key1 (map key char key-list)
2705 (let ((trans (car map))
2706 (found-here nil))
2707 (cond ((stringp trans)
2708 (setq found-here
2709 (and (= (length trans) 1)
2710 (quail-char-equal-p (aref trans 0) char))))
2711 ((or (vectorp trans) (consp trans))
2712 (if (consp trans)
2713 (setq trans (cdr trans)))
2714 (setq found-here
2715 (catch 'tag
2716 (dotimes (i (length trans))
2717 (let ((target (aref trans i)))
2718 (if (integerp target)
2719 (if (quail-char-equal-p target char)
2720 (throw 'tag t))
2721 (if (and (= (length target) 1)
2722 (quail-char-equal-p (aref target 0) char))
2723 (throw 'tag t))))))))
2724 ((integerp trans)
2725 (setq found-here (quail-char-equal-p trans char))))
2726 (if found-here
2727 (setq key-list (cons key key-list)))
2728 (if (> (length key) 1)
2729 (dolist (elt (cdr map))
2730 (setq key-list
2731 (quail-find-key1 (cdr elt) (format "%s%c" key (car elt))
2732 char key-list))))
2733 key-list))
2734
2735 ;; If non-nil, the value has the form (QUAIL-MAP . CODING-SYSTEM)
2736 ;; where QUAIL-MAP is a quail-map of which decode map was generated
2737 ;; while buffer-file-coding-system was CODING-SYSTEM.
2738
2739 (defvar quail-decode-map-generated nil)
2740
2741 (defun quail-find-key (char)
2742 "Return a list of keys to type to input CHAR in the current input method.
2743 If CHAR is an ASCII character and can be input by typing itself, return t."
2744 (let ((decode-map (or (and (or (not quail-decode-map-generated)
2745 (and (eq (car quail-decode-map-generated) (quail-map))
2746 (eq (cdr quail-decode-map-generated)
2747 (or buffer-file-coding-system t))))
2748 (quail-decode-map))
2749 (let ((map (quail-gen-decode-map)))
2750 (setq quail-decode-map-generated
2751 (cons (quail-map) (or buffer-file-coding-system t)))
2752 (setcar (nthcdr 10 quail-current-package) map)
2753 map)))
2754 (key-list nil))
2755 (if (consp decode-map)
2756 (let ((str (string char)))
2757 (mapc #'(lambda (elt)
2758 (if (string= str (car elt))
2759 (setq key-list (cons (cdr elt) key-list))))
2760 (cdr decode-map)))
2761 (let ((key-head (aref decode-map char)))
2762 (if (stringp key-head)
2763 (setq key-list (quail-find-key1
2764 (quail-lookup-key key-head nil t)
2765 key-head char nil))
2766 (mapc #'(lambda (elt)
2767 (setq key-list
2768 (quail-find-key1
2769 (quail-lookup-key elt nil t) elt char key-list)))
2770 key-head))))
2771 (or key-list
2772 (and (< char 128)
2773 (not (quail-lookup-key (string char) 1))))))
2774
2775 (defun quail-show-key ()
2776 "Show a list of key strings to type for inputting a character at point."
2777 (interactive)
2778 (or current-input-method
2779 (error "No input method is activated"))
2780 (or (assoc current-input-method quail-package-alist)
2781 (error "The current input method does not use Quail"))
2782 (let* ((char (following-char))
2783 (key-list (quail-find-key char)))
2784 (cond ((consp key-list)
2785 (message "To input `%c', type \"%s\""
2786 char
2787 (mapconcat 'identity key-list "\", \"")))
2788 ((eq key-list t)
2789 (message "To input `%s', just type it"
2790 (single-key-description char)))
2791 (t
2792 (message "%c can't be input by the current input method" char)))))
2793
2794 \f
2795 ;; Quail map generator from state transition table.
2796
2797 (defun quail-map-from-table (table)
2798 "Make quail map from state transition table TABLE.
2799
2800 TABLE is an alist, the form is:
2801 ((STATE-0 TRANSITION-0-1 TRANSITION-0-2 ...) (STATE-1 ...) ...)
2802
2803 STATE-n are symbols to denote state. STATE-0 is the initial state.
2804
2805 TRANSITION-n-m are transition rules from STATE-n, and have the form
2806 \(RULES . STATE-x) or RULES, where STATE-x is one of STATE-n above,
2807 RULES is a symbol whose value is an alist of keys \(string) vs the
2808 correponding characters or strings. The format of the symbol value of
2809 RULES is the same as arguments to `quail-define-rules'.
2810
2811 If TRANSITION-n-m has the form (RULES . STATE-x), it means that
2812 STATE-n transits to STATE-x when keys in RULES are input. Recursive
2813 transition is allowed, i.e. STATE-x may be STATE-n.
2814
2815 If TRANSITION-n-m has the form RULES, the transition terminates
2816 when keys in RULES are input.
2817
2818 The generated map can be set for the current Quail package by the
2819 function `quail-install-map' (which see)."
2820 (let ((state-alist (mapcar (lambda (x) (list (car x))) table))
2821 tail elt)
2822 ;; STATE-ALIST is an alist of states vs the correponding sub Quail
2823 ;; map. It is now initialized to ((STATE-0) (STATE-1) ...).
2824 ;; Set key sequence mapping rules in cdr part of each element.
2825 (while table
2826 (quail-map-from-table-1 state-alist (car table))
2827 (setq table (cdr table)))
2828
2829 ;; Now STATE-ALIST has the form ((STATE-0 MAPPING-RULES) ...).
2830 ;; Elements of MAPPING-RULES may have the form (STATE-x). Replace
2831 ;; them with MAPPING-RULES of STATE-x to make elements of
2832 ;; STATE-ALIST valid Quail maps.
2833 (setq tail state-alist)
2834 (while tail
2835 (setq elt (car tail) tail (cdr tail))
2836 (quail-map-from-table-2 state-alist elt))
2837
2838 ;; Return the Quail map for the initial state.
2839 (car state-alist)))
2840
2841 ;; STATE-INFO has the form (STATE TRANSITION ...). Set key sequence
2842 ;; mapping rules in the element of STATE-ALIST that corresponds to
2843 ;; STATE according to TRANSITION ...
2844 (defun quail-map-from-table-1 (state-alist state-info)
2845 (let* ((state (car state-info))
2846 (map (assq state state-alist))
2847 (transitions (cdr state-info))
2848 elt)
2849 (while transitions
2850 (setq elt (car transitions) transitions (cdr transitions))
2851 (let (rules dst-state key trans)
2852 ;; ELT has the form (RULES-SYMBOL . STATE-x) or RULES-SYMBOL.
2853 ;; STATE-x is one of car parts of STATE-ALIST's elements.
2854 (if (consp elt)
2855 (setq rules (symbol-value (car elt))
2856 ;; Set (STATE-x) as branches for all keys in RULES.
2857 ;; It is replaced with actual branches for STATE-x
2858 ;; later in `quail-map-from-table-2'.
2859 dst-state (list (cdr elt)))
2860 (setq rules (symbol-value elt)))
2861 (while rules
2862 (setq key (car (car rules)) trans (cdr (car rules))
2863 rules (cdr rules))
2864 (if (stringp trans)
2865 (if (= (length trans) 1)
2866 (setq trans (aref trans 0))
2867 (setq trans (string-to-vector trans))))
2868 (set-nested-alist key trans map nil dst-state))))))
2869
2870 ;; ELEMENT is one element of STATE-ALIST. ELEMENT is a nested alist;
2871 ;; the form is:
2872 ;; (STATE (CHAR NESTED-ALIST) ...)
2873 ;; NESTED-ALIST is a nested alist; the form is:
2874 ;; (TRANS (CHAR NESTED-ALIST) ...)
2875 ;; or
2876 ;; (TRANS (CHAR NESTED-ALIST) ... . (STATE-x))
2877 ;; Here, the task is to replace all occurrences of (STATE-x) with:
2878 ;; (cdr (assq STATE-x STATE-ALIST))
2879
2880 (defun quail-map-from-table-2 (state-alist element)
2881 (let ((prev element)
2882 (tail (cdr element))
2883 elt)
2884 (while (cdr tail)
2885 (setq elt (car tail) prev tail tail (cdr tail))
2886 (quail-map-from-table-2 state-alist (cdr elt)))
2887 (setq elt (car tail))
2888 (if (consp elt)
2889 (quail-map-from-table-2 state-alist (cdr elt))
2890 (setcdr prev (cdr (assq elt state-alist))))))
2891
2892 ;; Concatenate translations for all heading substrings of KEY in the
2893 ;; current Quail map. Here, `heading substring' means (substring KEY
2894 ;; 0 LEN), where LEN is 1, 2, ... (length KEY).
2895 (defun quail-lookup-map-and-concat (key)
2896 (let* ((len (length key))
2897 (translation-list nil)
2898 map)
2899 (while (> len 0)
2900 (setq map (quail-lookup-key key len t)
2901 len (1- len))
2902 (if map
2903 (let* ((def (quail-map-definition map))
2904 (trans (if (consp def) (aref (cdr def) (car (car def)))
2905 def)))
2906 (if (integerp trans)
2907 (setq trans (char-to-string trans)))
2908 (setq translation-list (cons trans translation-list)))))
2909 (apply 'concat translation-list)))
2910
2911 \f
2912 (defvar quail-directory-name "quail"
2913 "Name of Quail directory which contains Quail packages.
2914 This is a sub-directory of LEIM directory.")
2915
2916 ;;;###autoload
2917 (defun quail-update-leim-list-file (dirname &rest dirnames)
2918 "Update entries for Quail packages in `LEIM' list file in directory DIRNAME.
2919 DIRNAME is a directory containing Emacs input methods;
2920 normally, it should specify the `leim' subdirectory
2921 of the Emacs source tree.
2922
2923 It searches for Quail packages under `quail' subdirectory of DIRNAME,
2924 and update the file \"leim-list.el\" in DIRNAME.
2925
2926 When called from a program, the remaining arguments are additional
2927 directory names to search for Quail packages under `quail' subdirectory
2928 of each directory."
2929 (interactive "FDirectory of LEIM: ")
2930 (setq dirname (expand-file-name dirname))
2931 (let ((leim-list (expand-file-name leim-list-file-name dirname))
2932 quail-dirs list-buf pkg-list pos)
2933 (if (not (file-writable-p leim-list))
2934 (error "Can't write to file \"%s\"" leim-list))
2935 (message "Updating %s ..." leim-list)
2936 (setq list-buf (find-file-noselect leim-list))
2937
2938 ;; At first, clean up the file.
2939 (with-current-buffer list-buf
2940 (goto-char 1)
2941
2942 ;; Insert the correct header.
2943 (if (looking-at (regexp-quote leim-list-header))
2944 (goto-char (match-end 0))
2945 (insert leim-list-header))
2946 (setq pos (point))
2947 (if (not (re-search-forward leim-list-entry-regexp nil t))
2948 nil
2949
2950 ;; Remove garbages after the header.
2951 (goto-char (match-beginning 0))
2952 (if (< pos (point))
2953 (delete-region pos (point)))
2954
2955 ;; Remove all entries for Quail.
2956 (while (re-search-forward leim-list-entry-regexp nil 'move)
2957 (goto-char (match-beginning 0))
2958 (setq pos (point))
2959 (condition-case nil
2960 (let ((form (read list-buf)))
2961 (when (equal (nth 3 form) ''quail-use-package)
2962 (if (eolp) (forward-line 1))
2963 (delete-region pos (point))))
2964 (error
2965 ;; Delete the remaining contents because it seems that
2966 ;; this file is broken.
2967 (message "Garbage in %s deleted" leim-list)
2968 (delete-region pos (point-max)))))))
2969
2970 ;; Search for `quail' subdirectory under each DIRNAMES.
2971 (setq dirnames (cons dirname dirnames))
2972 (let ((l dirnames))
2973 (while l
2974 (setcar l (expand-file-name (car l)))
2975 (setq dirname (expand-file-name quail-directory-name (car l)))
2976 (if (file-readable-p dirname)
2977 (setq quail-dirs (cons dirname quail-dirs))
2978 (message "%s doesn't have `%s' subdirectory, just ignored"
2979 (car l) quail-directory-name)
2980 (setq quail-dirs (cons nil quail-dirs)))
2981 (setq l (cdr l)))
2982 (setq quail-dirs (nreverse quail-dirs)))
2983
2984 ;; Insert input method registering forms.
2985 (while quail-dirs
2986 (setq dirname (car quail-dirs))
2987 (when dirname
2988 (setq pkg-list (directory-files dirname 'full "\\.el$" 'nosort))
2989 (while pkg-list
2990 (message "Checking %s ..." (car pkg-list))
2991 (with-temp-buffer
2992 (insert-file-contents (car pkg-list))
2993 (goto-char (point-min))
2994 ;; Don't get fooled by commented-out code.
2995 (while (re-search-forward "^[ \t]*(quail-define-package" nil t)
2996 (goto-char (match-beginning 0))
2997 (condition-case nil
2998 (let ((form (read (current-buffer))))
2999 (with-current-buffer list-buf
3000 (insert
3001 (format "(register-input-method
3002 %S %S '%s
3003 %S %S
3004 %S)\n"
3005 (nth 1 form) ; PACKAGE-NAME
3006 (nth 2 form) ; LANGUAGE
3007 'quail-use-package ; ACTIVATE-FUNC
3008 (nth 3 form) ; PACKAGE-TITLE
3009 (progn ; PACKAGE-DESCRIPTION (one line)
3010 (string-match ".*" (nth 5 form))
3011 (match-string 0 (nth 5 form)))
3012 (file-relative-name ; PACKAGE-FILENAME
3013 (file-name-sans-extension (car pkg-list))
3014 (car dirnames))))))
3015 (error
3016 ;; Ignore the remaining contents of this file.
3017 (goto-char (point-max))
3018 (message "Some part of \"%s\" is broken" (car pkg-list))))))
3019 (setq pkg-list (cdr pkg-list)))
3020 (setq quail-dirs (cdr quail-dirs) dirnames (cdr dirnames))))
3021
3022 ;; At last, write out LEIM list file.
3023 (with-current-buffer list-buf
3024 (let ((coding-system-for-write 'iso-2022-7bit))
3025 (save-buffer 0)))
3026 (kill-buffer list-buf)
3027 (message "Updating %s ... done" leim-list)))
3028 \f
3029 (defun quail-advice (args)
3030 "Advise users about the characters input by the current Quail package.
3031 The argument is a parameterized event of the form:
3032 (quail-advice STRING)
3033 where STRING is a string containing the input characters.
3034 If STRING has property `advice' and the value is a function,
3035 call it with one argument STRING."
3036 (interactive "e")
3037 (let* ((string (nth 1 args))
3038 (func (get-text-property 0 'advice string)))
3039 (if (functionp func)
3040 (funcall func string))))
3041
3042 (global-set-key [quail-advice] 'quail-advice)
3043
3044 ;;
3045 (provide 'quail)
3046
3047 ;; arch-tag: 46d7db54-5467-42c4-a2a9-53ca90a1e886
3048 ;;; quail.el ends here