1 ;;; uni-input.el --- Hex Unicode input method
3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
8 ;; This file is part of GNU Emacs.
10 ;; This file 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 ;; This file 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
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; Provides an input method for entering characters by hex unicode in
28 ;; the form `uxxxx', similarly to the Yudit editor.
30 ;; This is not really a Quail method, but uses some Quail functions.
31 ;; There is probably A Better Way.
33 ;; Compare `ucs-insert', which explicitly inserts a unicoded character
34 ;; rather than supplying an input method.
40 ;; Maybe stolen from Mule-UCS -- I don't remember.
41 (define-ccl-program utf-8-ccl-encode
45 ((write ((r0 >> 6) | ?
\xC0))
46 (write ((r0 & ?
\x3F) | ?
\x80)))
48 ((write ((r0 >> 12) | ?
\xE0))
49 (write (((r0 >> 6) & ?
\x3F) | ?
\x80))
50 (write ((r0 & ?
\x3F) | ?
\x80)))
52 ((write ((r0 >> 18) | ?
\xF0))
53 (write (((r0 >> 12) & ?\
3F
) | ?
\x80))
54 (write (((r0 >> 6) & ?
\x3F) | ?
\x80))
55 (write ((r0 & ?
\x3F) | ?
\x80)))
57 ((write ((r0 >> 24) | ?
\xF8))
58 (write (((r0 >> 18) & ?
\x3F) | ?
\x80))
59 (write (((r0 >> 12) & ?
\x3F) | ?
\x80))
60 (write (((r0 >> 6) & ?
\x3F) | ?
\x80))
61 (write ((r0 & ?
\x3f) | ?
\x80)))
62 ((write ((r0 >> 30) | ?
\xFC))
63 (write (((r0 >> 24) & ?
\x3F) | ?
\x80))
64 (write (((r0 >> 18) & ?
\x3F) | ?
\x80))
65 (write (((r0 >> 12) & ?
\x3F) | ?
\x80))
66 (write (((r0 >> 6) & ?
\x3F) | ?
\x80))
67 (write ((r0 & ?
\x3f) | ?
\x80))))))))))
69 (defun ucs-input-method (key)
70 (if (or buffer-read-only
71 (and (/= key ?U
) (/= key ?u
)))
73 (quail-setup-overlays nil
)
74 (let ((current-prefix-arg)
75 (last-command-char key
))
76 (call-interactively 'self-insert-command
))
77 (let ((modified-p (buffer-modified-p))
79 (input-method-function nil
)
88 (let ((seq (read-key-sequence nil
))
90 (if (and (stringp seq
)
92 (setq key
(aref seq
0))
93 (memq key
'(?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9 ?a
94 ?b ?c ?d ?e ?f ?A ?B ?C ?D ?E ?F
)))
97 (let ((last-command-char key
)
99 (call-interactively 'self-insert-command
)))
100 (let ((last-command-char key
)
101 (current-prefix-arg))
103 (call-interactively (key-binding seq
))))
104 (quail-delete-region)
105 (throw 'non-digit
(append (reverse events
)
106 (listify-key-sequence seq
))))))
107 (quail-delete-region)
108 (let* ((n (string-to-number (apply 'string
109 (cdr (nreverse events
)))
111 (c (decode-char 'ucs n
))
112 (status (make-vector 9 nil
)))
116 (string-to-list (ccl-execute-on-string
117 'utf-8-ccl-encode status
""))))))
118 (quail-delete-overlays)
119 (set-buffer-modified-p modified-p
)
120 (run-hooks 'input-method-after-insert-chunk-hook
)))))
122 (defun ucs-input-activate (&optional arg
)
123 "Activate UCS input method.
124 With arg, activate UCS input method if and only if arg is positive.
126 While this input method is active, the variable
127 `input-method-function' is bound to the function `ucs-input-method'."
129 (< (prefix-numeric-value arg
) 0))
132 (quail-hide-guidance-buf)
133 (quail-delete-overlays)
134 (setq describe-current-input-method-function nil
))
135 (kill-local-variable 'input-method-function
))
136 (setq inactivate-current-input-method-function
'ucs-input-inactivate
)
137 (setq describe-current-input-method-function
'ucs-input-help
)
138 (quail-delete-overlays)
139 (if (eq (selected-window) (minibuffer-window))
140 (add-hook 'minibuffer-exit-hook
'quail-exit-from-minibuffer
))
141 (add-hook 'kill-buffer-hook
'quail-kill-guidance-buf nil t
)
142 (set (make-local-variable 'input-method-function
)
145 (defun ucs-input-inactivate ()
146 "Inactivate UCS input method."
148 (ucs-input-activate -
1))
150 (defun ucs-input-help ()
152 (with-output-to-temp-buffer "*Help*"
154 Input method: ucs (mode line indicator:U)
156 Input as Unicode: U<hex> or u<hex>, where <hex> is a four-digit hex number.")))
158 (register-input-method "ucs" "UTF-8" 'ucs-input-activate
"U+"
159 "Unicode input as hex in the form Uxxxx.")
163 ;;; uni-input.el ends here