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