Mercurial > emacs
annotate leim/quail/uni-input.el @ 75527:24e07613d0c5
*** empty log message ***
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 29 Jan 2007 17:12:38 +0000 |
parents | f5f322eb227f |
children | 43baea8f514b 95d0cdf160ea |
rev | line source |
---|---|
40712 | 1 ;;; uni-input.el --- Hex Unicode input method |
2 | |
75253
f5f322eb227f
Update copyright for years from Emacs 21 to present.
Glenn Morris <rgm@gnu.org>
parents:
75203
diff
changeset
|
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
f5f322eb227f
Update copyright for years from Emacs 21 to present.
Glenn Morris <rgm@gnu.org>
parents:
75203
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
f5f322eb227f
Update copyright for years from Emacs 21 to present.
Glenn Morris <rgm@gnu.org>
parents:
75203
diff
changeset
|
5 ;; Copyright (C) 2004, 2005, 2006, 2007 |
67657 | 6 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
7 ;; Registration Number H14PRO021 | |
40712 | 8 |
9 ;; Author: Dave Love <fx@gnu.org> | |
10 ;; Keywords: i18n | |
11 | |
42320 | 12 ;; This file is part of GNU Emacs. |
13 | |
40712 | 14 ;; This file is free software; you can redistribute it and/or modify |
15 ;; it under the terms of the GNU General Public License as published by | |
16 ;; the Free Software Foundation; either version 2, or (at your option) | |
17 ;; any later version. | |
18 | |
19 ;; This file is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
25 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 26 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 ;; Boston, MA 02110-1301, USA. | |
40712 | 28 |
29 ;;; Commentary: | |
30 | |
31 ;; Provides an input method for entering characters by hex unicode in | |
32 ;; the form `uxxxx', similarly to the Yudit editor. | |
33 | |
34 ;; This is not really a Quail method, but uses some Quail functions. | |
35 ;; There is probably A Better Way. | |
36 | |
37 ;; Compare `ucs-insert', which explicitly inserts a unicoded character | |
38 ;; rather than supplying an input method. | |
39 | |
40 ;;; Code: | |
41 | |
42 (require 'quail) | |
43 | |
44 ;; Maybe stolen from Mule-UCS -- I don't remember. | |
45 (define-ccl-program utf-8-ccl-encode | |
46 `(4 (if (r0 < ?\x80) | |
47 ((write r0)) | |
48 (if (r0 < #x800) | |
49 ((write ((r0 >> 6) | ?\xC0)) | |
50 (write ((r0 & ?\x3F) | ?\x80))) | |
51 (if (r0 < #x10000) | |
52 ((write ((r0 >> 12) | ?\xE0)) | |
53 (write (((r0 >> 6) & ?\x3F) | ?\x80)) | |
54 (write ((r0 & ?\x3F) | ?\x80))) | |
55 (if (r0 < #x200000) | |
56 ((write ((r0 >> 18) | ?\xF0)) | |
49793
3994dfe96c97
(utf-8-ccl-encode): Fix use of character constants.
Juanma Barranquero <lekktu@gmail.com>
parents:
42320
diff
changeset
|
57 (write (((r0 >> 12) & ?\x3F) | ?\x80)) |
40712 | 58 (write (((r0 >> 6) & ?\x3F) | ?\x80)) |
59 (write ((r0 & ?\x3F) | ?\x80))) | |
60 (if (r0 < #x4000000) | |
61 ((write ((r0 >> 24) | ?\xF8)) | |
62 (write (((r0 >> 18) & ?\x3F) | ?\x80)) | |
63 (write (((r0 >> 12) & ?\x3F) | ?\x80)) | |
64 (write (((r0 >> 6) & ?\x3F) | ?\x80)) | |
49793
3994dfe96c97
(utf-8-ccl-encode): Fix use of character constants.
Juanma Barranquero <lekktu@gmail.com>
parents:
42320
diff
changeset
|
65 (write ((r0 & ?\x3F) | ?\x80))) |
40712 | 66 ((write ((r0 >> 30) | ?\xFC)) |
67 (write (((r0 >> 24) & ?\x3F) | ?\x80)) | |
68 (write (((r0 >> 18) & ?\x3F) | ?\x80)) | |
69 (write (((r0 >> 12) & ?\x3F) | ?\x80)) | |
70 (write (((r0 >> 6) & ?\x3F) | ?\x80)) | |
49793
3994dfe96c97
(utf-8-ccl-encode): Fix use of character constants.
Juanma Barranquero <lekktu@gmail.com>
parents:
42320
diff
changeset
|
71 (write ((r0 & ?\x3F) | ?\x80)))))))))) |
40712 | 72 |
57180
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
73 (defun ucs-input-insert-char (char) |
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
74 (insert char) |
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
75 (move-overlay quail-overlay (overlay-start quail-overlay) (point))) |
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
76 |
40712 | 77 (defun ucs-input-method (key) |
78 (if (or buffer-read-only | |
79 (and (/= key ?U) (/= key ?u))) | |
80 (list key) | |
81 (quail-setup-overlays nil) | |
57180
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
82 (ucs-input-insert-char key) |
40712 | 83 (let ((modified-p (buffer-modified-p)) |
84 (buffer-undo-list t) | |
85 (input-method-function nil) | |
86 (echo-keystrokes 0) | |
87 (help-char nil) | |
88 (events (list key)) | |
89 (str " ")) | |
90 (unwind-protect | |
91 (catch 'non-digit | |
92 (progn | |
93 (dotimes (i 4) | |
94 (let ((seq (read-key-sequence nil)) | |
95 key) | |
96 (if (and (stringp seq) | |
97 (= 1 (length seq)) | |
98 (setq key (aref seq 0)) | |
99 (memq key '(?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9 ?a | |
100 ?b ?c ?d ?e ?f ?A ?B ?C ?D ?E ?F))) | |
101 (progn | |
102 (push key events) | |
57180
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
103 (ucs-input-insert-char key)) |
40712 | 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))) | |
110 16)) | |
75203
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
111 (c (decode-char 'ucs n))) |
40712 | 112 (if c |
113 (list c) | |
75203
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
114 ;; The intention of the following code is to insert |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
115 ;; a correct UTF-8 sequence by raw bytes, but |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
116 ;; currently it doesn't work. |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
117 ;; (let ((status (make-vector 9 nil))) |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
118 ;; (aset status 0 n) |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
119 ;; (string-to-list (ccl-execute-on-string |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
120 ;; 'utf-8-ccl-encode status ""))) |
814b3ff94f47
(ucs-input-method): Signal an error for a
Kenichi Handa <handa@m17n.org>
parents:
74605
diff
changeset
|
121 (error "Character U+%04X is not yet supported" n))))) |
40712 | 122 (quail-delete-overlays) |
123 (set-buffer-modified-p modified-p) | |
124 (run-hooks 'input-method-after-insert-chunk-hook))))) | |
125 | |
126 (defun ucs-input-activate (&optional arg) | |
127 "Activate UCS input method. | |
128 With arg, activate UCS input method if and only if arg is positive. | |
129 | |
130 While this input method is active, the variable | |
131 `input-method-function' is bound to the function `ucs-input-method'." | |
132 (if (and arg | |
133 (< (prefix-numeric-value arg) 0)) | |
134 (unwind-protect | |
135 (progn | |
57180
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
136 (quail-hide-guidance) |
40712 | 137 (quail-delete-overlays) |
138 (setq describe-current-input-method-function nil)) | |
139 (kill-local-variable 'input-method-function)) | |
140 (setq inactivate-current-input-method-function 'ucs-input-inactivate) | |
141 (setq describe-current-input-method-function 'ucs-input-help) | |
142 (quail-delete-overlays) | |
143 (if (eq (selected-window) (minibuffer-window)) | |
144 (add-hook 'minibuffer-exit-hook 'quail-exit-from-minibuffer)) | |
145 (set (make-local-variable 'input-method-function) | |
146 'ucs-input-method))) | |
147 | |
148 (defun ucs-input-inactivate () | |
149 "Inactivate UCS input method." | |
150 (interactive) | |
151 (ucs-input-activate -1)) | |
152 | |
153 (defun ucs-input-help () | |
154 (interactive) | |
155 (with-output-to-temp-buffer "*Help*" | |
156 (princ "\ | |
74538
dc4eb942b3a5
(ucs-input-help): Fix title of ucs input method.
Juanma Barranquero <lekktu@gmail.com>
parents:
72860
diff
changeset
|
157 Input method: ucs (mode line indicator:U+) |
40712 | 158 |
159 Input as Unicode: U<hex> or u<hex>, where <hex> is a four-digit hex number."))) | |
160 | |
57180
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
161 ;; The file ../leim-ext.el contains the following call. |
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
162 ;; (register-input-method "ucs" "UTF-8" 'ucs-input-activate "U+" |
5afba9a35578
Move the call of register-input-method to leim-ext.el.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
163 ;; "Unicode input as hex in the form Uxxxx.") |
40712 | 164 |
165 (provide 'uni-input) | |
166 | |
52401 | 167 ;;; arch-tag: e0d91c7c-19a1-43d3-8f2b-28c0e031efaa |
40712 | 168 ;;; uni-input.el ends here |