Mercurial > emacs
annotate lisp/international/quail.el @ 19510:11cdee30cd02
(change-log-font-lock-keywords):
Match "Patches by". Match all kinds of acks after ` '.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 24 Aug 1997 20:28:59 +0000 |
parents | e6134c179b4c |
children | 1c0ecc266e38 |
rev | line source |
---|---|
17315
a3ca5e15c82a
Fix the format of the first line.
Kenichi Handa <handa@m17n.org>
parents:
17174
diff
changeset
|
1 ;;; quail.el --- Provides simple input method for multilingual text |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18349
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
17052 | 5 |
6 ;; Author: Kenichi HANDA <handa@etl.go.jp> | |
7 ;; Naoto TAKAHASHI <ntakahas@etl.go.jp> | |
8 ;; Maintainer: Kenichi HANDA <handa@etl.go.jp> | |
9 ;; Keywords: mule, multilingual, input method | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
17071 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
26 ;; Boston, MA 02111-1307, USA. | |
17052 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; In Quail minor mode, you can input multilingual text easily. By | |
31 ;; defining a translation table (named Quail map) which maps ASCII key | |
32 ;; string to multilingual character or string, you can input any text | |
33 ;; from ASCII keyboard. | |
34 ;; | |
35 ;; We use words "translation" and "conversion" differently. The | |
36 ;; former is done by Quail package itself, the latter is the further | |
37 ;; process of converting a translated text to some more desirable | |
38 ;; text. For instance, Quail package for Japanese (`quail-jp') | |
39 ;; translates Roman text (transliteration of Japanese in Latin | |
40 ;; alphabets) to Hiragana text, which is then converted to | |
41 ;; Kanji-and-Kana mixed text or Katakana text by commands specified in | |
42 ;; CONVERSION-KEYS argument of the Quail package. | |
43 | |
44 ;;; Code: | |
45 | |
46 (require 'faces) | |
47 | |
48 ;; Buffer local variables | |
49 | |
50 (defvar quail-current-package nil | |
19391
763bc03e7797
(quail-guidance-buf): Now a permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
19327
diff
changeset
|
51 "The current Quail package, which depends on the current input method. |
17052 | 52 See the documentation of `quail-package-alist' for the format.") |
53 (make-variable-buffer-local 'quail-current-package) | |
54 (put 'quail-current-package 'permanent-local t) | |
55 | |
56 ;; Quail uses the following two buffers to assist users. | |
57 ;; A buffer to show available key sequence or translation list. | |
58 (defvar quail-guidance-buf nil) | |
59 ;; A buffer to show completion list of the current key sequence. | |
60 (defvar quail-completion-buf nil) | |
61 | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
62 ;; Each buffer in which Quail is activated should use different |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
63 ;; guidance buffers. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
64 (make-variable-buffer-local 'quail-guidance-buf) |
19391
763bc03e7797
(quail-guidance-buf): Now a permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
19327
diff
changeset
|
65 (put 'quail-guidance-buf 'permanent-local t) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
66 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
67 ;; A main window showing Quail guidance buffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
68 (defvar quail-guidance-win nil) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
69 (make-variable-buffer-local 'quail-guidance-win) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
70 |
17052 | 71 (defvar quail-mode nil |
72 "Non-nil if in Quail minor mode.") | |
73 (make-variable-buffer-local 'quail-mode) | |
74 (put 'quail-mode 'permanent-local t) | |
75 | |
76 (defvar quail-overlay nil | |
77 "Overlay which covers the current translation region of Quail.") | |
78 (make-variable-buffer-local 'quail-overlay) | |
79 | |
80 (defvar quail-conv-overlay nil | |
81 "Overlay which covers the text to be converted in Quail mode.") | |
82 (make-variable-buffer-local 'quail-conv-overlay) | |
83 | |
84 (defvar quail-current-key nil | |
85 "Current key for translation in Quail mode.") | |
86 | |
87 (defvar quail-current-str nil | |
88 "Currently selected translation of the current key.") | |
89 | |
90 (defvar quail-current-translations nil | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
91 "Cons of indices and vector of possible translations of the current key. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
92 Indices is a list of (CURRENT START END BLOCK BLOCKS), where |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
93 CURRENT is an index of the current translation, |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
94 START and END are indices of the start and end of the current block, |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
95 BLOCK is the current block index, |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
96 BLOCKS is a number of blocks of translation.") |
17052 | 97 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
98 (defvar quail-current-data nil |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
99 "Any Lisp object holding information of current translation status. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
100 When a key sequence is mapped to TRANS and TRANS is a cons |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
101 of actual translation and some Lisp object to be refered |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
102 for translating the longer key sequence, this variable is set |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
103 to that Lisp object.") |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
104 (make-variable-buffer-local 'quail-current-data) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
105 |
17052 | 106 ;; A flag to control conversion region. Normally nil, but if set to |
107 ;; t, it means we must start the new conversion region if new key to | |
108 ;; be translated is input. | |
109 (defvar quail-reset-conversion-region nil) | |
110 | |
111 ;; Quail package handlers. | |
112 | |
113 (defvar quail-package-alist nil | |
114 "List of Quail packages. | |
115 A Quail package is a list of these elements: | |
116 NAME, TITLE, QUAIL-MAP, GUIDANCE, DOCSTRING, TRANSLATION-KEYS, | |
117 FORGET-LAST-SELECTION, DETERMINISTIC, KBD-TRANSLATE, SHOW-LAYOUT, | |
118 DECODE-MAP, MAXIMUM-SHORTEST, OVERLAY-PLIST, UPDATE-TRANSLATION-FUNCTION, | |
119 CONVERSION-KEYS. | |
120 | |
121 QUAIL-MAP is a data structure to map key strings to translations. For | |
122 the format, see the documentation of `quail-map-p'. | |
123 | |
124 DECODE-MAP is an alist of translations and corresponding keys. | |
125 | |
126 See the documentation of `quail-define-package' for the other elements.") | |
127 | |
128 ;; Return various slots in the current quail-package. | |
129 | |
130 (defsubst quail-name () | |
131 "Return the name of the current Quail package." | |
132 (nth 0 quail-current-package)) | |
133 (defsubst quail-title () | |
134 "Return the title of the current Quail package." | |
135 (nth 1 quail-current-package)) | |
136 (defsubst quail-map () | |
137 "Return the translation map of the current Quail package." | |
138 (nth 2 quail-current-package)) | |
139 (defsubst quail-guidance () | |
140 "Return an object used for `guidance' feature of the current Quail package. | |
141 See also the documentation of `quail-define-package'." | |
142 (nth 3 quail-current-package)) | |
143 (defsubst quail-docstring () | |
144 "Return the documentation string of the current Quail package." | |
145 (nth 4 quail-current-package)) | |
146 (defsubst quail-translation-keymap () | |
147 "Return translation keymap in the current Quail package. | |
148 Translation keymap is a keymap used while translation region is active." | |
149 (nth 5 quail-current-package)) | |
150 (defsubst quail-forget-last-selection () | |
151 "Return `forget-last-selection' flag of the current Quail package. | |
152 See also the documentation of `quail-define-package'." | |
153 (nth 6 quail-current-package)) | |
154 (defsubst quail-deterministic () | |
155 "Return `deterministic' flag of the current Quail package. | |
156 See also the documentation of `quail-define-package'." | |
157 (nth 7 quail-current-package)) | |
158 (defsubst quail-kbd-translate () | |
159 "Return `kbd-translate' flag of the current Quail package. | |
160 See also the documentation of `quail-define-package'." | |
161 (nth 8 quail-current-package)) | |
162 (defsubst quail-show-layout () | |
163 "Return `show-layout' flag of the current Quail package. | |
164 See also the documentation of `quail-define-package'." | |
165 (nth 9 quail-current-package)) | |
166 (defsubst quail-decode-map () | |
167 "Return decode map of the current Quail package. | |
168 It is an alist of translations and corresponding keys." | |
169 (nth 10 quail-current-package)) | |
170 (defsubst quail-maximum-shortest () | |
171 "Return `maximum-shortest' flag of the current Quail package. | |
172 See also the documentation of `quail-define-package'." | |
173 (nth 11 quail-current-package)) | |
174 (defsubst quail-overlay-plist () | |
175 "Return property list of an overly used in the current Quail package." | |
176 (nth 12 quail-current-package)) | |
177 (defsubst quail-update-translation-function () | |
178 "Return a function for updating translation in the current Quail package." | |
179 (nth 13 quail-current-package)) | |
180 (defsubst quail-conversion-keymap () | |
181 "Return conversion keymap in the current Quail package. | |
182 Conversion keymap is a keymap used while conversion region is active | |
183 but translation region is not active." | |
184 (nth 14 quail-current-package)) | |
185 | |
186 (defsubst quail-package (name) | |
187 "Return Quail package named NAME." | |
188 (assoc name quail-package-alist)) | |
189 | |
190 (defun quail-add-package (package) | |
191 "Add Quail package PACKAGE to `quail-package-alist'." | |
192 (let ((pac (quail-package (car package)))) | |
193 (if pac | |
194 (setcdr pac (cdr package)) | |
195 (setq quail-package-alist (cons package quail-package-alist))))) | |
196 | |
197 (defun quail-select-package (name) | |
198 "Select Quail package named NAME as the current Quail package." | |
199 (let ((package (quail-package name))) | |
200 (if (null package) | |
201 (error "No Quail package `%s'" name)) | |
202 (setq quail-current-package package) | |
203 (setq-default quail-current-package package) | |
204 name)) | |
205 | |
206 ;;;###autoload | |
207 (defun quail-use-package (package-name &rest libraries) | |
208 "Start using Quail package PACKAGE-NAME. | |
209 The remaining arguments are libraries to be loaded before using the package." | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
210 (let ((package (quail-package package-name))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
211 (if (null package) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
212 ;; Perhaps we have not yet loaded necessary libraries. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
213 (while libraries |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
214 (if (not (load (car libraries) t)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
215 (progn |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
216 (with-output-to-temp-buffer "*Help*" |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
217 (princ "Quail package \"") |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
218 (princ package-name) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
219 (princ "\" can't be activated\n because library \"") |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
220 (princ (car libraries)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
221 (princ "\" is not in `load-path'. |
17052 | 222 |
223 The most common case is that you have not yet installed appropriate | |
224 libraries in LEIM (Libraries of Emacs Input Method) which is | |
225 distributed separately from Emacs. | |
226 | |
227 LEIM is available from the same ftp directory as Emacs.")) | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
228 (error "Can't use the Quail package `%s'" package-name)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
229 (setq libraries (cdr libraries)))))) |
17052 | 230 (quail-select-package package-name) |
231 (setq current-input-method-title (quail-title)) | |
232 (quail-mode 1)) | |
233 | |
234 (defun quail-inactivate () | |
235 "Turn off Quail input method." | |
236 (interactive) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
237 (setq overriding-terminal-local-map nil) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
238 (quail-mode -1)) |
17052 | 239 |
240 (or (assq 'quail-mode minor-mode-alist) | |
241 (setq minor-mode-alist | |
242 (cons '(quail-mode " Quail") minor-mode-alist))) | |
243 | |
244 (defvar quail-mode-map | |
245 (let ((map (make-keymap)) | |
246 (i ? )) | |
247 (while (< i 127) | |
248 (define-key map (char-to-string i) 'quail-start-translation) | |
249 (setq i (1+ i))) | |
250 map) | |
251 "Keymap for Quail mode.") | |
252 | |
253 (or (assq 'quail-mode minor-mode-map-alist) | |
254 (setq minor-mode-map-alist | |
255 (cons (cons 'quail-mode quail-mode-map) minor-mode-map-alist))) | |
256 | |
17095
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
257 ;; Since some Emacs Lisp programs (e.g. viper.el) make |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
258 ;; minor-mode-map-alist buffer-local, we must be sure to register |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
259 ;; quail-mode-map in default-value of minor-mode-map-alist. |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
260 (if (local-variable-p 'minor-mode-map-alist) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
261 (let ((map (default-value 'minor-mode-map-alist))) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
262 (or (assq 'quail-mode map) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
263 (set-default 'minor-mode-map-alist (cons 'quail-mode map))))) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
264 |
17052 | 265 (defvar quail-translation-keymap |
266 (let ((map (make-keymap)) | |
267 (i 0)) | |
268 (while (< i ?\ ) | |
269 (define-key map (char-to-string i) 'quail-execute-non-quail-command) | |
270 (setq i (1+ i))) | |
271 (while (< i 127) | |
272 (define-key map (char-to-string i) 'quail-self-insert-command) | |
273 (setq i (1+ i))) | |
274 (define-key map "\177" 'quail-delete-last-char) | |
275 (define-key map "\C-f" 'quail-next-translation) | |
276 (define-key map "\C-b" 'quail-prev-translation) | |
277 (define-key map "\C-n" 'quail-next-translation-block) | |
278 (define-key map "\C-p" 'quail-prev-translation-block) | |
279 (define-key map "\C-i" 'quail-completion) | |
280 (define-key map "\C-@" 'quail-select-current) | |
281 (define-key map "\C-c" 'quail-abort-translation) | |
282 (define-key map "\C-h" 'quail-translation-help) | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
283 (define-key map "\e" '(keymap (t . quail-execute-non-quail-command))) |
17052 | 284 (define-key map [tab] 'quail-completion) |
285 (define-key map [delete] 'quail-delete-last-char) | |
286 (define-key map [backspace] 'quail-delete-last-char) | |
287 ;; At last, define default key binding. | |
288 (append map '((t . quail-execute-non-quail-command)))) | |
289 "Keymap used processing translation in Quail mode. | |
290 This map is activated while translation region is active.") | |
291 | |
292 (defvar quail-conversion-keymap | |
293 (let ((map (make-keymap)) | |
294 (i 0)) | |
295 (while (< i ?\ ) | |
296 (define-key map (char-to-string i) 'quail-execute-non-quail-command) | |
297 (setq i (1+ i))) | |
298 (while (< i 127) | |
299 (define-key map (char-to-string i) | |
300 'quail-start-translation-in-conversion-mode) | |
301 (setq i (1+ i))) | |
302 (define-key map "\C-b" 'quail-conversion-backward-char) | |
303 (define-key map "\C-f" 'quail-conversion-forward-char) | |
304 (define-key map "\C-a" 'quail-conversion-beginning-of-region) | |
305 (define-key map "\C-e" 'quail-conversion-end-of-region) | |
306 (define-key map "\C-d" 'quail-conversion-delete-char) | |
307 (define-key map "\C-h" 'quail-conversion-help) | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
308 (define-key map "\e" '(keymap (t . quail-execute-non-quail-command))) |
17052 | 309 (define-key map "\177" 'quail-conversion-backward-delete-char) |
310 (define-key map [delete] 'quail-conversion-backward-delete-char) | |
311 (define-key map [backspace] 'quail-conversion-backward-delete-char) | |
312 ;; At last, define default key binding. | |
313 (append map '((t . quail-execute-non-quail-command)))) | |
314 "Keymap used for processing conversion in Quail mode. | |
315 This map is activated while convesion region is active but translation | |
316 region is not active.") | |
317 | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
318 ;;;###autoload |
17052 | 319 (defun quail-define-package (name language title |
320 &optional guidance docstring translation-keys | |
321 forget-last-selection deterministic | |
322 kbd-translate show-layout create-decode-map | |
323 maximum-shortest overlay-plist | |
324 update-translation-function | |
325 conversion-keys) | |
326 "Define NAME as a new Quail package for input LANGUAGE. | |
327 TITLE is a string to be displayed at mode-line to indicate this package. | |
328 Optional arguments are GUIDANCE, DOCSTRING, TRANLSATION-KEYS, | |
329 FORGET-LAST-SELECTION, DETERMINISTIC, KBD-TRANSLATE, SHOW-LAYOUT, | |
330 CREATE-DECODE-MAP, MAXIMUM-SHORTEST, OVERLAY-PLIST, | |
331 UPDATE-TRANSLATION-FUNCTION, and CONVERSION-KEYS. | |
332 | |
333 GUIDANCE specifies how a guidance string is shown in echo area. | |
334 If it is t, list of all possible translations for the current key is shown | |
335 with the currently selected translation being highlighted. | |
336 If it is an alist, the element has the form (CHAR . STRING). Each character | |
337 in the current key is searched in the list and the corresponding string is | |
338 shown. | |
339 If it is nil, the current key is shown. | |
340 | |
341 DOCSTRING is the documentation string of this package. | |
342 | |
343 TRANSLATION-KEYS specifies additional key bindings used while translation | |
344 region is active. It is an alist of single key character vs. corresponding | |
345 command to be called. | |
346 | |
347 FORGET-LAST-SELECTION non-nil means a selected translation is not kept | |
348 for the future to translate the same key. If this flag is nil, a | |
349 translation selected for a key is remembered so that it can be the | |
350 first candidate when the same key is entered later. | |
351 | |
352 DETERMINISTIC non-nil means the first candidate of translation is | |
353 selected automatically without allowing users to select another | |
354 translation for a key. In this case, unselected translations are of | |
355 no use for an interactive use of Quail but can be used by some other | |
356 programs. If this flag is non-nil, FORGET-LAST-SELECTION is also set | |
357 to t. | |
358 | |
359 KBD-TRANSLATE non-nil means input characters are translated from a | |
360 user's keyboard layout to the standard keyboard layout. See the | |
361 documentation of `quail-keyboard-layout' and | |
362 `quail-keyboard-layout-standard' for more detail. | |
363 | |
364 SHOW-LAYOUT non-nil means the `quail-help' command should show | |
365 the user's keyboard layout visually with translated characters. | |
366 If KBD-TRANSLATE is set, it is desirable to set also this flag unless | |
367 this package defines no translations for single character keys. | |
368 | |
369 CREATE-DECODE-MAP non-nil means decode map is also created. A decode | |
370 map is an alist of translations and corresponding original keys. | |
371 Although this map is not used by Quail itself, it can be used by some | |
372 other programs. For instance, Vietnamese supporting needs this map to | |
373 convert Vietnamese text to VIQR format which uses only ASCII | |
374 characters to represent Vietnamese characters. | |
375 | |
376 MAXIMUM-SHORTEST non-nil means break key sequence to get maximum | |
377 length of the shortest sequence. When we don't have a translation of | |
378 key \"..ABCD\" but have translations of \"..AB\" and \"CD..\", break | |
379 the key at \"..AB\" and start translation of \"CD..\". Hangul | |
380 packages, for instance, use this facility. If this flag is nil, we | |
381 break the key just at \"..ABC\" and start translation of \"D..\". | |
382 | |
383 OVERLAY-PLIST if non-nil is a property list put on an overlay which | |
384 covers Quail translation region. | |
385 | |
386 UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update | |
387 the current translation region accoding to a new translation data. By | |
388 default, a tranlated text or a user's key sequence (if no transltion | |
389 for it) is inserted. | |
390 | |
391 CONVERSION-KEYS specifies additional key bindings used while | |
392 conversion region is active. It is an alist of single key character | |
393 vs. corresponding command to be called." | |
394 (let (translation-keymap conversion-keymap) | |
395 (if deterministic (setq forget-last-selection t)) | |
396 (if translation-keys | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
397 (progn |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
398 (setq translation-keymap (copy-keymap quail-translation-keymap)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
399 (while translation-keys |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
400 (define-key translation-keymap |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
401 (car (car translation-keys)) (cdr (car translation-keys))) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
402 (setq translation-keys (cdr translation-keys)))) |
17052 | 403 (setq translation-keymap quail-translation-keymap)) |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
404 (when conversion-keys |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
405 (setq conversion-keymap (copy-keymap quail-conversion-keymap)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
406 (while conversion-keys |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
407 (define-key conversion-keymap |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
408 (car (car conversion-keys)) (cdr (car conversion-keys))) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
409 (setq conversion-keys (cdr conversion-keys)))) |
17052 | 410 (quail-add-package |
411 (list name title (list nil) guidance (or docstring "") | |
412 translation-keymap | |
413 forget-last-selection deterministic kbd-translate show-layout | |
414 (if create-decode-map (list 'decode-map) nil) | |
415 maximum-shortest overlay-plist update-translation-function | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
416 conversion-keymap)) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
417 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
418 ;; Update input-method-alist. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
419 (let ((slot (assoc name input-method-alist)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
420 (val (list language 'quail-use-package title docstring))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
421 (if slot (setcdr slot val) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
422 (setq input-method-alist (cons (cons name val) input-method-alist))))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
423 |
17052 | 424 (quail-select-package name)) |
425 | |
426 ;; Quail minor mode handlers. | |
427 | |
428 ;; Setup overlays used in Quail mode. | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
429 (defun quail-setup-overlays (conversion-mode) |
17052 | 430 (let ((pos (point))) |
431 (if (overlayp quail-overlay) | |
432 (move-overlay quail-overlay pos pos) | |
433 (setq quail-overlay (make-overlay pos pos nil nil t)) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
434 (if input-method-highlight-flag |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
435 (overlay-put quail-overlay 'face 'underline)) |
17052 | 436 (let ((l (quail-overlay-plist))) |
437 (while l | |
438 (overlay-put quail-overlay (car l) (car (cdr l))) | |
439 (setq l (cdr (cdr l)))))) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
440 (if conversion-mode |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
441 (if (overlayp quail-conv-overlay) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
442 (if (not (overlay-start quail-conv-overlay)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
443 (move-overlay quail-conv-overlay pos pos)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
444 (setq quail-conv-overlay (make-overlay pos pos nil nil t)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
445 (if input-method-highlight-flag |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
446 (overlay-put quail-conv-overlay 'face 'underline)))))) |
17052 | 447 |
448 ;; Delete overlays used in Quail mode. | |
449 (defun quail-delete-overlays () | |
450 (if (overlayp quail-overlay) | |
451 (delete-overlay quail-overlay)) | |
452 (if (overlayp quail-conv-overlay) | |
453 (delete-overlay quail-conv-overlay))) | |
454 | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
455 ;; Kill Quail guidance buffer. Set in kill-buffer-hook. |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
456 (defun quail-kill-guidance-buf () |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
457 (if (buffer-live-p quail-guidance-buf) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
458 (kill-buffer quail-guidance-buf))) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
459 |
17052 | 460 (defun quail-mode (&optional arg) |
461 "Toggle Quail minor mode. | |
462 With arg, turn Quail mode on if and only if arg is positive. | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
463 |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
464 You should not turn on and off Quail mode manually, instead use |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
465 the commands `toggle-input-method' or `select-input-methods' (which |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
466 see). They automatically turn on or off this mode. |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
467 |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
468 Try \\[describe-bindings] in Quail mode to see the available key bindings. |
17052 | 469 The command \\[describe-input-method] describes the current Quail package." |
470 (setq quail-mode | |
471 (if (null arg) (null quail-mode) | |
472 (> (prefix-numeric-value arg) 0))) | |
473 (if (null quail-mode) | |
474 ;; Let's turn off Quail mode. | |
475 (progn | |
476 (quail-hide-guidance-buf) | |
477 (quail-delete-overlays) | |
478 (setq describe-current-input-method-function nil) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
479 (run-hooks 'quail-mode-exit-hook)) |
17052 | 480 ;; Let's turn on Quail mode. |
17764
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
481 ;; At first, be sure that quail-mode is at the first element of |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
482 ;; minor-mode-map-alist. |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
483 (or (eq (car minor-mode-map-alist) 'quail-mode) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
484 (let ((l minor-mode-map-alist)) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
485 (while (cdr l) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
486 (if (eq (car (cdr l)) 'quail-mode) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
487 (progn |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
488 (setcdr l (cdr (cdr l))) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
489 (setq l nil)) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
490 (setq l (cdr l)))) |
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
491 (setq minor-mode-map-alist (cons 'quail-mode minor-mode-map-alist)))) |
17052 | 492 (if (null quail-current-package) |
493 ;; Quail package is not yet selected. Select one now. | |
494 (let (name) | |
495 (if quail-package-alist | |
496 (setq name (car (car quail-package-alist))) | |
497 (setq quail-mode nil) | |
498 (error "No Quail package loaded")) | |
499 (quail-select-package name))) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
500 (setq inactivate-current-input-method-function 'quail-inactivate) |
17052 | 501 (setq describe-current-input-method-function 'quail-help) |
502 (quail-delete-overlays) | |
503 (quail-show-guidance-buf) | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
504 ;; If we are in minibuffer, turn off the current input method |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
505 ;; before exiting. |
17052 | 506 (if (eq (selected-window) (minibuffer-window)) |
507 (add-hook 'minibuffer-exit-hook 'quail-exit-from-minibuffer)) | |
508 (make-local-hook 'post-command-hook) | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
509 (make-local-hook 'kill-buffer-hook) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
510 (add-hook 'kill-buffer-hook 'quail-kill-guidance-buf nil t) |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
511 (run-hooks 'quail-mode-hook)) |
17052 | 512 (force-mode-line-update)) |
513 | |
514 (defun quail-exit-from-minibuffer () | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
515 (inactivate-input-method) |
17052 | 516 (if (<= (minibuffer-depth) 1) |
517 (remove-hook 'minibuffer-exit-hook 'quail-exit-from-minibuffer))) | |
518 | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
519 (defvar quail-saved-current-map nil) |
17052 | 520 (defvar quail-saved-current-buffer nil) |
521 | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
522 ;; Toggle Quail mode. This function is added to `post-command-hook' |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
523 ;; in Quail mode, to turn Quail mode temporarily off, or back on after |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
524 ;; one non-Quail command. |
17052 | 525 (defun quail-toggle-mode-temporarily () |
526 (if quail-mode | |
527 ;; We are going to handle following events out of Quail mode. | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
528 (setq quail-saved-current-buffer (current-buffer) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
529 quail-saved-current-map overriding-terminal-local-map |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
530 quail-mode nil |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
531 overriding-terminal-local-map nil) |
17052 | 532 ;; We have just executed one non-Quail command. We don't need |
533 ;; this hook any more. | |
534 (remove-hook 'post-command-hook 'quail-toggle-mode-temporarily t) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
535 (if (eq (current-buffer) quail-saved-current-buffer) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
536 ;; We should go back to Quail mode only when the current input |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
537 ;; method was not turned off by the last command. |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
538 (when current-input-method |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
539 (setq quail-mode t |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
540 overriding-terminal-local-map quail-saved-current-map) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
541 (if input-method-exit-on-invalid-key |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
542 (inactivate-input-method))) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
543 ;; The last command changed the current buffer, we should not go |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
544 ;; back to Quail mode in this new buffer, but should turn on |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
545 ;; Quail mode in the original buffer. |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
546 (save-excursion |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
547 (set-buffer quail-saved-current-buffer) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
548 (setq quail-mode t) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
549 (quail-delete-overlays))))) |
17052 | 550 |
551 (defun quail-execute-non-quail-command () | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
552 "Execute one non-Quail command out of Quail mode. |
17052 | 553 The current translation and conversion are terminated." |
554 (interactive) | |
555 (setq unread-command-events (cons last-input-event unread-command-events)) | |
556 (quail-delete-overlays) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
557 (setq overriding-terminal-local-map nil) |
17052 | 558 (if (buffer-live-p quail-guidance-buf) |
559 (save-excursion | |
560 (set-buffer quail-guidance-buf) | |
561 (erase-buffer))) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
562 (add-hook 'post-command-hook 'quail-toggle-mode-temporarily nil t)) |
17052 | 563 |
564 ;; Keyboard layout translation handlers. | |
565 | |
566 ;; Some Quail packages provide localized keyboard simulation which | |
567 ;; requires a particular keyboard layout. In this case, what we need | |
568 ;; is locations of keys the user entered, not character codes | |
569 ;; generated by those keys. However, for the moment, there's no | |
570 ;; common way to get such information. So, we ask a user to give | |
571 ;; information of his own keyboard layout, then translate it to the | |
572 ;; standard layout which we defined so that all Quail packages depend | |
573 ;; just on it. | |
574 | |
575 (defconst quail-keyboard-layout-standard | |
576 "\ | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
577 \ |
17052 | 578 1!2@3#4$5%6^7&8*9(0)-_=+`~ \ |
579 qQwWeErRtTyYuUiIoOpP[{]} \ | |
580 aAsSdDfFgGhHjJkKlL;:'\"\\| \ | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
581 zZxXcCvVbBnNmM,<.>/? \ |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
582 " |
17052 | 583 "Standard keyboard layout of printable characters Quail assumes. |
584 See the documentation of `quail-keyboard-layout' for this format. | |
585 This layout is almost the same as that of VT100, | |
586 but the location of key \\ (backslash) is just right of key ' (single-quote), | |
587 not right of RETURN key.") | |
588 | |
589 (defvar quail-keyboard-layout quail-keyboard-layout-standard | |
590 "A string which represents physical key layout of a particular keyboard. | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
591 We assume there are six rows and each row has 15 keys (columns), |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
592 the first row is above the `1' - `0' row, |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
593 the first column of the second row is left of key `1', |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
594 the first column of the third row is left of key `q', |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
595 the first column of the fourth row is left of key `a', |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
596 the first column of the fifth row is left of key `z', |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
597 the sixth row is below the `z' - `/' row. |
17052 | 598 Nth (N is even) and (N+1)th characters in the string are non-shifted |
599 and shifted characters respectively at the same location. | |
19391
763bc03e7797
(quail-guidance-buf): Now a permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
19327
diff
changeset
|
600 The location of Nth character is row (N / 30) and column ((N mod 30) / 2). |
763bc03e7797
(quail-guidance-buf): Now a permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
19327
diff
changeset
|
601 The command `quail-set-keyboard-layout' usually sets this variable.") |
17052 | 602 |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
603 (defconst quail-keyboard-layout-len 180) |
17052 | 604 |
605 ;; Here we provide several examples of famous keyboard layouts. | |
606 | |
607 (defvar quail-keyboard-layout-alist | |
608 (list | |
609 '("sun-type3" . "\ | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
610 \ |
17052 | 611 1!2@3#4$5%6^7&8*9(0)-_=+\\|`~\ |
612 qQwWeErRtTyYuUiIoOpP[{]} \ | |
613 aAsSdDfFgGhHjJkKlL;:'\" \ | |
17174
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
614 zZxXcCvVbBnNmM,<.>/? \ |
9c1191812679
(quail-translation-keymap): Add entry for escape key.
Kenichi Handa <handa@m17n.org>
parents:
17095
diff
changeset
|
615 ") |
17052 | 616 (cons "standard" quail-keyboard-layout-standard)) |
617 "Alist of keyboard names and corresponding layout strings. | |
618 See the documentation of `quail-keyboard-layout' for the format of | |
619 the layout string.") | |
620 | |
621 (defun quail-set-keyboard-layout (kbd-type) | |
622 "Set the current keyboard layout to the same as keyboard KBD-TYPE. | |
623 | |
624 Since some Quail packages depends on a physical layout of keys (not | |
625 characters generated by them), those are created by assuming the | |
626 standard layout defined in `quail-keyboard-layout-standard'. This | |
627 function tells Quail system the layout of your keyboard so that what | |
628 you type is correctly handled." | |
629 (interactive | |
630 (let* ((completing-ignore-case t) | |
631 (type (completing-read "Keyboard type: " | |
632 quail-keyboard-layout-alist))) | |
633 (list type))) | |
634 (let ((layout (assoc kbd-type quail-keyboard-layout-alist))) | |
635 (if (null layout) | |
636 ;; Here, we had better ask a user to define his own keyboard | |
637 ;; layout interactively. | |
638 (error "Unknown keyboard type `%s'" kbd-type)) | |
639 (setq quail-keyboard-layout (cdr layout)))) | |
640 | |
641 (defun quail-keyboard-translate (ch) | |
642 "Translate CHAR according to `quail-keyboard-layout' and return the result." | |
643 (if (eq quail-keyboard-layout quail-keyboard-layout-standard) | |
644 ch | |
645 (let ((i 0)) | |
646 (while (and (< i quail-keyboard-layout-len) | |
647 (/= ch (aref quail-keyboard-layout i))) | |
648 (setq i (1+ i))) | |
649 (if (= i quail-keyboard-layout-len) | |
650 (error "Character `%c' not found in your keyboard layout" ch)) | |
651 (aref quail-keyboard-layout-standard i)))) | |
652 | |
653 ;; Quail map | |
654 | |
655 (defsubst quail-map-p (object) | |
656 "Return t if OBJECT is a Quail map. | |
657 | |
658 A Quail map holds information how a particular key should be translated. | |
659 Its format is (TRANSLATION . ALIST). | |
660 TRANSLATION is either a character, or a cons (INDEX . VECTOR). | |
661 In the latter case, each element of VECTOR is a candidate for the translation, | |
662 and INDEX points the currently selected translation. | |
663 | |
664 ALIST is normally a list of elements that look like (CHAR . DEFN), | |
665 where DEFN is another Quail map for a longer key (CHAR added to the | |
666 current key). It may also be a symbol of a function which returns an | |
667 alist of the above format. | |
668 | |
669 Just after a Quail package is read, TRANSLATION may be a string or a | |
670 vector. Then each element of the string or vector is a candidate for | |
671 the translation. These objects are transformed to cons cells in the | |
672 format \(INDEX . VECTOR), as described above." | |
673 (and (consp object) | |
674 (let ((translation (car object))) | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
675 (or (integerp translation) (null translation) |
17052 | 676 (vectorp translation) (stringp translation) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
677 (symbolp translation) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
678 (and (consp translation) (not (vectorp (cdr translation)))))) |
17052 | 679 (let ((alist (cdr object))) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
680 (or (and (listp alist) (consp (car alist))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
681 (symbolp alist))))) |
17052 | 682 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
683 ;;;###autoload |
17052 | 684 (defmacro quail-define-rules (&rest rules) |
685 "Define translation rules of the current Quail package. | |
686 Each argument is a list of KEY and TRANSLATION. | |
687 KEY is a string meaning a sequence of keystrokes to be translated. | |
688 TRANSLATION is a character, a string, a vector, a Quail map, or a function. | |
689 It it is a character, it is the sole translation of KEY. | |
690 If it is a string, each character is a candidate for the translation. | |
691 If it is a vector, each element (string or character) is a candidate | |
692 for the translation. | |
693 In these cases, a key specific Quail map is generated and assigned to KEY. | |
694 | |
695 If TRANSLATION is a Quail map or a function symbol which returns a Quail map, | |
696 it is used to handle KEY." | |
697 `(quail-install-map | |
698 ',(let ((l rules) | |
699 (map (list nil))) | |
700 (while l | |
701 (quail-defrule-internal (car (car l)) (car (cdr (car l))) map) | |
702 (setq l (cdr l))) | |
703 map))) | |
704 | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
705 ;;;###autoload |
17052 | 706 (defun quail-install-map (map) |
707 "Install the Quail map MAP in the current Quail package. | |
708 The installed map can be referred by the function `quail-map'." | |
709 (if (null quail-current-package) | |
710 (error "No current Quail package")) | |
711 (if (null (quail-map-p map)) | |
712 (error "Invalid Quail map `%s'" map)) | |
713 (setcar (cdr (cdr quail-current-package)) map)) | |
714 | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
715 ;;;###autoload |
17052 | 716 (defun quail-defrule (key translation &optional name) |
717 "Add one translation rule, KEY to TRANSLATION, in the current Quail package. | |
718 KEY is a string meaning a sequence of keystrokes to be translated. | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
719 TRANSLATION is a character, a string, a vector, a Quail map, |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
720 a function, or a cons. |
17052 | 721 It it is a character, it is the sole translation of KEY. |
722 If it is a string, each character is a candidate for the translation. | |
723 If it is a vector, each element (string or character) is a candidate | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
724 for the translation. |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
725 If it is a cons, the car is one of the above and the cdr is a function |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
726 to call when translating KEY (the return value is assigned to the |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
727 variable `quail-current-data'). If the cdr part is not a function, |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
728 the value itself is assigned to `quail-current-data'. |
17052 | 729 In these cases, a key specific Quail map is generated and assigned to KEY. |
730 | |
731 If TRANSLATION is a Quail map or a function symbol which returns a Quail map, | |
732 it is used to handle KEY. | |
733 Optional argument NAME, if specified, says which Quail package | |
734 to define this translation rule in. The default is to define it in the | |
735 current Quail package." | |
736 (if name | |
737 (let ((package (quail-package name))) | |
738 (if (null package) | |
739 (error "No Quail package `%s'" name)) | |
740 (setq quail-current-package package))) | |
741 (quail-defrule-internal key translation (quail-map))) | |
742 | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
743 ;;;###autoload |
17052 | 744 (defun quail-defrule-internal (key trans map) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
745 "Define KEY as TRANS in a Quail map MAP." |
17052 | 746 (if (null (stringp key)) |
747 "Invalid Quail key `%s'" key) | |
748 (if (not (or (numberp trans) (stringp trans) (vectorp trans) | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
749 (consp trans) |
17052 | 750 (symbolp trans) |
751 (quail-map-p trans))) | |
752 (error "Invalid Quail translation `%s'" trans)) | |
753 (if (null (quail-map-p map)) | |
754 (error "Invalid Quail map `%s'" map)) | |
755 (let ((len (length key)) | |
756 (idx 0) | |
757 ch entry) | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
758 ;; Make a map for registering TRANS if necessary. |
17052 | 759 (while (< idx len) |
760 (if (null (consp map)) | |
761 ;; We come here, for example, when we try to define a rule | |
762 ;; for "ABC" but a rule for "AB" is already defined as a | |
763 ;; symbol. | |
764 (error "Quail key %s is too long" key)) | |
765 (setq ch (aref key idx) | |
766 entry (assq ch (cdr map))) | |
767 (if (null entry) | |
768 (progn | |
769 (setq entry (cons ch (list nil))) | |
770 (setcdr map (cons entry (cdr map))))) | |
771 (setq map (cdr entry)) | |
772 (setq idx (1+ idx))) | |
773 (if (symbolp trans) | |
774 (if (cdr map) | |
775 ;; We come here, for example, when we try to define a rule | |
776 ;; for "AB" as a symbol but a rule for "ABC" is already | |
777 ;; defined. | |
778 (error "Quail key %s is too short" key) | |
779 (setcdr entry trans)) | |
780 (if (quail-map-p trans) | |
781 (if (not (listp (cdr map))) | |
782 ;; We come here, for example, when we try to define a rule | |
783 ;; for "AB" as a symbol but a rule for "ABC" is already | |
784 ;; defined. | |
785 (error "Quail key %s is too short" key) | |
786 (if (not (listp (cdr trans))) | |
787 (if (cdr map) | |
788 ;; We come here, for example, when we try to | |
789 ;; define a rule for "AB" as a symbol but a rule | |
790 ;; for "ABC" is already defined. | |
791 (error "Quail key %s is too short" key) | |
792 (setcdr entry trans)) | |
793 (setcdr entry (append trans (cdr map))))) | |
794 (setcar map trans))))) | |
795 | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
796 (defun quail-get-translation (def key len) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
797 "Return the translation specified as DEF for KEY of length LEN. |
17052 | 798 The translation is either a character or a cons of the form (INDEX . VECTOR), |
799 where VECTOR is a vector of candidates (character or string) for | |
800 the translation, and INDEX points into VECTOR to specify the currently | |
801 selected translation." | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
802 (if (and def (symbolp def)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
803 ;; DEF is a symbol of a function which returns valid translation. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
804 (setq def (funcall def key len))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
805 (if (and (consp def) (not (vectorp (cdr def)))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
806 (setq def (car def))) |
17052 | 807 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
808 (cond |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
809 ((or (integerp def) (consp def)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
810 def) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
811 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
812 ((null def) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
813 ;; No translation. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
814 nil) |
17052 | 815 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
816 ((stringp def) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
817 ;; Each character in DEF is a candidate of translation. Reform |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
818 ;; it as (INDICES . VECTOR). |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
819 (setq def (string-to-vector def)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
820 ;; But if the length is 1, we don't need vector but a single |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
821 ;; candidate as the translation. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
822 (if (= (length def) 1) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
823 (aref def 0) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
824 (cons (list 0 0 0 0 nil) def))) |
17052 | 825 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
826 ((vectorp def) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
827 ;; Each element (string or character) in DEF is a candidate of |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
828 ;; translation. Reform it as (INDICES . VECTOR). |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
829 (cons (list 0 0 0 0 nil) def)) |
17052 | 830 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
831 (t |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
832 (error "Invalid object in Quail map: %s" def)))) |
17052 | 833 |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
834 (defun quail-lookup-key (key &optional len) |
17052 | 835 "Lookup KEY of length LEN in the current Quail map and return the definition. |
836 The returned value is a Quail map specific to KEY." | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
837 (or len |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
838 (setq len (length key))) |
17052 | 839 (let ((idx 0) |
840 (map (quail-map)) | |
841 (kbd-translate (quail-kbd-translate)) | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
842 slot ch translation def) |
17052 | 843 (while (and map (< idx len)) |
844 (setq ch (if kbd-translate (quail-keyboard-translate (aref key idx)) | |
845 (aref key idx))) | |
846 (setq idx (1+ idx)) | |
847 (if (and (cdr map) (symbolp (cdr map))) | |
848 (setcdr map (funcall (cdr map) key idx))) | |
849 (setq slot (assq ch (cdr map))) | |
850 (if (and (cdr slot) (symbolp (cdr slot))) | |
851 (setcdr slot (funcall (cdr slot) key idx))) | |
852 (setq map (cdr slot))) | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
853 (setq def (car map)) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
854 (setq quail-current-translations nil) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
855 (if (and map (setq translation (quail-get-translation def key len))) |
17052 | 856 (progn |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
857 (if (and (consp def) (not (vectorp (cdr def)))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
858 (progn |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
859 (if (not (equal (car def) translation)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
860 ;; We must reflect TRANSLATION to car part of DEF. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
861 (setcar def translation)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
862 (setq quail-current-data |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
863 (if (functionp (cdr def)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
864 (funcall (cdr def)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
865 (cdr def)))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
866 (if (not (equal def translation)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
867 ;; We must reflect TRANSLATION to car part of MAP. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
868 (setcar map translation))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
869 (if (and (consp translation) (vectorp (cdr translation))) |
17052 | 870 (progn |
871 (setq quail-current-translations translation) | |
872 (if (quail-forget-last-selection) | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
873 (setcar (car quail-current-translations) 0)))) |
17052 | 874 ;; We may have to reform cdr part of MAP. |
875 (if (and (cdr map) (symbolp (cdr map))) | |
876 (progn | |
877 (setcdr map (funcall (cdr map) key len)))) | |
878 )) | |
879 map)) | |
880 | |
881 ;; If set to non-nil, exit conversion mode before starting new translation. | |
882 (defvar quail-exit-conversion-mode nil) | |
883 | |
18201
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
884 (defvar quail-prefix-arg nil) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
885 |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
886 (defun quail-start-translation (arg) |
17052 | 887 "Start translating the typed character in Quail mode." |
18201
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
888 (interactive "*p") |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
889 (setq prefix-arg arg) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
890 (setq quail-prefix-arg arg) |
17052 | 891 (setq unread-command-events |
892 (cons last-command-event unread-command-events)) | |
893 ;; Check the possibility of translating the last key. | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
894 (if (and (integerp last-command-event) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
895 (assq (if (quail-kbd-translate) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
896 (quail-keyboard-translate last-command-event) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
897 last-command-event) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
898 (cdr (quail-map)))) |
17052 | 899 ;; Ok, we can start translation. |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
900 (if (quail-conversion-keymap) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
901 ;; We must start translation in conversion mode. |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
902 (setq quail-exit-conversion-mode nil |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
903 overriding-terminal-local-map (quail-conversion-keymap)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
904 (quail-setup-overlays nil) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
905 (setq quail-current-key "") |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
906 (setq overriding-terminal-local-map (quail-translation-keymap))) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
907 ;; Since the last event doesn't start any translation, handle it |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
908 ;; out of Quail mode. We come back to Quail mode later by setting |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
909 ;; function `quail-toggle-mode-temporarily' in |
17052 | 910 ;; `post-command-hook'. |
911 (add-hook 'post-command-hook 'quail-toggle-mode-temporarily nil t))) | |
912 | |
913 (defsubst quail-point-in-conversion-region () | |
914 "Return non-nil value if the point is in conversion region of Quail mode." | |
915 (let (start pos) | |
916 (and (setq start (overlay-start quail-conv-overlay)) | |
917 (>= (setq pos (point)) start) | |
918 (<= pos (overlay-end quail-conv-overlay))))) | |
919 | |
920 (defun quail-start-translation-in-conversion-mode () | |
921 "Start translating the typed character in conversion mode of Quail mode." | |
922 (interactive "*") | |
923 (setq unread-command-events | |
924 (cons last-command-event unread-command-events)) | |
925 ;; Check the possibility of translating the last key. | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
926 (if (and (integerp last-command-event) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
927 (assq (if (quail-kbd-translate) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
928 (quail-keyboard-translate last-command-event) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
929 last-command-event) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
930 (cdr (quail-map)))) |
17052 | 931 ;; Ok, we can start translation. |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
932 (progn |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
933 (quail-setup-overlays t) |
17052 | 934 (setq quail-current-key "") |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
935 (setq overriding-terminal-local-map (quail-translation-keymap)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
936 (move-overlay quail-overlay (point) (point))) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
937 ;; Since the last event doesn't start any translation, handle it |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
938 ;; out of Quail mode. We come back to Quail mode later by setting |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
939 ;; function `quail-toggle-mode-temporarily' in |
17052 | 940 ;; `post-command-hook'. |
941 (add-hook 'post-command-hook 'quail-toggle-mode-temporarily nil t))) | |
942 | |
18201
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
943 (defsubst quail-delete-region () |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
944 "Delete the text in the current translation region of Quail." |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
945 (if (overlay-start quail-overlay) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
946 (delete-region (overlay-start quail-overlay) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
947 (overlay-end quail-overlay)))) |
18201
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
948 |
17052 | 949 (defun quail-terminate-translation () |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
950 "Terminate the translation of the current key. |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
951 Optional arg SUPPRESS-INSERT-CHUNK-HOOK if non-nil means don't run hooks |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
952 in `input-method-after-insert-chunk-hook' (which see)." |
17052 | 953 (let ((start (overlay-start quail-overlay))) |
954 (if (and start | |
955 (< start (overlay-end quail-overlay))) | |
956 ;; Here we simulate self-insert-command. | |
18201
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
957 (let ((seq (string-to-sequence |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
958 (buffer-substring (overlay-start quail-overlay) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
959 (overlay-end quail-overlay)) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
960 'list)) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
961 last-command-char) |
17052 | 962 (goto-char start) |
18201
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
963 (quail-delete-region) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
964 (setq last-command-char (car seq)) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
965 (self-insert-command (or quail-prefix-arg 1)) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
966 (setq seq (cdr seq)) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
967 (while seq |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
968 (setq last-command-char (car seq)) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
969 (self-insert-command 1) |
feea31893155
(quail-prefix-arg): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17764
diff
changeset
|
970 (setq seq (cdr seq)))))) |
17052 | 971 (delete-overlay quail-overlay) |
972 (if (buffer-live-p quail-guidance-buf) | |
973 (save-excursion | |
974 (set-buffer quail-guidance-buf) | |
975 (erase-buffer))) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
976 (setq overriding-terminal-local-map |
19453
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
977 (quail-conversion-keymap)) |
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
978 ;; Run this hook only when the current input method doesn't require |
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
979 ;; conversion. When it requires, the conversoin function should run |
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
980 ;; this hook at a proper timing. |
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
981 (unless (quail-conversion-keymap) |
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
982 (run-hooks 'input-method-after-insert-chunk-hook))) |
17052 | 983 |
984 (defun quail-select-current () | |
985 "Select the current text shown in Quail translation region." | |
986 (interactive) | |
987 (quail-terminate-translation)) | |
988 | |
989 ;; Update the current translation status according to CONTROL-FLAG. | |
990 ;; If CONTROL-FLAG is integer value, it is the number of keys in the | |
991 ;; head quail-current-key which can be translated. The remaining keys | |
992 ;; are put back to unread-command-events to be handled again. | |
993 ;; If CONTROL-FLAG is t, terminate the translation for the whole keys | |
994 ;; in quail-current-key. | |
995 ;; If CONTROL-FLAG is nil, proceed the translation with more keys. | |
996 | |
997 (defun quail-update-translation (control-flag) | |
998 (quail-delete-region) | |
999 (let ((func (quail-update-translation-function))) | |
1000 (if func | |
1001 (funcall func control-flag) | |
1002 (if (numberp control-flag) | |
1003 (let ((len (length quail-current-key))) | |
1004 (while (> len control-flag) | |
1005 (setq len (1- len)) | |
1006 (setq unread-command-events | |
1007 (cons (aref quail-current-key len) | |
1008 unread-command-events))) | |
1009 (insert (or quail-current-str | |
1010 (substring quail-current-key 0 len)))) | |
1011 (insert (or quail-current-str quail-current-key))))) | |
1012 (quail-update-guidance) | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1013 (if control-flag |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1014 (quail-terminate-translation))) |
17052 | 1015 |
1016 (defun quail-self-insert-command () | |
1017 "Add the typed character to the key for translation." | |
1018 (interactive "*") | |
1019 (setq quail-current-key | |
1020 (concat quail-current-key (char-to-string last-command-event))) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1021 (catch 'quail-tag |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1022 (quail-update-translation (quail-translate-key)))) |
17052 | 1023 |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1024 ;; Return the actual definition part of Quail map MAP. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1025 (defun quail-map-definition (map) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1026 (let ((def (car map))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1027 (if (and (consp def) (not (vectorp (cdr def)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1028 (setq def (car def))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1029 def)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1030 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1031 ;; Return a string to be shown as the current translation of key |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1032 ;; sequence of length LEN. DEF is a definition part of Quail map for |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1033 ;; the sequence. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1034 (defun quail-get-current-str (len def) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1035 (or (and (consp def) (aref (cdr def) (car (car def)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1036 def |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1037 (and (> len 1) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1038 (let ((str (quail-get-current-str |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1039 (1- len) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1040 (quail-map-definition (quail-lookup-key |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1041 quail-current-key (1- len)))))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1042 (if str |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1043 (concat (if (stringp str) str (char-to-string str)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1044 (substring quail-current-key (1- len) len))))))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1045 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1046 (defvar quail-guidance-translations-starting-column 20) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1047 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1048 ;; Update `quail-current-translations' to make RELATIVE-INDEX the |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1049 ;; current translation. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1050 (defun quail-update-current-translations (&optional relative-index) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1051 (let* ((indices (car quail-current-translations)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1052 (cur (car indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1053 (start (nth 1 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1054 (end (nth 2 indices))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1055 ;; Validate the index number of current translation. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1056 (if (< cur 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1057 (setcar indices (setq cur 0)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1058 (if (>= cur (length (cdr quail-current-translations))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1059 (setcar indices |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1060 (setq cur (1- (length (cdr quail-current-translations))))))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1061 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1062 (if (or (null end) ; We have not yet calculated END. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1063 (< cur start) ; We moved to the previous block. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1064 (>= cur end)) ; We moved to the next block. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1065 (let ((len (length (cdr quail-current-translations))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1066 (maxcol (- (window-width quail-guidance-win) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1067 quail-guidance-translations-starting-column)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1068 (block (nth 3 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1069 col idx width trans num-items blocks) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1070 (if (< cur start) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1071 ;; We must calculate from the head. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1072 (setq start 0 block 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1073 (if end ; i.e. (>= cur end) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1074 (setq start end))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1075 (setq idx start col 0 end start num-items 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1076 ;; Loop until we hit the tail, or reach the block of CUR. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1077 (while (and (< idx len) (>= cur end)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1078 (if (= num-items 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1079 (setq start idx col 0 block (1+ block))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1080 (setq trans (aref (cdr quail-current-translations) idx)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1081 (setq width (if (integerp trans) (char-width trans) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1082 (string-width trans))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1083 (setq col (+ col width 3) num-items (1+ num-items)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1084 (if (and (> num-items 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1085 (or (>= col maxcol) (> num-items 10))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1086 (setq end idx num-items 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1087 (setq idx (1+ idx)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1088 (setcar (nthcdr 3 indices) block) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1089 (if (>= idx len) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1090 (progn |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1091 ;; We hit the tail before reaching MAXCOL. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1092 (setq end idx) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1093 (setcar (nthcdr 4 indices) block))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1094 (setcar (cdr indices) start) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1095 (setcar (nthcdr 2 indices) end))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1096 (if relative-index |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1097 (if (>= (+ start relative-index) end) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1098 (setcar indices end) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1099 (setcar indices (+ start relative-index)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1100 (setq quail-current-str |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1101 (aref (cdr quail-current-translations) (car indices))))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1102 |
17052 | 1103 (defun quail-translate-key () |
1104 "Translate the current key sequence according to the current Quail map. | |
1105 Return t if we can terminate the translation. | |
1106 Return nil if the current key sequence may be followed by more keys. | |
1107 Return number if we can't find any translation for the current key | |
1108 sequence. The number is the count of valid keys in the current | |
1109 sequence counting from the head." | |
1110 (let* ((len (length quail-current-key)) | |
1111 (map (quail-lookup-key quail-current-key len)) | |
1112 def ch) | |
1113 (if map | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1114 (let ((def (quail-map-definition map))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1115 (setq quail-current-str (quail-get-current-str len def)) |
17052 | 1116 ;; Return t only if we can terminate the current translation. |
1117 (and | |
1118 ;; No alternative translations. | |
1119 (or (null (consp def)) (= (length (cdr def)) 1)) | |
1120 ;; No translation for the longer key. | |
1121 (null (cdr map)) | |
1122 ;; No shorter breaking point. | |
1123 (or (null (quail-maximum-shortest)) | |
1124 (< len 3) | |
1125 (null (quail-lookup-key quail-current-key (1- len))) | |
1126 (null (quail-lookup-key | |
1127 (substring quail-current-key -2 -1) 1))))) | |
1128 | |
1129 ;; There's no translation for the current key sequence. Before | |
1130 ;; giving up, we must check two possibilities. | |
1131 (cond ((and | |
1132 (quail-maximum-shortest) | |
1133 (>= len 4) | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1134 (setq def (quail-map-definition |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1135 (quail-lookup-key quail-current-key (- len 2)))) |
17052 | 1136 (quail-lookup-key (substring quail-current-key -2) 2)) |
1137 ;; Now the sequence is "...ABCD", which can be split into | |
1138 ;; "...AB" and "CD..." to get valid translation. | |
1139 ;; At first, get translation of "...AB". | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1140 (setq quail-current-str (quail-get-current-str (- len 2) def)) |
17052 | 1141 ;; Then, return the length of "...AB". |
1142 (- len 2)) | |
1143 | |
18797
e9aa787f0154
(quail-translate-key): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
18642
diff
changeset
|
1144 ((and (> len 0) |
e9aa787f0154
(quail-translate-key): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
18642
diff
changeset
|
1145 (quail-lookup-key (substring quail-current-key 0 -1)) |
e9aa787f0154
(quail-translate-key): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
18642
diff
changeset
|
1146 quail-current-translations |
17052 | 1147 (not (quail-deterministic)) |
1148 (setq ch (aref quail-current-key (1- len))) | |
1149 (>= ch ?0) (<= ch ?9)) | |
1150 ;; A numeric key is entered to select a desirable translation. | |
1151 (setq quail-current-key (substring quail-current-key 0 -1)) | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1152 ;; We treat key 1,2..,9,0 as specifying 0,1,..8,9. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1153 (setq ch (if (= ch ?0) 9 (- ch ?1))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1154 (quail-update-current-translations ch) |
17052 | 1155 ;; And, we can terminate the current translation. |
1156 t) | |
1157 | |
1158 (t | |
1159 ;; No way to handle the last character in this context. | |
1160 (1- len)))))) | |
1161 | |
1162 (defun quail-next-translation () | |
1163 "Select next translation in the current batch of candidates." | |
1164 (interactive) | |
1165 (if quail-current-translations | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1166 (let ((indices (car quail-current-translations))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1167 (if (= (1+ (car indices)) (length (cdr quail-current-translations))) |
19084
9f4b95f30c4f
(quail-next-translation): Call
Kenichi Handa <handa@m17n.org>
parents:
18983
diff
changeset
|
1168 ;; We are already at the tail. |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1169 (beep) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1170 (setcar indices (1+ (car indices))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1171 (quail-update-current-translations) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1172 (quail-update-translation nil))) |
19084
9f4b95f30c4f
(quail-next-translation): Call
Kenichi Handa <handa@m17n.org>
parents:
18983
diff
changeset
|
1173 (quail-execute-non-quail-command))) |
17052 | 1174 |
1175 (defun quail-prev-translation () | |
1176 "Select previous translation in the current batch of candidates." | |
1177 (interactive) | |
1178 (if quail-current-translations | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1179 (let ((indices (car quail-current-translations))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1180 (if (= (car indices) 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1181 ;; We are already at the head. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1182 (beep) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1183 (setcar indices (1- (car indices))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1184 (quail-update-current-translations) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1185 (quail-update-translation nil))) |
19084
9f4b95f30c4f
(quail-next-translation): Call
Kenichi Handa <handa@m17n.org>
parents:
18983
diff
changeset
|
1186 (quail-execute-non-quail-command))) |
17052 | 1187 |
1188 (defun quail-next-translation-block () | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1189 "Select from the next block of translations." |
17052 | 1190 (interactive) |
1191 (if quail-current-translations | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1192 (let* ((indices (car quail-current-translations)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1193 (offset (- (car indices) (nth 1 indices)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1194 (if (>= (nth 2 indices) (length (cdr quail-current-translations))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1195 ;; We are already at the last block. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1196 (beep) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1197 (setcar indices (+ (nth 2 indices) offset)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1198 (quail-update-current-translations) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1199 (quail-update-translation nil))) |
19084
9f4b95f30c4f
(quail-next-translation): Call
Kenichi Handa <handa@m17n.org>
parents:
18983
diff
changeset
|
1200 (quail-execute-non-quail-command))) |
17052 | 1201 |
1202 (defun quail-prev-translation-block () | |
1203 "Select the previous batch of 10 translation candidates." | |
1204 (interactive) | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1205 (if quail-current-translations |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1206 (let* ((indices (car quail-current-translations)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1207 (offset (- (car indices) (nth 1 indices)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1208 (if (= (nth 1 indices) 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1209 ;; We are already at the first block. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1210 (beep) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1211 (setcar indices (1- (nth 1 indices))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1212 (quail-update-current-translations) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1213 (if (< (+ (nth 1 indices) offset) (nth 2 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1214 (progn |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1215 (setcar indices (+ (nth 1 indices) offset)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1216 (quail-update-current-translations))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1217 (quail-update-translation nil))) |
19084
9f4b95f30c4f
(quail-next-translation): Call
Kenichi Handa <handa@m17n.org>
parents:
18983
diff
changeset
|
1218 (quail-execute-non-quail-command))) |
17052 | 1219 |
1220 (defun quail-abort-translation () | |
1221 "Abort translation and delete the current Quail key sequence." | |
1222 (interactive) | |
1223 (quail-delete-region) | |
1224 (quail-terminate-translation)) | |
1225 | |
1226 (defun quail-delete-last-char () | |
1227 "Delete the last input character from the current Quail key sequence." | |
1228 (interactive) | |
1229 (if (= (length quail-current-key) 1) | |
1230 (quail-abort-translation) | |
1231 (setq quail-current-key (substring quail-current-key 0 -1)) | |
1232 (quail-update-translation (quail-translate-key)))) | |
1233 | |
1234 ;; For conversion mode. | |
1235 | |
1236 (defun quail-conversion-backward-char () | |
1237 (interactive) | |
1238 (if (<= (point) (overlay-start quail-conv-overlay)) | |
1239 (error "Beginning of conversion region")) | |
1240 (forward-char -1)) | |
1241 | |
1242 (defun quail-conversion-forward-char () | |
1243 (interactive) | |
1244 (if (>= (point) (overlay-end quail-conv-overlay)) | |
1245 (error "End of conversion region")) | |
1246 (forward-char 1)) | |
1247 | |
1248 (defun quail-conversion-beginning-of-region () | |
1249 (interactive) | |
1250 (goto-char (overlay-start quail-conv-overlay))) | |
1251 | |
1252 (defun quail-conversion-end-of-region () | |
1253 (interactive) | |
1254 (goto-char (overlay-end quail-conv-overlay))) | |
1255 | |
1256 (defun quail-conversion-delete-char () | |
1257 (interactive) | |
1258 (if (>= (point) (overlay-end quail-conv-overlay)) | |
1259 (error "End of conversion region")) | |
1260 (delete-char 1) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1261 (when (= (overlay-start quail-conv-overlay) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1262 (overlay-end quail-conv-overlay)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1263 (quail-delete-overlays) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1264 (setq overriding-terminal-local-map nil))) |
17052 | 1265 |
1266 (defun quail-conversion-backward-delete-char () | |
1267 (interactive) | |
1268 (if (<= (point) (overlay-start quail-conv-overlay)) | |
1269 (error "Beginning of conversion region")) | |
1270 (delete-char -1) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1271 (when (= (overlay-start quail-conv-overlay) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1272 (overlay-end quail-conv-overlay)) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1273 (quail-delete-overlays) |
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1274 (setq overriding-terminal-local-map nil))) |
17052 | 1275 |
1276 (defun quail-do-conversion (func &rest args) | |
1277 "Call FUNC to convert text in the current conversion region of Quail. | |
1278 Remaining args are for FUNC." | |
1279 (delete-overlay quail-overlay) | |
1280 (apply func args)) | |
1281 | |
1282 (defun quail-no-conversion () | |
1283 "Do no conversion of the current conversion region of Quail." | |
1284 (interactive) | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1285 (quail-delete-overlays) |
19453
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
1286 (setq overriding-terminal-local-map nil) |
e6134c179b4c
(quail-terminate-translation): Run
Kenichi Handa <handa@m17n.org>
parents:
19432
diff
changeset
|
1287 (run-hooks 'input-method-after-insert-chunk-hook)) |
17052 | 1288 |
1289 ;; Guidance, Completion, and Help buffer handlers. | |
1290 | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1291 ;; Make a new one-line frame for Quail guidance buffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1292 (defun quail-make-guidance-frame (buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1293 (let* ((fparam (frame-parameters)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1294 (top (cdr (assq 'top fparam))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1295 (border (cdr (assq 'border-width fparam))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1296 (internal-border (cdr (assq 'internal-border-width fparam))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1297 (newtop (- top |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1298 (frame-char-height) (* internal-border 2) (* border 2)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1299 (if (< newtop 0) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1300 (setq newtop (+ top (frame-pixel-height)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1301 (let* ((frame (make-frame (append '((user-position . t) (height . 1) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1302 (minibuffer) (menu-bar-lines . 0)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1303 (cons (cons 'top newtop) fparam)))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1304 (win (frame-first-window frame))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1305 (set-window-buffer win buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1306 (set-window-dedicated-p win t)))) |
17052 | 1307 |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1308 ;; Setup Quail completion buffer. |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1309 (defun quail-setup-completion-buf () |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1310 (unless (buffer-live-p quail-completion-buf) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1311 (setq quail-completion-buf (get-buffer-create "*Quail Completions*")) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1312 (save-excursion |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1313 (set-buffer quail-completion-buf) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1314 (setq quail-overlay (make-overlay 1 1)) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1315 (overlay-put quail-overlay 'face 'highlight)))) |
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1316 |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1317 (defun quail-show-guidance-buf () |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1318 "Display a guidance buffer for Quail input method in some window. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1319 Create the buffer if it does not exist yet. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1320 The buffer is normally displayed at the echo area, |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1321 but if the current buffer is a minibuffer, it is shown in |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1322 the bottom-most ordinary window of the same frame, |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1323 or in a newly created frame (if the selected frame has no other windows)." |
19391
763bc03e7797
(quail-guidance-buf): Now a permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
19327
diff
changeset
|
1324 (if (and (not input-method-verbose-flag) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1325 (eq (selected-window) (minibuffer-window))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1326 ;; We don't need the guidance buffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1327 nil |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1328 ;; At first, setup a guidance buffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1329 (or (buffer-live-p quail-guidance-buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1330 (setq quail-guidance-buf (generate-new-buffer " *Quail-guidance*"))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1331 (let ((title (quail-title))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1332 (save-excursion |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1333 (set-buffer quail-guidance-buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1334 ;; To show the title of Quail package. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1335 (setq current-input-method t |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1336 current-input-method-title title) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1337 (erase-buffer) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1338 (or (overlayp quail-overlay) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1339 (progn |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1340 (setq quail-overlay (make-overlay 1 1)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1341 (overlay-put quail-overlay 'face 'highlight))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1342 (delete-overlay quail-overlay) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1343 (set-buffer-modified-p nil))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1344 (bury-buffer quail-guidance-buf) |
17052 | 1345 |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1346 ;; Then, display it in an appropriate window. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1347 (let ((win (minibuffer-window))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1348 (if (eq (selected-window) win) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1349 ;; Since we are in minibuffer, we can't use it for guidance. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1350 (if (eq win (frame-root-window)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1351 ;; Create a frame. It is sure that we are using some |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1352 ;; window system. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1353 (quail-make-guidance-frame quail-guidance-buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1354 ;; Find the bottom window and split it if necessary. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1355 (let (height) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1356 (setq win (window-at 0 (- (frame-height) 2))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1357 (setq height (window-height win)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1358 ;; If WIN is tall enough, split it vertically and use |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1359 ;; the lower one. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1360 (if (>= height 4) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1361 (let ((window-min-height 2)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1362 ;; Here, `split-window' returns a lower window |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1363 ;; which is what we wanted. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1364 (setq win (split-window win (- height 2))))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1365 (set-window-buffer win quail-guidance-buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1366 (set-window-dedicated-p win t))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1367 (set-window-buffer win quail-guidance-buf)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1368 (setq quail-guidance-win win))) |
17052 | 1369 |
1370 ;; And, create a buffer for completion. | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1371 (quail-setup-completion-buf) |
17052 | 1372 (bury-buffer quail-completion-buf)) |
1373 | |
1374 (defun quail-hide-guidance-buf () | |
1375 "Hide the Quail guidance buffer." | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1376 (if (buffer-live-p quail-guidance-buf) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1377 (let ((win-list (get-buffer-window-list quail-guidance-buf t t)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1378 win) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1379 (while win-list |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1380 (setq win (car win-list) win-list (cdr win-list)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1381 (if (eq win (minibuffer-window)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1382 ;; We are using echo area for the guidance buffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1383 ;; Vacate it to the deepest minibuffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1384 (set-window-buffer win |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1385 (format " *Minibuf-%d*" (minibuffer-depth))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1386 (if (eq win (frame-root-window (window-frame win))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1387 (progn |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1388 ;; We are using a separate frame for guidance buffer. |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1389 ;;(set-window-dedicated-p win nil) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1390 (delete-frame (window-frame win))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1391 (set-window-dedicated-p win nil) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1392 (delete-window win))))))) |
17052 | 1393 |
1394 (defun quail-update-guidance () | |
1395 "Update the Quail guidance buffer and completion buffer (if displayed now)." | |
1396 ;; Update guidance buffer. | |
19391
763bc03e7797
(quail-guidance-buf): Now a permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
19327
diff
changeset
|
1397 (if (or input-method-verbose-flag |
17052 | 1398 (not (eq (selected-window) (minibuffer-window)))) |
1399 (let ((guidance (quail-guidance))) | |
1400 (cond ((eq guidance t) | |
1401 ;; Show the current possible translations. | |
1402 (quail-show-translations)) | |
1403 ((null guidance) | |
1404 ;; Show the current input keys. | |
1405 (let ((key quail-current-key)) | |
1406 (save-excursion | |
1407 (set-buffer quail-guidance-buf) | |
1408 (erase-buffer) | |
1409 (insert key)))) | |
1410 ((listp guidance) | |
1411 ;; Show alternative characters specified in this alist. | |
1412 (let* ((key quail-current-key) | |
1413 (len (length key)) | |
1414 (i 0) | |
1415 ch alternative) | |
1416 (save-excursion | |
1417 (set-buffer quail-guidance-buf) | |
1418 (erase-buffer) | |
1419 (while (< i len) | |
1420 (setq ch (aref key i)) | |
1421 (setq alternative (cdr (assoc ch guidance))) | |
1422 (insert (or alternative ch)) | |
1423 (setq i (1+ i))))))))) | |
1424 | |
1425 ;; Update completion buffer if displayed now. We highlight the | |
1426 ;; selected candidate string in *Completion* buffer if any. | |
1427 (let ((win (get-buffer-window quail-completion-buf)) | |
1428 key str pos) | |
1429 (if win | |
1430 (save-excursion | |
1431 (setq str (if (stringp quail-current-str) | |
1432 quail-current-str | |
1433 (if (numberp quail-current-str) | |
1434 (char-to-string quail-current-str))) | |
1435 key quail-current-key) | |
1436 (set-buffer quail-completion-buf) | |
1437 (goto-char (point-min)) | |
1438 (if (null (search-forward (concat " " key ":") nil t)) | |
1439 (delete-overlay quail-overlay) | |
1440 (setq pos (point)) | |
1441 (if (and str (search-forward (concat "." str) nil t)) | |
1442 (move-overlay quail-overlay (1+ (match-beginning 0)) (point)) | |
1443 (move-overlay quail-overlay (match-beginning 0) (point))) | |
1444 ;; Now POS points end of KEY and (point) points end of STR. | |
1445 (if (pos-visible-in-window-p (point) win) | |
1446 ;; STR is already visible. | |
1447 nil | |
1448 ;; We want to make both KEY and STR visible, but if the | |
1449 ;; window is too short, make at least STR visible. | |
1450 (setq pos (progn (point) (goto-char pos))) | |
1451 (beginning-of-line) | |
1452 (set-window-start win (point)) | |
1453 (if (not (pos-visible-in-window-p pos win)) | |
1454 (set-window-start win pos)) | |
1455 )))))) | |
1456 | |
1457 (defun quail-show-translations () | |
1458 "Show the current possible translations." | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1459 (let* ((key quail-current-key) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1460 (map (quail-lookup-key quail-current-key))) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1461 (if quail-current-translations |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1462 (quail-update-current-translations)) |
17052 | 1463 (save-excursion |
1464 (set-buffer quail-guidance-buf) | |
1465 (erase-buffer) | |
1466 | |
1467 ;; Show the current key. | |
1468 (insert key) | |
1469 | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1470 ;; Show followable keys. |
17052 | 1471 (if (cdr map) |
1472 (let ((l (cdr map))) | |
1473 (insert "[") | |
1474 (while l | |
1475 (insert (car (car l))) | |
1476 (setq l (cdr l))) | |
1477 (insert "]"))) | |
1478 | |
1479 ;; Show list of translations. | |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1480 (if quail-current-translations |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1481 (let* ((indices (car quail-current-translations)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1482 (cur (car indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1483 (start (nth 1 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1484 (end (nth 2 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1485 (idx start)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1486 (indent-to (- quail-guidance-translations-starting-column 7)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1487 (insert (format "(%02d/"(nth 3 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1488 (if (nth 4 indices) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1489 (format "%02d)" (nth 4 indices)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1490 "??)")) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1491 (while (< idx end) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1492 (insert (format " %d." (if (= (- idx start) 9) 0 |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1493 (1+ (- idx start))))) |
17052 | 1494 (let ((pos (point))) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1495 (insert (aref (cdr quail-current-translations) idx)) |
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1496 (if (= idx cur) |
17052 | 1497 (move-overlay quail-overlay pos (point)))) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1498 (setq idx (1+ idx))))) |
17052 | 1499 ))) |
1500 | |
1501 (defun quail-completion () | |
1502 "List all completions for the current key. | |
1503 All possible translations of the current key and whole possible longer keys | |
1504 are shown." | |
1505 (interactive) | |
19432
4492653b04e8
(quail-exit-from-minibuffer): Call
Kenichi Handa <handa@m17n.org>
parents:
19404
diff
changeset
|
1506 (quail-setup-completion-buf) |
17052 | 1507 (let ((key quail-current-key) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1508 (map (quail-lookup-key quail-current-key))) |
17052 | 1509 (save-excursion |
1510 (set-buffer quail-completion-buf) | |
1511 (erase-buffer) | |
1512 (insert "Possible completion and corresponding translations are:\n") | |
1513 (quail-completion-1 key map 1) | |
1514 (goto-char (point-min)) | |
1515 (display-buffer (current-buffer))) | |
1516 (quail-update-guidance))) | |
1517 | |
1518 ;; List all completions of KEY in MAP with indentation INDENT. | |
1519 (defun quail-completion-1 (key map indent) | |
1520 (let ((len (length key))) | |
1521 (indent-to indent) | |
1522 (insert key ":") | |
1523 (if (and (symbolp map) (fboundp map)) | |
1524 (setq map (funcall map key len))) | |
1525 (if (car map) | |
1526 (quail-completion-list-translations map key (+ indent len 1)) | |
1527 (insert " -\n")) | |
1528 (setq indent (+ indent 2)) | |
1529 (if (cdr map) | |
1530 (let ((l (cdr map)) | |
1531 (newkey (make-string (1+ len) 0)) | |
1532 (i 0)) | |
1533 ;; Set KEY in the first LEN characters of NEWKEY. | |
1534 (while (< i len) | |
1535 (aset newkey i (aref key i)) | |
1536 (setq i (1+ i))) | |
1537 (while l ; L = ((CHAR . DEFN) ....) ; | |
1538 (aset newkey len (car (car l))) | |
1539 (quail-completion-1 newkey (cdr (car l)) indent) | |
1540 (setq l (cdr l))))))) | |
1541 | |
1542 ;; List all possible translations of KEY in Quail map MAP with | |
17764
561a8476368f
(use-quail-package): Error message added.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
1543 ;; indentation INDENT. |
17052 | 1544 (defun quail-completion-list-translations (map key indent) |
1545 (let ((translations | |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1546 (quail-get-translation (car map) key (length key)))) |
17052 | 1547 (if (integerp translations) |
1548 (insert "(1/1) 1." translations "\n") | |
1549 ;; We need only vector part. | |
1550 (setq translations (cdr translations)) | |
1551 ;; Insert every 10 elements with indices in a line. | |
1552 (let ((len (length translations)) | |
1553 (i 0) | |
1554 (first t) | |
1555 num) | |
1556 (while (< i len) | |
1557 (if first | |
1558 (progn | |
1559 (insert "(1/1)") | |
1560 (setq first nil)) | |
1561 (if (= (% i 10) 0) | |
1562 (progn | |
1563 (newline) | |
1564 (indent-to indent) | |
1565 (insert (format "(%d/%d)" (1+ (/ i 10)) (1+ (/ len 10))))))) | |
1566 ;; We show the last digit of FROM while converting | |
1567 ;; 0,1,..,9 to 1,2,..,0. | |
1568 (insert (format " %d." (if (= (% i 10) 9) 0 (1+ (% i 10))))) | |
1569 (insert (aref translations i)) | |
1570 (setq i (1+ i))) | |
1571 (newline))))) | |
1572 | |
1573 (defun quail-help () | |
1574 "Show brief description of the current Quail package." | |
1575 (interactive) | |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1576 (let ((package quail-current-package)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1577 (with-output-to-temp-buffer "*Quail-Help*" |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1578 (save-excursion |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1579 (set-buffer standard-output) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1580 (let ((quail-current-package package)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1581 (insert "Quail input method (name:" |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1582 (quail-name) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1583 ", mode line indicator:[" |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1584 (quail-title) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1585 "])\n---- Documentation ----\n" |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1586 (quail-docstring)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1587 (newline) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1588 (if (quail-show-layout) (quail-show-kbd-layout)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1589 (quail-help-insert-keymap-description |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1590 quail-mode-map |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1591 "---- Key bindings (before starting translation) ---- |
17052 | 1592 key binding |
1593 --- -------\n") | |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1594 (quail-help-insert-keymap-description |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1595 (quail-translation-keymap) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1596 "--- Key bindings (while translating) --- |
17052 | 1597 key binding |
1598 --- -------\n") | |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1599 (if (quail-conversion-keymap) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1600 (quail-help-insert-keymap-description |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1601 (quail-conversion-keymap) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1602 "--- Key bindings (while converting) --- |
17052 | 1603 key binding |
1604 --- -------\n")) | |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1605 (help-mode)))))) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1606 |
17052 | 1607 (defun quail-help-insert-keymap-description (keymap &optional header) |
1608 (let (from to) | |
1609 (if header | |
1610 (insert header)) | |
1611 (save-excursion | |
1612 (save-window-excursion | |
19404
8901359ae445
(quail-inactivate): Turn Quail mode off
Kenichi Handa <handa@m17n.org>
parents:
19391
diff
changeset
|
1613 (let ((overriding-terminal-local-map keymap)) |
17052 | 1614 (describe-bindings)) |
1615 (set-buffer "*Help*") | |
1616 (goto-char (point-min)) | |
1617 (forward-line 4) | |
1618 (setq from (point)) | |
1619 (search-forward "Global Bindings:" nil 'move) | |
1620 (beginning-of-line) | |
1621 (setq to (point)))) | |
1622 (insert-buffer-substring "*Help*" from to))) | |
1623 | |
1624 (defun quail-show-kbd-layout () | |
1625 "Show keyboard layout with key tops of multilingual characters." | |
1626 (insert "--- Keyboard layout ---\n") | |
1627 (let* ((i 0) ch) | |
1628 (while (< i quail-keyboard-layout-len) | |
1629 (if (= (% i 30) 0) | |
1630 (progn | |
1631 (newline) | |
1632 (indent-to (/ i 30))) | |
1633 (if (= (% i 2) 0) | |
1634 (insert " "))) | |
1635 (setq ch (aref quail-keyboard-layout i)) | |
1636 (if (= ch ?\ ) | |
1637 (insert ch) | |
17095
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1638 (let* ((map (cdr (assq ch (cdr (quail-map))))) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1639 (translation (and map (quail-get-translation |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1640 (car map) (char-to-string ch) 1)))) |
17095
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1641 (if (integerp translation) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1642 (insert translation) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1643 (if (consp translation) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1644 (insert (aref (cdr translation) (car translation))) |
b57415dcc114
Add quail-mode to default value of
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1645 (insert ch))))) |
17052 | 1646 (setq i (1+ i)))) |
1647 (newline)) | |
1648 | |
1649 (defun quail-translation-help () | |
1650 "Show help message while translating in Quail mode." | |
1651 (interactive) | |
1652 (let ((package quail-current-package) | |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1653 (current-key quail-current-key)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1654 (with-output-to-temp-buffer "*Quail-Help*" |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1655 (save-excursion |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1656 (set-buffer standard-output) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1657 (let ((quail-current-package package)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1658 (princ "You are translating the key sequence ") |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1659 (prin1 quail-current-key) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1660 (princ" in Quail mode.\n") |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1661 (quail-help-insert-keymap-description |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1662 (quail-translation-keymap) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1663 "----------------------- |
17052 | 1664 key binding |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1665 --- -------\n")) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1666 (help-mode))))) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1667 |
17052 | 1668 (defun quail-conversion-help () |
1669 "Show help message while converting in Quail mode." | |
1670 (interactive) | |
1671 (let ((package quail-current-package) | |
1672 (str (buffer-substring (overlay-start quail-conv-overlay) | |
18642
0fc832264117
(quail-conversion-help): Source code indentation changed.
Kenichi Handa <handa@m17n.org>
parents:
18556
diff
changeset
|
1673 (overlay-end quail-conv-overlay)))) |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1674 (with-output-to-temp-buffer "*Quail-Help*" |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1675 (save-excursion |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1676 (set-buffer standard-output) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1677 (let ((quail-current-package package)) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1678 (princ "You are converting the string ") |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1679 (prin1 str) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1680 (princ " in Quail mode.\n") |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1681 (quail-help-insert-keymap-description |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1682 (quail-conversion-keymap) |
18642
0fc832264117
(quail-conversion-help): Source code indentation changed.
Kenichi Handa <handa@m17n.org>
parents:
18556
diff
changeset
|
1683 "----------------------- |
17052 | 1684 key binding |
18349
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1685 --- -------\n")) |
f468344dd2bd
(quail-help): Use with-output-to-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
18297
diff
changeset
|
1686 (help-mode))))) |
17052 | 1687 |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1688 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1689 (defvar quail-directory-name "quail" |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1690 "Name of Quail directory which cotains Quail packages. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1691 This is a sub-directory of LEIM directory.") |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1692 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1693 ;;;###autoload |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1694 (defun quail-update-leim-list-file (dirname) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1695 "Update entries for Quail packages in LEIM list file of directory DIRNAME. |
19200
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1696 LEIM is a directory containing Emacs input methods; |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1697 normally, it should specify the `leim' subdirectory |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1698 of the Emacs source tree." |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1699 (interactive "FDirectory of LEIM: ") |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1700 (setq dirname (file-name-as-directory (expand-file-name dirname))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1701 (let ((quail-dir (concat dirname quail-directory-name)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1702 (filename (concat dirname leim-list-file-name)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1703 list-buf pkg-list pkg-buf pos) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1704 (if (not (file-exists-p quail-dir)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1705 nil |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1706 (if (not (file-readable-p quail-dir)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1707 (message "Can't write to file \"%s\"" filename) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1708 (if (not (file-writable-p filename)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1709 (message "Can't write to file \"%s\"" filename) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1710 (setq list-buf (find-file-noselect filename)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1711 (setq pkg-list (directory-files quail-dir 'full ".*\\.el$" 'nosort)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1712 (message "Updating %s ..." filename) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1713 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1714 ;; At first, clean up the file. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1715 (save-excursion |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1716 (set-buffer list-buf) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1717 (goto-char 1) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1718 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1719 ;; Insert the correct header. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1720 (if (looking-at (regexp-quote leim-list-header)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1721 (goto-char (match-end 0)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1722 (insert leim-list-header)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1723 (setq pos (point)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1724 (if (not (re-search-forward leim-list-entry-regexp nil t)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1725 nil |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1726 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1727 ;; Remove garbages after the header. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1728 (goto-char (match-beginning 0)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1729 (if (< pos (point)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1730 (delete-region pos (point))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1731 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1732 ;; Remove all entries for Quail. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1733 (while (re-search-forward leim-list-entry-regexp nil 'move) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1734 (goto-char (match-beginning 0)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1735 (setq pos (point)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1736 (let ((form (read list-buf))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1737 (if (equal (nth 3 form) ''quail-use-package) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1738 (progn |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1739 (if (eolp) (forward-line 1)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1740 (delete-region pos (point)))))))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1741 |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1742 ;; Insert entries for Quail. |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1743 (while pkg-list |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1744 (message "Checking %s ..." (car pkg-list)) |
19200
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1745 (with-temp-buffer |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1746 (insert-file-contents (car pkg-list)) |
19144
842869692447
(quail-update-leim-list-file): Go to the
Richard M. Stallman <rms@gnu.org>
parents:
19084
diff
changeset
|
1747 (goto-char (point-min)) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1748 (while (search-forward "(quail-define-package" nil t) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1749 (goto-char (match-beginning 0)) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1750 (let ((form (read (current-buffer)))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1751 (save-excursion |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1752 (set-buffer list-buf) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1753 (insert (format "(register-input-method |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1754 %S %S '%s |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1755 %S %S |
19200
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1756 %S)\n" |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1757 (nth 1 form) ; PACKAGE-NAME |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1758 (nth 2 form) ; LANGUAGE |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1759 'quail-use-package ; ACTIVATE-FUNC |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1760 (nth 3 form) ; PACKAGE-TITLE |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1761 (progn ; PACKAGE-DESCRIPTION (one line) |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1762 (string-match ".*" (nth 5 form)) |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1763 (match-string 0 (nth 5 form))) |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1764 (file-relative-name ; PACKAGE-FILENAME |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1765 (file-name-sans-extension (car pkg-list)) |
74ec766c0ada
(quail-update-leim-list-file):
Richard M. Stallman <rms@gnu.org>
parents:
19144
diff
changeset
|
1766 dirname))))))) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1767 (setq pkg-list (cdr pkg-list))) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1768 (save-excursion |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1769 (set-buffer list-buf) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1770 (setq buffer-file-coding-system 'iso-2022-7bit) |
18556
99e8ae18137f
(quail-guidance-buf): Make it buffer
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1771 (save-buffer 0)) |
18297
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1772 (kill-buffer list-buf) |
5c8e37591da5
(quail-current-data): New variable.
Kenichi Handa <handa@m17n.org>
parents:
18201
diff
changeset
|
1773 (message "Updating %s ... done" (buffer-file-name list-buf))))))) |
17052 | 1774 ;; |
1775 (provide 'quail) | |
1776 | |
1777 ;;; quail.el ends here |