Mercurial > emacs
annotate lisp/international/kkc.el @ 68648:067115a6e738
Update years in copyright notice; nfc.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Mon, 06 Feb 2006 12:31:40 +0000 |
parents | 18a818a2ee7c |
children | 150187028263 f9a65d7ebd29 |
rev | line source |
---|---|
36683
b82a6fbaae16
Add coding: iso-2022-7bit tag.
Kenichi Handa <handa@m17n.org>
parents:
31218
diff
changeset
|
1 ;;; kkc.el --- Kana Kanji converter -*- coding: iso-2022-7bit; -*- |
17052 | 2 |
62274 | 3 ;; Copyright (C) 1997, 1998 Free Software Foundation, Inc. |
4 ;; Copyright (C) 1995, 1997, 1998, 2000, 2001, 2003 | |
5 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
6 ;; Registration Number H14PRO021 | |
17052 | 7 |
31165
6c51a4e8bf88
Remove SKK from Keywords. Require ja-dic-utl instead of skkdic-utl.
Kenichi Handa <handa@m17n.org>
parents:
30256
diff
changeset
|
8 ;; Keywords: mule, multilingual, Japanese |
17052 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
17071 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
17052 | 26 |
27 ;;; Commentary: | |
28 | |
29 ;; These routines provide a simple and easy-to-use converter from | |
30 ;; Kana-string to Kana-Kanji-mixed-string. This converter (here after | |
31 ;; KKC) uses a SKK dictionary to get information how to convert | |
32 ;; Kana-string. Since KKC can't be fully automated, we need an | |
33 ;; interaction with a user to decide the correct conversion. For | |
34 ;; that, we provide KKC major mode. | |
35 | |
36 ;;; Code: | |
37 | |
31165
6c51a4e8bf88
Remove SKK from Keywords. Require ja-dic-utl instead of skkdic-utl.
Kenichi Handa <handa@m17n.org>
parents:
30256
diff
changeset
|
38 (require 'ja-dic-utl) |
17052 | 39 |
40 (defvar kkc-input-method-title "漢" | |
41 "String denoting KKC input method. | |
42 This string is shown at mode line when users are in KKC mode.") | |
43 | |
44 (defvar kkc-init-file-name "~/.kkcrc" | |
45 "Name of a file which contains user's initial setup code for KKC.") | |
46 | |
47 ;; A flag to control a file specified by `kkc-init-file-name'. | |
48 ;; The value nil means the file is not yet consulted. | |
49 ;; The value t means the file has already been consulted but there's | |
50 ;; no need of updating it yet. | |
51 ;; Any other value means that we must update the file before exiting Emacs. | |
52 (defvar kkc-init-file-flag nil) | |
53 | |
54 ;; Cash data for `kkc-lookup-key'. This may be initialized by loading | |
55 ;; a file specified by `kkc-init-file-name'. If any elements are | |
56 ;; modified, the data is written out to the file when exiting Emacs. | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
57 (defvar kkc-lookup-cache nil) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
58 |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
59 ;; Tag symbol of `kkc-lookup-cache'. |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
60 (defconst kkc-lookup-cache-tag 'kkc-lookup-cache-2) |
17052 | 61 |
62 (defun kkc-save-init-file () | |
63 "Save initial setup code for KKC to a file specified by `kkc-init-file-name'" | |
64 (if (and kkc-init-file-flag | |
65 (not (eq kkc-init-file-flag t))) | |
37016
7472ec46ab91
(kkc-save-init-file): Locally bind print-length to nil.
Kenichi Handa <handa@m17n.org>
parents:
36683
diff
changeset
|
66 (let ((coding-system-for-write 'iso-2022-7bit) |
7472ec46ab91
(kkc-save-init-file): Locally bind print-length to nil.
Kenichi Handa <handa@m17n.org>
parents:
36683
diff
changeset
|
67 (print-length nil)) |
17052 | 68 (write-region (format "(setq kkc-lookup-cache '%S)\n" kkc-lookup-cache) |
69 nil | |
70 kkc-init-file-name)))) | |
71 | |
72 ;; Sequence of characters to be used for indexes for shown list. The | |
73 ;; Nth character is for the Nth conversion in the list currently shown. | |
74 (defvar kkc-show-conversion-list-index-chars | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
75 "1234567890") |
17052 | 76 |
23032 | 77 (defun kkc-help () |
78 "Show key bindings available while converting by KKC." | |
79 (interactive) | |
80 (with-output-to-temp-buffer "*Help*" | |
81 (princ (substitute-command-keys "\\{kkc-keymap}")))) | |
82 | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
83 (defvar kkc-keymap |
23032 | 84 (let ((map (make-sparse-keymap)) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
85 (len (length kkc-show-conversion-list-index-chars)) |
17052 | 86 (i 0)) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
87 (while (< i len) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
88 (define-key map |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
89 (char-to-string (aref kkc-show-conversion-list-index-chars i)) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
90 'kkc-select-from-list) |
17052 | 91 (setq i (1+ i))) |
92 (define-key map " " 'kkc-next) | |
93 (define-key map "\r" 'kkc-terminate) | |
94 (define-key map "\C-@" 'kkc-first-char-only) | |
95 (define-key map "\C-n" 'kkc-next) | |
96 (define-key map "\C-p" 'kkc-prev) | |
97 (define-key map "\C-i" 'kkc-shorter) | |
98 (define-key map "\C-o" 'kkc-longer) | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
99 (define-key map "I" 'kkc-shorter-conversion) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
100 (define-key map "O" 'kkc-longer-phrase) |
17052 | 101 (define-key map "\C-c" 'kkc-cancel) |
102 (define-key map "\C-?" 'kkc-cancel) | |
103 (define-key map "\C-f" 'kkc-next-phrase) | |
104 (define-key map "K" 'kkc-katakana) | |
105 (define-key map "H" 'kkc-hiragana) | |
106 (define-key map "l" 'kkc-show-conversion-list-or-next-group) | |
107 (define-key map "L" 'kkc-show-conversion-list-or-prev-group) | |
20638
c3360a392ae4
Change "?\C-\ " to "?\C- " because "\ " is changed
Kenichi Handa <handa@m17n.org>
parents:
19931
diff
changeset
|
108 (define-key map [?\C- ] 'kkc-first-char-only) |
17052 | 109 (define-key map [delete] 'kkc-cancel) |
110 (define-key map [return] 'kkc-terminate) | |
23032 | 111 (define-key map "\C-h" 'kkc-help) |
19869
3c4025f3be8f
(kkc-mode-map): Bind meta-prefix-char to a
Kenichi Handa <handa@m17n.org>
parents:
19406
diff
changeset
|
112 map) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
113 "Keymap for KKC (Kana Kanji Converter).") |
17052 | 114 |
115 ;;; Internal variables used in KKC. | |
116 | |
117 ;; The current Kana string to be converted. | |
118 (defvar kkc-original-kana nil) | |
119 | |
120 ;; The current key sequence (vector of Kana characters) generated from | |
121 ;; `kkc-original-kana'. | |
122 (defvar kkc-current-key nil) | |
123 | |
124 ;; List of the current conversions for `kkc-current-key'. | |
125 (defvar kkc-current-conversions nil) | |
126 | |
127 ;; Vector of the same length as `kkc-current-conversion'. The first | |
128 ;; element is a vector of: | |
129 ;; o index number of the first conversion shown previously, | |
130 ;; o index number of a conversion next of the last one shown previously, | |
131 ;; o the shown string itself. | |
132 ;; The remaining elements are widths (including columns for index | |
133 ;; numbers) of conversions stored in the same order as in | |
134 ;; `kkc-current-conversion'. | |
135 (defvar kkc-current-conversions-width nil) | |
136 | |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
137 (defcustom kkc-show-conversion-list-count 4 |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
138 "*Count of successive `kkc-next' or `kkc-prev' to show conversion list. |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
139 When you type SPC or C-p successively this count while using the input |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
140 method `japanese', the conversion candidates are shown in the echo |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
141 area while indicating the current selection by `<N>'." |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
142 :group 'mule |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
143 :type 'integer) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
144 |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
145 ;; Count of successive invocations of `kkc-next'. |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
146 (defvar kkc-next-count nil) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
147 |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
148 ;; Count of successive invocations of `kkc-prev'. |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
149 (defvar kkc-prev-count nil) |
17052 | 150 |
151 ;; Provided that `kkc-current-key' is [A B C D E F G H I], the current | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
152 ;; conversion target is [A B C D E F], and the sequence of which |
17052 | 153 ;; conversion is found is [A B C D]: |
154 ;; | |
155 ;; A B C D E F G H I | |
156 ;; kkc-overlay-head (black): |<--------->| | |
157 ;; kkc-overlay-tail (underline): |<------->| | |
158 ;; kkc-length-head: |<--------->| | |
159 ;; kkc-length-converted: |<----->| | |
160 ;; | |
161 (defvar kkc-overlay-head nil) | |
162 (defvar kkc-overlay-tail nil) | |
163 (defvar kkc-length-head nil) | |
164 (defvar kkc-length-converted nil) | |
165 | |
166 ;; Cursor type (`box' or `bar') of the current frame. | |
167 (defvar kkc-cursor-type nil) | |
168 | |
31165
6c51a4e8bf88
Remove SKK from Keywords. Require ja-dic-utl instead of skkdic-utl.
Kenichi Handa <handa@m17n.org>
parents:
30256
diff
changeset
|
169 ;; Lookup Japanese dictionary to set list of conversions in |
17052 | 170 ;; kkc-current-conversions for key sequence kkc-current-key of length |
171 ;; LEN. If no conversion is found in the dictionary, don't change | |
172 ;; kkc-current-conversions and return nil. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38414
diff
changeset
|
173 ;; Postfixes are handled only if POSTFIX is non-nil. |
18644
69c91eee7ba1
(kkc-region): Call skkdic-lookup-key with
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
174 (defun kkc-lookup-key (len &optional postfix prefer-noun) |
17052 | 175 ;; At first, prepare cache data if any. |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
176 (unless kkc-init-file-flag |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
177 (setq kkc-init-file-flag t |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
178 kkc-lookup-cache nil) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
179 (add-hook 'kill-emacs-hook 'kkc-save-init-file) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
180 (if (file-readable-p kkc-init-file-name) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
181 (condition-case nil |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
182 (load-file kkc-init-file-name) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
183 (kkc-error "Invalid data in %s" kkc-init-file-name)))) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
184 (or (and (nested-alist-p kkc-lookup-cache) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
185 (eq (car kkc-lookup-cache) kkc-lookup-cache-tag)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
186 (setq kkc-lookup-cache (list kkc-lookup-cache-tag) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
187 kkc-init-file-flag 'kkc-lookup-cache)) |
17052 | 188 (let ((entry (lookup-nested-alist kkc-current-key kkc-lookup-cache len 0 t))) |
189 (if (consp (car entry)) | |
190 (setq kkc-length-converted len | |
191 kkc-current-conversions-width nil | |
192 kkc-current-conversions (car entry)) | |
18644
69c91eee7ba1
(kkc-region): Call skkdic-lookup-key with
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
193 (setq entry (skkdic-lookup-key kkc-current-key len postfix prefer-noun)) |
17052 | 194 (if entry |
195 (progn | |
196 (setq kkc-length-converted len | |
197 kkc-current-conversions-width nil | |
198 kkc-current-conversions (cons 1 entry)) | |
199 (if postfix | |
200 ;; Store this conversions in the cache. | |
201 (progn | |
202 (set-nested-alist kkc-current-key kkc-current-conversions | |
203 kkc-lookup-cache kkc-length-converted) | |
204 (setq kkc-init-file-flag 'kkc-lookup-cache))) | |
205 t) | |
206 (if (= len 1) | |
207 (setq kkc-length-converted 1 | |
208 kkc-current-conversions-width nil | |
209 kkc-current-conversions (cons 0 nil))))))) | |
210 | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
211 (put 'kkc-error 'error-conditions '(kkc-error error)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
212 (defun kkc-error (&rest args) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
213 (signal 'kkc-error (apply 'format args))) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
214 |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
215 (defvar kkc-converting nil) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
216 |
17052 | 217 ;;;###autoload |
30256
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
218 (defvar kkc-after-update-conversion-functions nil |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
219 "Functions to run after a conversion is selected in `japanese' input method. |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
220 With this input method, a user can select a proper conversion from |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
221 candidate list. Each time he changes the selection, functions in this |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
222 list are called with two arguments; starting and ending buffer |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
223 positions that contains the current selection.") |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
224 |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
225 ;;;###autoload |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
226 (defun kkc-region (from to) |
17052 | 227 "Convert Kana string in the current region to Kanji-Kana mixed string. |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
228 Users can select a desirable conversion interactively. |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
229 When called from a program, expects two arguments, |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
230 positions FROM and TO (integers or markers) specifying the target region. |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
231 When it returns, the point is at the tail of the selected conversion, |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
232 and the return value is the length of the conversion." |
17052 | 233 (interactive "r") |
234 (setq kkc-original-kana (buffer-substring from to)) | |
235 (goto-char from) | |
236 | |
237 ;; Setup overlays. | |
238 (if (overlayp kkc-overlay-head) | |
239 (move-overlay kkc-overlay-head from to) | |
240 (setq kkc-overlay-head (make-overlay from to nil nil t)) | |
241 (overlay-put kkc-overlay-head 'face 'highlight)) | |
242 (if (overlayp kkc-overlay-tail) | |
243 (move-overlay kkc-overlay-tail to to) | |
244 (setq kkc-overlay-tail (make-overlay to to nil nil t)) | |
245 (overlay-put kkc-overlay-tail 'face 'underline)) | |
246 | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
247 (setq kkc-current-key (string-to-vector kkc-original-kana)) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
248 (setq kkc-length-head (length kkc-current-key)) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
249 (setq kkc-length-converted 0) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
250 |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
251 (unwind-protect |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
252 ;; At first convert the region to the first candidate. |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
253 (let ((current-input-method-title kkc-input-method-title) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
254 (input-method-function nil) |
29146
ded7fa3de6db
(kkc-region): Don't change modified-p of
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
255 (modified-p (buffer-modified-p)) |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
256 (first t)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
257 (while (not (kkc-lookup-key kkc-length-head nil first)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
258 (setq kkc-length-head (1- kkc-length-head) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
259 first nil)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
260 (goto-char to) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
261 (kkc-update-conversion 'all) |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
262 (setq kkc-next-count 1 kkc-prev-count 0) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
263 (if (and (>= kkc-next-count kkc-show-conversion-list-count) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
264 (>= (length kkc-current-conversions) 3)) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
265 (kkc-show-conversion-list-or-next-group)) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
266 |
23196 | 267 ;; Then, ask users to select a desirable conversion. |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
268 (force-mode-line-update) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
269 (setq kkc-converting t) |
31218
6828c3827297
(kkc-region): Hide "... loaded" message.
Kenichi Handa <handa@m17n.org>
parents:
31165
diff
changeset
|
270 ;; Hide "... loaded" message. |
6828c3827297
(kkc-region): Hide "... loaded" message.
Kenichi Handa <handa@m17n.org>
parents:
31165
diff
changeset
|
271 (message nil) |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
272 (while kkc-converting |
29146
ded7fa3de6db
(kkc-region): Don't change modified-p of
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
273 (set-buffer-modified-p modified-p) |
22919
95d147bbdce0
(kkc-region): Don't bind echo-keystrokes.
Kenichi Handa <handa@m17n.org>
parents:
22888
diff
changeset
|
274 (let* ((overriding-terminal-local-map kkc-keymap) |
23032 | 275 (help-char nil) |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
276 (keyseq (read-key-sequence nil)) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
277 (cmd (lookup-key kkc-keymap keyseq))) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
278 (if (commandp cmd) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
279 (condition-case err |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
280 (progn |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
281 (cond ((eq cmd 'kkc-next) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
282 (setq kkc-next-count (1+ kkc-next-count) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
283 kkc-prev-count 0)) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
284 ((eq cmd 'kkc-prev) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
285 (setq kkc-prev-count (1+ kkc-prev-count) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
286 kkc-next-count 0)) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
287 (t |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
288 (setq kkc-next-count 0 kkc-prev-count 0))) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
289 (call-interactively cmd)) |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
290 (kkc-error (message "%s" (cdr err)) (beep))) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
291 ;; KEYSEQ is not defined in KKC keymap. |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
292 ;; Let's put the event back. |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
293 (setq unread-input-method-events |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
294 (append (string-to-list keyseq) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
295 unread-input-method-events)) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
296 (kkc-terminate)))) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
297 |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
298 (force-mode-line-update) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
299 (goto-char (overlay-end kkc-overlay-tail)) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
300 (- (overlay-start kkc-overlay-head) from)) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
301 (delete-overlay kkc-overlay-head) |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
302 (delete-overlay kkc-overlay-tail))) |
17052 | 303 |
304 (defun kkc-terminate () | |
305 "Exit from KKC mode by fixing the current conversion." | |
306 (interactive) | |
22794
9ace35333789
(kkc-region): Handled the case that
Kenichi Handa <handa@m17n.org>
parents:
22779
diff
changeset
|
307 (goto-char (overlay-end kkc-overlay-tail)) |
9ace35333789
(kkc-region): Handled the case that
Kenichi Handa <handa@m17n.org>
parents:
22779
diff
changeset
|
308 (move-overlay kkc-overlay-head (point) (point)) |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
309 (setq kkc-converting nil)) |
17052 | 310 |
311 (defun kkc-cancel () | |
312 "Exit from KKC mode by canceling any conversions." | |
313 (interactive) | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
314 (goto-char (overlay-start kkc-overlay-head)) |
17052 | 315 (delete-region (overlay-start kkc-overlay-head) |
316 (overlay-end kkc-overlay-tail)) | |
317 (insert kkc-original-kana) | |
22794
9ace35333789
(kkc-region): Handled the case that
Kenichi Handa <handa@m17n.org>
parents:
22779
diff
changeset
|
318 (setq kkc-converting nil)) |
17052 | 319 |
320 (defun kkc-first-char-only () | |
321 "Select only the first character currently converted." | |
322 (interactive) | |
323 (goto-char (overlay-start kkc-overlay-head)) | |
324 (forward-char 1) | |
325 (delete-region (point) (overlay-end kkc-overlay-tail)) | |
326 (kkc-terminate)) | |
327 | |
328 (defun kkc-next () | |
329 "Select the next candidate of conversion." | |
330 (interactive) | |
331 (let ((idx (1+ (car kkc-current-conversions)))) | |
332 (if (< idx 0) | |
333 (setq idx 1)) | |
334 (if (>= idx (length kkc-current-conversions)) | |
335 (setq idx 0)) | |
336 (setcar kkc-current-conversions idx) | |
337 (if (> idx 1) | |
338 (progn | |
339 (set-nested-alist kkc-current-key kkc-current-conversions | |
340 kkc-lookup-cache kkc-length-converted) | |
341 (setq kkc-init-file-flag 'kkc-lookup-cache))) | |
342 (if (or kkc-current-conversions-width | |
343 (>= kkc-next-count kkc-show-conversion-list-count)) | |
344 (kkc-show-conversion-list-update)) | |
345 (kkc-update-conversion))) | |
346 | |
347 (defun kkc-prev () | |
348 "Select the previous candidate of conversion." | |
349 (interactive) | |
350 (let ((idx (1- (car kkc-current-conversions)))) | |
351 (if (< idx 0) | |
352 (setq idx (1- (length kkc-current-conversions)))) | |
353 (setcar kkc-current-conversions idx) | |
354 (if (> idx 1) | |
355 (progn | |
356 (set-nested-alist kkc-current-key kkc-current-conversions | |
357 kkc-lookup-cache kkc-length-converted) | |
358 (setq kkc-init-file-flag 'kkc-lookup-cache))) | |
359 (if (or kkc-current-conversions-width | |
360 (>= kkc-prev-count kkc-show-conversion-list-count)) | |
361 (kkc-show-conversion-list-update)) | |
362 (kkc-update-conversion))) | |
363 | |
364 (defun kkc-select-from-list () | |
365 "Select one candidate from the list currently shown in echo area." | |
366 (interactive) | |
367 (let (idx) | |
368 (if kkc-current-conversions-width | |
369 (let ((len (length kkc-show-conversion-list-index-chars)) | |
370 (maxlen (- (aref (aref kkc-current-conversions-width 0) 1) | |
371 (aref (aref kkc-current-conversions-width 0) 0))) | |
372 (i 0)) | |
373 (if (> len maxlen) | |
374 (setq len maxlen)) | |
375 (while (< i len) | |
376 (if (= (aref kkc-show-conversion-list-index-chars i) | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
377 last-input-event) |
17052 | 378 (setq idx i i len) |
379 (setq i (1+ i)))))) | |
380 (if idx | |
381 (progn | |
382 (setcar kkc-current-conversions | |
383 (+ (aref (aref kkc-current-conversions-width 0) 0) idx)) | |
384 (kkc-show-conversion-list-update) | |
385 (kkc-update-conversion)) | |
22766
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
386 (setq unread-input-method-events |
a83818674920
(kkc-show-conversion-list-index-chars):
Kenichi Handa <handa@m17n.org>
parents:
20638
diff
changeset
|
387 (cons last-input-event unread-input-method-events)) |
17052 | 388 (kkc-terminate)))) |
389 | |
390 (defun kkc-katakana () | |
391 "Convert to Katakana." | |
392 (interactive) | |
393 (setcar kkc-current-conversions -1) | |
394 (kkc-update-conversion 'all)) | |
395 | |
396 (defun kkc-hiragana () | |
397 "Convert to hiragana." | |
398 (interactive) | |
399 (setcar kkc-current-conversions 0) | |
400 (kkc-update-conversion)) | |
401 | |
402 (defun kkc-shorter () | |
403 "Make the Kana string to be converted shorter." | |
404 (interactive) | |
405 (if (<= kkc-length-head 1) | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
406 (kkc-error "Can't be shorter")) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
407 (setq kkc-length-head (1- kkc-length-head)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
408 (if (> kkc-length-converted kkc-length-head) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
409 (let ((len kkc-length-head)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
410 (setq kkc-length-converted 0) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
411 (while (not (kkc-lookup-key len)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
412 (setq len (1- len))))) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
413 (kkc-update-conversion 'all)) |
17052 | 414 |
415 (defun kkc-longer () | |
416 "Make the Kana string to be converted longer." | |
417 (interactive) | |
418 (if (>= kkc-length-head (length kkc-current-key)) | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
419 (kkc-error "Can't be longer")) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
420 (setq kkc-length-head (1+ kkc-length-head)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
421 ;; This time, try also entries with postfixes. |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
422 (kkc-lookup-key kkc-length-head 'postfix) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
423 (kkc-update-conversion 'all)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
424 |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
425 (defun kkc-shorter-conversion () |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
426 "Make the Kana string to be converted shorter." |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
427 (interactive) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
428 (if (<= kkc-length-converted 1) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
429 (kkc-error "Can't be shorter")) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
430 (let ((len (1- kkc-length-converted))) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
431 (setq kkc-length-converted 0) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
432 (while (not (kkc-lookup-key len)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
433 (setq len (1- len)))) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
434 (kkc-update-conversion 'all)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
435 |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
436 (defun kkc-longer-phrase () |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
437 "Make the current phrase (BUNSETSU) longer without looking up dictionary." |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
438 (interactive) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
439 (if (>= kkc-length-head (length kkc-current-key)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
440 (kkc-error "Can't be longer")) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
441 (setq kkc-length-head (1+ kkc-length-head)) |
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
442 (kkc-update-conversion 'all)) |
17052 | 443 |
444 (defun kkc-next-phrase () | |
445 "Fix the currently converted string and try to convert the remaining string." | |
446 (interactive) | |
447 (if (>= kkc-length-head (length kkc-current-key)) | |
448 (kkc-terminate) | |
449 (setq kkc-length-head (- (length kkc-current-key) kkc-length-head)) | |
450 (goto-char (overlay-end kkc-overlay-head)) | |
451 (while (and (< (point) (overlay-end kkc-overlay-tail)) | |
452 (looking-at "\\CH")) | |
453 (goto-char (match-end 0)) | |
454 (setq kkc-length-head (1- kkc-length-head))) | |
455 (if (= kkc-length-head 0) | |
456 (kkc-terminate) | |
457 (let ((newkey (make-vector kkc-length-head 0)) | |
458 (idx (- (length kkc-current-key) kkc-length-head)) | |
18644
69c91eee7ba1
(kkc-region): Call skkdic-lookup-key with
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
459 (len kkc-length-head) |
17052 | 460 (i 0)) |
461 ;; For the moment, (setq kkc-original-kana (concat newkey)) | |
462 ;; doesn't work. | |
463 (setq kkc-original-kana "") | |
464 (while (< i kkc-length-head) | |
465 (aset newkey i (aref kkc-current-key (+ idx i))) | |
466 (setq kkc-original-kana | |
467 (concat kkc-original-kana (char-to-string (aref newkey i)))) | |
468 (setq i (1+ i))) | |
469 (setq kkc-current-key newkey) | |
470 (setq kkc-length-converted 0) | |
18644
69c91eee7ba1
(kkc-region): Call skkdic-lookup-key with
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
471 (while (and (not (kkc-lookup-key kkc-length-head nil |
69c91eee7ba1
(kkc-region): Call skkdic-lookup-key with
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
472 (< kkc-length-head len))) |
17052 | 473 (> kkc-length-head 1)) |
474 (setq kkc-length-head (1- kkc-length-head))) | |
475 (let ((pos (point)) | |
476 (tail (overlay-end kkc-overlay-tail))) | |
477 (move-overlay kkc-overlay-head pos tail) | |
478 (move-overlay kkc-overlay-tail tail tail)) | |
479 (kkc-update-conversion 'all))))) | |
480 | |
481 ;; We'll show users a list of available conversions in echo area with | |
482 ;; index numbers so that users can select one conversion with the | |
483 ;; number. | |
484 | |
485 ;; Set `kkc-current-conversions-width'. | |
486 (defun kkc-setup-current-conversions-width () | |
487 (let ((convs (cdr kkc-current-conversions)) | |
488 (len (length kkc-current-conversions)) | |
489 (idx 1)) | |
490 (setq kkc-current-conversions-width (make-vector len nil)) | |
491 ;; To tell `kkc-show-conversion-list-update' to generate | |
492 ;; message from scratch. | |
493 (aset kkc-current-conversions-width 0 (vector len -2 nil)) | |
494 ;; Fill the remaining slots. | |
495 (while convs | |
496 (aset kkc-current-conversions-width idx | |
497 (+ (string-width (car convs)) 4)) | |
498 (setq convs (cdr convs) | |
499 idx (1+ idx))))) | |
500 | |
501 (defun kkc-show-conversion-list-or-next-group () | |
502 "Show list of available conversions in echo area with index numbers. | |
503 If the list is already shown, show the next group of conversions, | |
504 and change the current conversion to the first one in the group." | |
505 (interactive) | |
506 (if (< (length kkc-current-conversions) 3) | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
507 (kkc-error "No alternative")) |
17052 | 508 (if kkc-current-conversions-width |
509 (let ((next-idx (aref (aref kkc-current-conversions-width 0) 1))) | |
510 (if (< next-idx (length kkc-current-conversions-width)) | |
511 (setcar kkc-current-conversions next-idx) | |
512 (setcar kkc-current-conversions 1)) | |
513 (kkc-show-conversion-list-update) | |
514 (kkc-update-conversion)) | |
515 (kkc-setup-current-conversions-width) | |
516 (kkc-show-conversion-list-update))) | |
517 | |
518 (defun kkc-show-conversion-list-or-prev-group () | |
519 "Show list of available conversions in echo area with index numbers. | |
520 If the list is already shown, show the previous group of conversions, | |
521 and change the current conversion to the last one in the group." | |
522 (interactive) | |
523 (if (< (length kkc-current-conversions) 3) | |
22888
5bfe86125303
(kkc-lookup-cache): Initialize it to nil.
Kenichi Handa <handa@m17n.org>
parents:
22816
diff
changeset
|
524 (kkc-error "No alternative")) |
17052 | 525 (if kkc-current-conversions-width |
526 (let ((this-idx (aref (aref kkc-current-conversions-width 0) 0))) | |
527 (if (> this-idx 1) | |
528 (setcar kkc-current-conversions (1- this-idx)) | |
529 (setcar kkc-current-conversions | |
530 (1- (length kkc-current-conversions-width)))) | |
531 (kkc-show-conversion-list-update) | |
532 (kkc-update-conversion)) | |
533 (kkc-setup-current-conversions-width) | |
534 (kkc-show-conversion-list-update))) | |
535 | |
536 ;; Update the conversion list shown in echo area. | |
537 (defun kkc-show-conversion-list-update () | |
538 (or kkc-current-conversions-width | |
539 (kkc-setup-current-conversions-width)) | |
540 (let* ((current-idx (car kkc-current-conversions)) | |
541 (first-slot (aref kkc-current-conversions-width 0)) | |
542 (this-idx (aref first-slot 0)) | |
543 (next-idx (aref first-slot 1)) | |
544 (msg (aref first-slot 2))) | |
545 (if (< current-idx this-idx) | |
546 ;; The currently selected conversion is before the list shown | |
547 ;; previously. We must start calculation of message width | |
548 ;; from the start again. | |
549 (setq this-idx 1 msg nil) | |
550 (if (>= current-idx next-idx) | |
551 ;; The currently selected conversion is after the list shown | |
552 ;; previously. We start calculation of message width from | |
553 ;; the conversion next of TO. | |
51959
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
554 (setq this-idx next-idx msg nil))) |
17052 | 555 (if (not msg) |
556 (let ((len (length kkc-current-conversions)) | |
557 (max-width (window-width (minibuffer-window))) | |
558 (width-table kkc-current-conversions-width) | |
559 (width 0) | |
560 (idx this-idx) | |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
561 (max-items (length kkc-show-conversion-list-index-chars)) |
17052 | 562 l) |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
563 ;; Set THIS-IDX to the first index of conversion to be shown |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
564 ;; in MSG, and reflect it in kkc-current-conversions-width. |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
565 (while (<= idx current-idx) |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
566 (if (and (<= (+ width (aref width-table idx)) max-width) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
567 (< (- idx this-idx) max-items)) |
17052 | 568 (setq width (+ width (aref width-table idx))) |
569 (setq this-idx idx width (aref width-table idx))) | |
570 (setq idx (1+ idx) | |
571 l (cdr l))) | |
572 (aset first-slot 0 this-idx) | |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
573 ;; Set NEXT-IDX to the next index of the last conversion |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
574 ;; shown in MSG, and reflect it in |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
575 ;; kkc-current-conversions-width. |
17052 | 576 (while (and (< idx len) |
22816
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
577 (<= (+ width (aref width-table idx)) max-width) |
8f9d4edebbdd
(kkc-region): Unwind-protect the conversion
Kenichi Handa <handa@m17n.org>
parents:
22794
diff
changeset
|
578 (< (- idx this-idx) max-items)) |
17052 | 579 (setq width (+ width (aref width-table idx)) |
580 idx (1+ idx) | |
581 l (cdr l))) | |
582 (aset first-slot 1 (setq next-idx idx)) | |
583 (setq l (nthcdr this-idx kkc-current-conversions)) | |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
584 (setq msg (format " %c %s" |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
585 (aref kkc-show-conversion-list-index-chars 0) |
51959
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
586 (propertize (car l) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
587 'kkc-conversion-index this-idx)) |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
588 idx (1+ this-idx) |
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
589 l (cdr l)) |
17052 | 590 (while (< idx next-idx) |
30251
9a4962f4ea62
(kkc-show-conversion-list-count): Customize it.
Kenichi Handa <handa@m17n.org>
parents:
29146
diff
changeset
|
591 (setq msg (format "%s %c %s" |
17052 | 592 msg |
593 (aref kkc-show-conversion-list-index-chars | |
594 (- idx this-idx)) | |
51959
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
595 (propertize (car l) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
596 'kkc-conversion-index idx)) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
597 idx (1+ idx) |
17052 | 598 l (cdr l))) |
599 (aset first-slot 2 msg))) | |
51959
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
600 |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
601 ;; Highlight the current conversion. |
17052 | 602 (if (> current-idx 0) |
51959
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
603 (let ((pos 3) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
604 (limit (length msg))) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
605 (remove-text-properties 0 (length msg) '(face nil) msg) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
606 (while (not (eq (get-text-property pos 'kkc-conversion-index msg) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
607 current-idx)) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
608 (setq pos (next-single-property-change pos 'kkc-conversion-index |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
609 msg limit))) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
610 (put-text-property pos (next-single-property-change |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
611 pos 'kkc-conversion-index msg limit) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
612 'face 'highlight msg))) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
613 (let ((message-log-max nil)) |
cfbd08e9b444
(kkc-show-conversion-list-update):
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
614 (message "%s" msg)))) |
17052 | 615 |
616 ;; Update the conversion area with the latest conversion selected. | |
617 ;; ALL if non nil means to update the whole area, else update only | |
618 ;; inside quail-overlay-head. | |
619 | |
620 (defun kkc-update-conversion (&optional all) | |
621 (goto-char (overlay-start kkc-overlay-head)) | |
622 (cond ((= (car kkc-current-conversions) 0) ; Hiragana | |
623 (let ((i 0)) | |
624 (while (< i kkc-length-converted) | |
625 (insert (aref kkc-current-key i)) | |
626 (setq i (1+ i))))) | |
627 ((= (car kkc-current-conversions) -1) ; Katakana | |
628 (let ((i 0)) | |
629 (while (< i kkc-length-converted) | |
630 (insert (japanese-katakana (aref kkc-current-key i))) | |
631 (setq i (1+ i))))) | |
632 (t | |
633 (insert (nth (car kkc-current-conversions) kkc-current-conversions)))) | |
634 (delete-region (point) (overlay-start kkc-overlay-tail)) | |
635 (if all | |
636 (let ((len (length kkc-current-key)) | |
637 (i kkc-length-converted)) | |
638 (delete-region (overlay-start kkc-overlay-tail) | |
639 (overlay-end kkc-overlay-head)) | |
640 (while (< i kkc-length-head) | |
641 (if (= (car kkc-current-conversions) -1) | |
642 (insert (japanese-katakana (aref kkc-current-key i))) | |
643 (insert (aref kkc-current-key i))) | |
644 (setq i (1+ i))) | |
645 (let ((pos (point))) | |
646 (while (< i len) | |
647 (insert (aref kkc-current-key i)) | |
648 (setq i (1+ i))) | |
649 (move-overlay kkc-overlay-head | |
650 (overlay-start kkc-overlay-head) pos) | |
651 (delete-region (point) (overlay-end kkc-overlay-tail))))) | |
30256
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
652 (unwind-protect |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
653 (run-hook-with-args 'kkc-after-update-conversion-functions |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
654 (overlay-start kkc-overlay-head) |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
655 (overlay-end kkc-overlay-head)) |
e4b4bca5087a
(kkc-after-update-conversion-functions): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30251
diff
changeset
|
656 (goto-char (overlay-end kkc-overlay-tail)))) |
17052 | 657 |
658 ;; | |
659 (provide 'kkc) | |
660 | |
52401 | 661 ;;; arch-tag: 3cbfd56e-74e6-4f60-bb46-ba7c2d366fbf |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37016
diff
changeset
|
662 ;;; kkc.el ends here |