1 ;;; kkc.el --- Kana Kanji converter -*- coding: iso-2022-7bit; -*-
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
6 ;; Keywords: mule, multilingual, Japanese
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; These routines provide a simple and easy-to-use converter from
28 ;; Kana-string to Kana-Kanji-mixed-string. This converter (here after
29 ;; KKC) uses a SKK dictionary to get information how to convert
30 ;; Kana-string. Since KKC can't be fully automated, we need an
31 ;; interaction with a user to decide the correct conversion. For
32 ;; that, we provide KKC major mode.
38 (defvar kkc-input-method-title
"\e$B4A\e(B"
39 "String denoting KKC input method.
40 This string is shown at mode line when users are in KKC mode.")
42 (defvar kkc-init-file-name
"~/.kkcrc"
43 "Name of a file which contains user's initial setup code for KKC.")
45 ;; A flag to control a file specified by `kkc-init-file-name'.
46 ;; The value nil means the file is not yet consulted.
47 ;; The value t means the file has already been consulted but there's
48 ;; no need of updating it yet.
49 ;; Any other value means that we must update the file before exiting Emacs.
50 (defvar kkc-init-file-flag nil
)
52 ;; Cash data for `kkc-lookup-key'. This may be initialized by loading
53 ;; a file specified by `kkc-init-file-name'. If any elements are
54 ;; modified, the data is written out to the file when exiting Emacs.
55 (defvar kkc-lookup-cache nil
)
57 ;; Tag symbol of `kkc-lookup-cache'.
58 (defconst kkc-lookup-cache-tag
'kkc-lookup-cache-2
)
60 (defun kkc-save-init-file ()
61 "Save initial setup code for KKC to a file specified by `kkc-init-file-name'"
62 (if (and kkc-init-file-flag
63 (not (eq kkc-init-file-flag t
)))
64 (let ((coding-system-for-write 'iso-2022-7bit
)
66 (write-region (format "(setq kkc-lookup-cache '%S)\n" kkc-lookup-cache
)
68 kkc-init-file-name
))))
70 ;; Sequence of characters to be used for indexes for shown list. The
71 ;; Nth character is for the Nth conversion in the list currently shown.
72 (defvar kkc-show-conversion-list-index-chars
76 "Show key bindings available while converting by KKC."
78 (with-output-to-temp-buffer "*Help*"
79 (princ (substitute-command-keys "\\{kkc-keymap}"))))
82 (let ((map (make-sparse-keymap))
83 (len (length kkc-show-conversion-list-index-chars
))
87 (char-to-string (aref kkc-show-conversion-list-index-chars i
))
88 'kkc-select-from-list
)
90 (define-key map
" " 'kkc-next
)
91 (define-key map
"\r" 'kkc-terminate
)
92 (define-key map
"\C-@" 'kkc-first-char-only
)
93 (define-key map
"\C-n" 'kkc-next
)
94 (define-key map
"\C-p" 'kkc-prev
)
95 (define-key map
"\C-i" 'kkc-shorter
)
96 (define-key map
"\C-o" 'kkc-longer
)
97 (define-key map
"I" 'kkc-shorter-conversion
)
98 (define-key map
"O" 'kkc-longer-phrase
)
99 (define-key map
"\C-c" 'kkc-cancel
)
100 (define-key map
"\C-?" 'kkc-cancel
)
101 (define-key map
"\C-f" 'kkc-next-phrase
)
102 (define-key map
"K" 'kkc-katakana
)
103 (define-key map
"H" 'kkc-hiragana
)
104 (define-key map
"l" 'kkc-show-conversion-list-or-next-group
)
105 (define-key map
"L" 'kkc-show-conversion-list-or-prev-group
)
106 (define-key map
[?\C-
] 'kkc-first-char-only
)
107 (define-key map
[delete] 'kkc-cancel)
108 (define-key map [return] 'kkc-terminate)
109 (define-key map "\C-h" 'kkc-help)
111 "Keymap for KKC (Kana Kanji Converter).")
113 ;;; Internal variables used in KKC.
115 ;; The current Kana string to be converted.
116 (defvar kkc-original-kana nil)
118 ;; The current key sequence (vector of Kana characters) generated from
119 ;; `kkc-original-kana'.
120 (defvar kkc-current-key nil)
122 ;; List of the current conversions for `kkc-current-key'.
123 (defvar kkc-current-conversions nil)
125 ;; Vector of the same length as `kkc-current-conversion'. The first
126 ;; element is a vector of:
127 ;; o index number of the first conversion shown previously,
128 ;; o index number of a conversion next of the last one shown previously,
129 ;; o the shown string itself.
130 ;; The remaining elements are widths (including columns for index
131 ;; numbers) of conversions stored in the same order as in
132 ;; `kkc-current-conversion'.
133 (defvar kkc-current-conversions-width nil)
135 (defcustom kkc-show-conversion-list-count 4
136 "*Count of successive `kkc-next' or `kkc-prev' to show conversion list.
137 When you type SPC or C-p successively this count while using the input
138 method `japanese', the conversion candidates are shown in the echo
139 area while indicating the current selection by `<N>'."
143 ;; Count of successive invocations of `kkc-next'.
144 (defvar kkc-next-count nil)
146 ;; Count of successive invocations of `kkc-prev'.
147 (defvar kkc-prev-count nil)
149 ;; Provided that `kkc-current-key' is [A B C D E F G H I], the current
150 ;; conversion target is [A B C D E F], and the sequence of which
151 ;; conversion is found is [A B C D]:
154 ;; kkc-overlay-head (black): |<--------->|
155 ;; kkc-overlay-tail (underline): |<------->|
156 ;; kkc-length-head: |<--------->|
157 ;; kkc-length-converted: |<----->|
159 (defvar kkc-overlay-head nil)
160 (defvar kkc-overlay-tail nil)
161 (defvar kkc-length-head nil)
162 (defvar kkc-length-converted nil)
164 ;; Cursor type (`box' or `bar') of the current frame.
165 (defvar kkc-cursor-type nil)
167 ;; Lookup Japanese dictionary to set list of conversions in
168 ;; kkc-current-conversions for key sequence kkc-current-key of length
169 ;; LEN. If no conversion is found in the dictionary, don't change
170 ;; kkc-current-conversions and return nil.
171 ;; Postfixes are handled only if POSTFIX is non-nil.
172 (defun kkc-lookup-key (len &optional postfix prefer-noun)
173 ;; At first, prepare cache data if any.
174 (unless kkc-init-file-flag
175 (setq kkc-init-file-flag t
176 kkc-lookup-cache nil)
177 (add-hook 'kill-emacs-hook 'kkc-save-init-file)
178 (if (file-readable-p kkc-init-file-name)
180 (load-file kkc-init-file-name)
181 (kkc-error "Invalid data in %s" kkc-init-file-name))))
182 (or (and (nested-alist-p kkc-lookup-cache)
183 (eq (car kkc-lookup-cache) kkc-lookup-cache-tag))
184 (setq kkc-lookup-cache (list kkc-lookup-cache-tag)
185 kkc-init-file-flag 'kkc-lookup-cache))
186 (let ((entry (lookup-nested-alist kkc-current-key kkc-lookup-cache len 0 t)))
187 (if (consp (car entry))
188 (setq kkc-length-converted len
189 kkc-current-conversions-width nil
190 kkc-current-conversions (car entry))
191 (setq entry (skkdic-lookup-key kkc-current-key len postfix prefer-noun))
194 (setq kkc-length-converted len
195 kkc-current-conversions-width nil
196 kkc-current-conversions (cons 1 entry))
198 ;; Store this conversions in the cache.
200 (set-nested-alist kkc-current-key kkc-current-conversions
201 kkc-lookup-cache kkc-length-converted)
202 (setq kkc-init-file-flag 'kkc-lookup-cache)))
205 (setq kkc-length-converted 1
206 kkc-current-conversions-width nil
207 kkc-current-conversions (cons 0 nil)))))))
209 (put 'kkc-error 'error-conditions '(kkc-error error))
210 (defun kkc-error (&rest args)
211 (signal 'kkc-error (apply 'format args)))
213 (defvar kkc-converting nil)
216 (defvar kkc-after-update-conversion-functions nil
217 "Functions to run after a conversion is selected in `japanese' input method.
218 With this input method, a user can select a proper conversion from
219 candidate list. Each time he changes the selection, functions in this
220 list are called with two arguments; starting and ending buffer
221 positions that contains the current selection.")
224 (defun kkc-region (from to)
225 "Convert Kana string in the current region to Kanji-Kana mixed string.
226 Users can select a desirable conversion interactively.
227 When called from a program, expects two arguments,
228 positions FROM and TO (integers or markers) specifying the target region.
229 When it returns, the point is at the tail of the selected conversion,
230 and the return value is the length of the conversion."
232 (setq kkc-original-kana (buffer-substring from to))
236 (if (overlayp kkc-overlay-head)
237 (move-overlay kkc-overlay-head from to)
238 (setq kkc-overlay-head (make-overlay from to nil nil t))
239 (overlay-put kkc-overlay-head 'face 'highlight))
240 (if (overlayp kkc-overlay-tail)
241 (move-overlay kkc-overlay-tail to to)
242 (setq kkc-overlay-tail (make-overlay to to nil nil t))
243 (overlay-put kkc-overlay-tail 'face 'underline))
245 (setq kkc-current-key (string-to-vector kkc-original-kana))
246 (setq kkc-length-head (length kkc-current-key))
247 (setq kkc-length-converted 0)
250 ;; At first convert the region to the first candidate.
251 (let ((current-input-method-title kkc-input-method-title)
252 (input-method-function nil)
253 (modified-p (buffer-modified-p))
255 (while (not (kkc-lookup-key kkc-length-head nil first))
256 (setq kkc-length-head (1- kkc-length-head)
259 (kkc-update-conversion 'all)
260 (setq kkc-next-count 1 kkc-prev-count 0)
261 (if (and (>= kkc-next-count kkc-show-conversion-list-count)
262 (>= (length kkc-current-conversions) 3))
263 (kkc-show-conversion-list-or-next-group))
265 ;; Then, ask users to select a desirable conversion.
266 (force-mode-line-update)
267 (setq kkc-converting t)
268 ;; Hide "... loaded" message.
270 (while kkc-converting
271 (set-buffer-modified-p modified-p)
272 (let* ((overriding-terminal-local-map kkc-keymap)
274 (keyseq (read-key-sequence nil))
275 (cmd (lookup-key kkc-keymap keyseq)))
279 (cond ((eq cmd 'kkc-next)
280 (setq kkc-next-count (1+ kkc-next-count)
283 (setq kkc-prev-count (1+ kkc-prev-count)
286 (setq kkc-next-count 0 kkc-prev-count 0)))
287 (call-interactively cmd))
288 (kkc-error (message "%s" (cdr err)) (beep)))
289 ;; KEYSEQ is not defined in KKC keymap.
290 ;; Let's put the event back.
291 (setq unread-input-method-events
292 (append (string-to-list keyseq)
293 unread-input-method-events))
296 (force-mode-line-update)
297 (goto-char (overlay-end kkc-overlay-tail))
298 (- (overlay-start kkc-overlay-head) from))
299 (delete-overlay kkc-overlay-head)
300 (delete-overlay kkc-overlay-tail)))
302 (defun kkc-terminate ()
303 "Exit from KKC mode by fixing the current conversion."
305 (goto-char (overlay-end kkc-overlay-tail))
306 (move-overlay kkc-overlay-head (point) (point))
307 (setq kkc-converting nil))
310 "Exit from KKC mode by canceling any conversions."
312 (goto-char (overlay-start kkc-overlay-head))
313 (delete-region (overlay-start kkc-overlay-head)
314 (overlay-end kkc-overlay-tail))
315 (insert kkc-original-kana)
316 (setq kkc-converting nil))
318 (defun kkc-first-char-only ()
319 "Select only the first character currently converted."
321 (goto-char (overlay-start kkc-overlay-head))
323 (delete-region (point) (overlay-end kkc-overlay-tail))
327 "Select the next candidate of conversion."
329 (let ((idx (1+ (car kkc-current-conversions))))
332 (if (>= idx (length kkc-current-conversions))
334 (setcar kkc-current-conversions idx)
337 (set-nested-alist kkc-current-key kkc-current-conversions
338 kkc-lookup-cache kkc-length-converted)
339 (setq kkc-init-file-flag 'kkc-lookup-cache)))
340 (if (or kkc-current-conversions-width
341 (>= kkc-next-count kkc-show-conversion-list-count))
342 (kkc-show-conversion-list-update))
343 (kkc-update-conversion)))
346 "Select the previous candidate of conversion."
348 (let ((idx (1- (car kkc-current-conversions))))
350 (setq idx (1- (length kkc-current-conversions))))
351 (setcar kkc-current-conversions idx)
354 (set-nested-alist kkc-current-key kkc-current-conversions
355 kkc-lookup-cache kkc-length-converted)
356 (setq kkc-init-file-flag 'kkc-lookup-cache)))
357 (if (or kkc-current-conversions-width
358 (>= kkc-prev-count kkc-show-conversion-list-count))
359 (kkc-show-conversion-list-update))
360 (kkc-update-conversion)))
362 (defun kkc-select-from-list ()
363 "Select one candidate from the list currently shown in echo area."
366 (if kkc-current-conversions-width
367 (let ((len (length kkc-show-conversion-list-index-chars))
368 (maxlen (- (aref (aref kkc-current-conversions-width 0) 1)
369 (aref (aref kkc-current-conversions-width 0) 0)))
374 (if (= (aref kkc-show-conversion-list-index-chars i)
380 (setcar kkc-current-conversions
381 (+ (aref (aref kkc-current-conversions-width 0) 0) idx))
382 (kkc-show-conversion-list-update)
383 (kkc-update-conversion))
384 (setq unread-input-method-events
385 (cons last-input-event unread-input-method-events))
388 (defun kkc-katakana ()
389 "Convert to Katakana."
391 (setcar kkc-current-conversions -1)
392 (kkc-update-conversion 'all))
394 (defun kkc-hiragana ()
395 "Convert to hiragana."
397 (setcar kkc-current-conversions 0)
398 (kkc-update-conversion))
400 (defun kkc-shorter ()
401 "Make the Kana string to be converted shorter."
403 (if (<= kkc-length-head 1)
404 (kkc-error "Can't be shorter"))
405 (setq kkc-length-head (1- kkc-length-head))
406 (if (> kkc-length-converted kkc-length-head)
407 (let ((len kkc-length-head))
408 (setq kkc-length-converted 0)
409 (while (not (kkc-lookup-key len))
410 (setq len (1- len)))))
411 (kkc-update-conversion 'all))
414 "Make the Kana string to be converted longer."
416 (if (>= kkc-length-head (length kkc-current-key))
417 (kkc-error "Can't be longer"))
418 (setq kkc-length-head (1+ kkc-length-head))
419 ;; This time, try also entries with postfixes.
420 (kkc-lookup-key kkc-length-head 'postfix)
421 (kkc-update-conversion 'all))
423 (defun kkc-shorter-conversion ()
424 "Make the Kana string to be converted shorter."
426 (if (<= kkc-length-converted 1)
427 (kkc-error "Can't be shorter"))
428 (let ((len (1- kkc-length-converted)))
429 (setq kkc-length-converted 0)
430 (while (not (kkc-lookup-key len))
431 (setq len (1- len))))
432 (kkc-update-conversion 'all))
434 (defun kkc-longer-phrase ()
435 "Make the current phrase (BUNSETSU) longer without looking up dictionary."
437 (if (>= kkc-length-head (length kkc-current-key))
438 (kkc-error "Can't be longer"))
439 (setq kkc-length-head (1+ kkc-length-head))
440 (kkc-update-conversion 'all))
442 (defun kkc-next-phrase ()
443 "Fix the currently converted string and try to convert the remaining string."
445 (if (>= kkc-length-head (length kkc-current-key))
447 (setq kkc-length-head (- (length kkc-current-key) kkc-length-head))
448 (goto-char (overlay-end kkc-overlay-head))
449 (while (and (< (point) (overlay-end kkc-overlay-tail))
451 (goto-char (match-end 0))
452 (setq kkc-length-head (1- kkc-length-head)))
453 (if (= kkc-length-head 0)
455 (let ((newkey (make-vector kkc-length-head 0))
456 (idx (- (length kkc-current-key) kkc-length-head))
457 (len kkc-length-head)
459 ;; For the moment, (setq kkc-original-kana (concat newkey))
461 (setq kkc-original-kana "")
462 (while (< i kkc-length-head)
463 (aset newkey i (aref kkc-current-key (+ idx i)))
464 (setq kkc-original-kana
465 (concat kkc-original-kana (char-to-string (aref newkey i))))
467 (setq kkc-current-key newkey)
468 (setq kkc-length-converted 0)
469 (while (and (not (kkc-lookup-key kkc-length-head nil
470 (< kkc-length-head len)))
471 (> kkc-length-head 1))
472 (setq kkc-length-head (1- kkc-length-head)))
474 (tail (overlay-end kkc-overlay-tail)))
475 (move-overlay kkc-overlay-head pos tail)
476 (move-overlay kkc-overlay-tail tail tail))
477 (kkc-update-conversion 'all)))))
479 ;; We'll show users a list of available conversions in echo area with
480 ;; index numbers so that users can select one conversion with the
483 ;; Set `kkc-current-conversions-width'.
484 (defun kkc-setup-current-conversions-width ()
485 (let ((convs (cdr kkc-current-conversions))
486 (len (length kkc-current-conversions))
488 (setq kkc-current-conversions-width (make-vector len nil))
489 ;; To tell `kkc-show-conversion-list-update' to generate
490 ;; message from scratch.
491 (aset kkc-current-conversions-width 0 (vector len -2 nil))
492 ;; Fill the remaining slots.
494 (aset kkc-current-conversions-width idx
495 (+ (string-width (car convs)) 4))
496 (setq convs (cdr convs)
499 (defun kkc-show-conversion-list-or-next-group ()
500 "Show list of available conversions in echo area with index numbers.
501 If the list is already shown, show the next group of conversions,
502 and change the current conversion to the first one in the group."
504 (if (< (length kkc-current-conversions) 3)
505 (kkc-error "No alternative"))
506 (if kkc-current-conversions-width
507 (let ((next-idx (aref (aref kkc-current-conversions-width 0) 1)))
508 (if (< next-idx (length kkc-current-conversions-width))
509 (setcar kkc-current-conversions next-idx)
510 (setcar kkc-current-conversions 1))
511 (kkc-show-conversion-list-update)
512 (kkc-update-conversion))
513 (kkc-setup-current-conversions-width)
514 (kkc-show-conversion-list-update)))
516 (defun kkc-show-conversion-list-or-prev-group ()
517 "Show list of available conversions in echo area with index numbers.
518 If the list is already shown, show the previous group of conversions,
519 and change the current conversion to the last one in the group."
521 (if (< (length kkc-current-conversions) 3)
522 (kkc-error "No alternative"))
523 (if kkc-current-conversions-width
524 (let ((this-idx (aref (aref kkc-current-conversions-width 0) 0)))
526 (setcar kkc-current-conversions (1- this-idx))
527 (setcar kkc-current-conversions
528 (1- (length kkc-current-conversions-width))))
529 (kkc-show-conversion-list-update)
530 (kkc-update-conversion))
531 (kkc-setup-current-conversions-width)
532 (kkc-show-conversion-list-update)))
534 ;; Update the conversion list shown in echo area.
535 (defun kkc-show-conversion-list-update ()
536 (or kkc-current-conversions-width
537 (kkc-setup-current-conversions-width))
538 (let* ((current-idx (car kkc-current-conversions))
539 (first-slot (aref kkc-current-conversions-width 0))
540 (this-idx (aref first-slot 0))
541 (next-idx (aref first-slot 1))
542 (msg (aref first-slot 2)))
543 (if (< current-idx this-idx)
544 ;; The currently selected conversion is before the list shown
545 ;; previously. We must start calculation of message width
546 ;; from the start again.
547 (setq this-idx 1 msg nil)
548 (if (>= current-idx next-idx)
549 ;; The currently selected conversion is after the list shown
550 ;; previously. We start calculation of message width from
551 ;; the conversion next of TO.
552 (setq this-idx next-idx msg nil)
553 ;; The current conversion is in MSG. Just clear brackets
554 ;; around index number.
555 (if (string-match "<.>" msg)
557 (aset msg (match-beginning 0) ?\ )
558 (aset msg (1- (match-end 0)) ?\ )))))
560 (let ((len (length kkc-current-conversions))
561 (max-width (window-width (minibuffer-window)))
562 (width-table kkc-current-conversions-width)
565 (max-items (length kkc-show-conversion-list-index-chars))
567 ;; Set THIS-IDX to the first index of conversion to be shown
568 ;; in MSG, and reflect it in kkc-current-conversions-width.
569 (while (<= idx current-idx)
570 (if (and (<= (+ width (aref width-table idx)) max-width)
571 (< (- idx this-idx) max-items))
572 (setq width (+ width (aref width-table idx)))
573 (setq this-idx idx width (aref width-table idx)))
576 (aset first-slot 0 this-idx)
577 ;; Set NEXT-IDX to the next index of the last conversion
578 ;; shown in MSG, and reflect it in
579 ;; kkc-current-conversions-width.
580 (while (and (< idx len)
581 (<= (+ width (aref width-table idx)) max-width)
582 (< (- idx this-idx) max-items))
583 (setq width (+ width (aref width-table idx))
586 (aset first-slot 1 (setq next-idx idx))
587 (setq l (nthcdr this-idx kkc-current-conversions))
588 (setq msg (format " %c %s"
589 (aref kkc-show-conversion-list-index-chars 0)
593 (while (< idx next-idx)
594 (setq msg (format "%s %c %s"
596 (aref kkc-show-conversion-list-index-chars
601 (aset first-slot 2 msg)))
602 (if (> current-idx 0)
604 ;; Highlight the current conversion by brackets.
605 (string-match (format " \\(%c\\) "
606 (aref kkc-show-conversion-list-index-chars
607 (- current-idx this-idx)))
609 (aset msg (match-beginning 0) ?<)
610 (aset msg (1- (match-end 0)) ?>)))
613 ;; Update the conversion area with the latest conversion selected.
614 ;; ALL if non nil means to update the whole area, else update only
615 ;; inside quail-overlay-head.
617 (defun kkc-update-conversion (&optional all)
618 (goto-char (overlay-start kkc-overlay-head))
619 (cond ((= (car kkc-current-conversions) 0) ; Hiragana
621 (while (< i kkc-length-converted)
622 (insert (aref kkc-current-key i))
624 ((= (car kkc-current-conversions) -1) ; Katakana
626 (while (< i kkc-length-converted)
627 (insert (japanese-katakana (aref kkc-current-key i)))
630 (insert (nth (car kkc-current-conversions) kkc-current-conversions))))
631 (delete-region (point) (overlay-start kkc-overlay-tail))
633 (let ((len (length kkc-current-key))
634 (i kkc-length-converted))
635 (delete-region (overlay-start kkc-overlay-tail)
636 (overlay-end kkc-overlay-head))
637 (while (< i kkc-length-head)
638 (if (= (car kkc-current-conversions) -1)
639 (insert (japanese-katakana (aref kkc-current-key i)))
640 (insert (aref kkc-current-key i)))
644 (insert (aref kkc-current-key i))
646 (move-overlay kkc-overlay-head
647 (overlay-start kkc-overlay-head) pos)
648 (delete-region (point) (overlay-end kkc-overlay-tail)))))
650 (run-hook-with-args 'kkc-after-update-conversion-functions
651 (overlay-start kkc-overlay-head)
652 (overlay-end kkc-overlay-head))
653 (goto-char (overlay-end kkc-overlay-tail))))