(Fread_file_name): Correct handling of dollars in file
[bpt/emacs.git] / lisp / double.el
CommitLineData
be010748 1;;; double.el --- Support for keyboard remapping with double clicking
fc429cfe 2
7cda860e 3;; Copyright (C) 1994, 1997, 1998 Free Software Foundation, Inc.
fc429cfe 4
3efc86ef 5;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
fc429cfe 6;; Keywords: i18n
fc429cfe 7
70d949ea
RS
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
fc429cfe
RS
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)
13;; any later version.
70d949ea
RS
14
15;; GNU Emacs is distributed in the hope that it will be useful,
fc429cfe
RS
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.
70d949ea 19
fc429cfe 20;; You should have received a copy of the GNU General Public License
b578f267
EN
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.
fc429cfe
RS
24
25;;; Commentary:
26
27;; This mode is intended for use with languages that adds a small
28;; number of extra letters not available on the keyboard.
29;;
30;; Examples includes Scandinavian and German with an US keyboard.
31;;
32;; The idea is that certain keys are overloaded. When you press it
33;; once it will insert one string, and when you press it twice the
34;; string will be replaced by another. This can be used for mapping
35;; keys on a US keyboard to generate characters according to the local
36;; keyboard convention when pressed once, and according to US keyboard
a7acbbe4 37;; convention when pressed twice.
fc429cfe
RS
38;;
39;; To use this mode, you must define the variable `double-map' and
40;; then enable double mode with `M-x double-mode'. Read the
41;; documentation for both of them.
42;;
43;; The default mapping is for getting Danish/Norwegian keyboard layout
44;; using ISO Latin 1 on a US keyboard.
45;;
a7acbbe4 46;; Important node: While I would like to hear comments, bug reports,
fc429cfe 47;; suggestions, please do @strong{not} expect me to put other mappings
a7acbbe4 48;; than the default into this file. There are billions and billions
fc429cfe
RS
49;; of such mappings, and just supporting the most common would
50;; increase the size of this nice small file manyfold.
51
fc429cfe
RS
52;;; Code:
53
7b33b170
KH
54(defgroup double nil
55 "Remap keyboard, but get original by typing the same key twice."
56 :group 'i18n)
57
58(defcustom double-map
fc429cfe
RS
59 '((?\; "\346" ";")
60 (?\' "\370" "'")
61 (?\[ "\345" "[")
62 (?\: "\306" ":")
63 (?\" "\330" "\"")
64 (?\{ "\305" "{"))
65 "Alist of key translations activated by double mode.
66
67Each entry is a list with three elements:
681. The key activating the translation.
692. The string to be inserted when the key is pressed once.
7b33b170
KH
703. The string to be inserted when the key is pressed twice."
71 :group 'double
72 :type '(repeat (list (character :tag "Key")
73 (string :tag "Once")
74 (string :tag "Twice"))))
fc429cfe 75
7b33b170 76(defcustom double-prefix-only t
48a0ae63 77 "*Non-nil means that Double mode mapping only works for prefix keys.
5867a409 78That is, for any key `X' in `double-map', `X' alone will be mapped
7b33b170
KH
79but not `C-u X' or `ESC X' since the X is not the prefix key."
80 :group 'double
81 :type 'boolean)
5867a409 82
fc429cfe
RS
83;;; Read Event
84
85(defvar double-last-event nil)
86;; The last key that generated a double key event.
87
88(defun double-read-event (prompt)
89 ;; Read an event
90 (if isearch-mode (isearch-update))
91 (if prompt
92 (prog2 (message "%s%c" prompt double-last-event)
93 (read-event)
94 (message ""))
95 (read-event)))
96
f55e5c6b 97(global-set-key [ignore] '(lambda () (interactive)))
fc429cfe
RS
98
99(or (boundp 'isearch-mode-map)
100 (load-library "isearch"))
101
f55e5c6b 102(define-key isearch-mode-map [ignore]
fc429cfe
RS
103 (function (lambda () (interactive) (isearch-update))))
104
105(defun double-translate-key (prompt)
106 ;; Translate input events using double map.
107 (let ((key last-input-char))
108 (cond (unread-command-events
109 ;; Artificial event, ignore it.
110 (vector key))
5867a409
RS
111 ((and double-prefix-only
112 (> (length (this-command-keys)) 1))
113 ;; This is not a prefix key, ignore it.
114 (vector key))
fc429cfe
RS
115 ((eq key 'magic-start)
116 ;; End of generated event. See if he will repeat it...
117 (let ((new (double-read-event prompt))
118 (entry (assoc double-last-event double-map)))
119 (if (eq new double-last-event)
120 (progn
121 (setq unread-command-events
122 (append (make-list (1- (length (nth 1 entry)))
f55e5c6b 123 127)
fc429cfe
RS
124 (nth 2 entry)
125 '(magic-end)))
126 (vector 127))
127 (setq unread-command-events (list new))
f55e5c6b 128 [ignore])))
fc429cfe
RS
129 ((eq key 'magic-end)
130 ;; End of double event. Ignore.
f55e5c6b 131 [ignore])
fc429cfe
RS
132 (t
133 ;; New key.
134 (let ((exp (nth 1 (assoc key double-map))))
135 (setq double-last-event key)
136 (setq unread-command-events
137 (append (substring exp 1) '(magic-start)))
138 (vector (aref exp 0)))))))
139
140;;; Key Translation Map
141
7cda860e
RS
142(defun double-setup (enable-flag)
143 (if enable-flag
144 (progn
145 ;; Set up key-translation-map as indicated by `double-map'.
146 (kill-local-variable 'key-translation-map)
147 (make-local-variable 'key-translation-map)
a4e59635
RS
148 (setq key-translation-map (if (keymapp key-translation-map)
149 (copy-keymap key-translation-map)
150 (make-sparse-keymap)))
7cda860e
RS
151 (mapcar (function (lambda (entry)
152 (define-key key-translation-map
153 (vector (nth 0 entry))
154 'double-translate-key)))
155 (append double-map '((magic-start) (magic-end)))))
156 (kill-local-variable 'key-translation-map)))
fc429cfe
RS
157
158;;; Mode
159
160(defvar double-mode nil)
161;; Indicator for the double mode.
162 (make-variable-buffer-local 'double-mode)
163
164(or (assq 'double-mode minor-mode-alist)
165 (setq minor-mode-alist
48a0ae63 166 (cons '(double-mode " Double") minor-mode-alist)))
fc429cfe 167
48a0ae63
RS
168;; This feature seemed useless and it confused describe-mode,
169;; so I deleted it.
170;;;(defvar double-mode-name "Double")
171;;;;; Name of current double mode.
172;;; (make-variable-buffer-local 'double-mode-name)
fc429cfe
RS
173
174;;;###autoload
175(defun double-mode (arg)
48a0ae63
RS
176 "Toggle Double mode.
177With prefix arg, turn Double mode on iff arg is positive.
fc429cfe 178
e6f1da19
KH
179When Double mode is on, some keys will insert different strings
180when pressed twice. See variable `double-map' for details."
fc429cfe
RS
181 (interactive "P")
182 (if (or (and (null arg) double-mode)
183 (<= (prefix-numeric-value arg) 0))
184 ;; Turn it off
185 (if double-mode
186 (progn
187 (let ((double-map))
7cda860e 188 (double-setup nil))
fc429cfe 189 (setq double-mode nil)
e6f1da19 190 (force-mode-line-update)))
fc429cfe
RS
191 ;;Turn it on
192 (if double-mode
193 ()
7cda860e 194 (double-setup t)
fc429cfe 195 (setq double-mode t)
e6f1da19 196 (force-mode-line-update))))
fc429cfe
RS
197
198(provide 'double)
199
200;;; double.el ends here
201