6000
|
1 ;;; double.el - Support for keyboard remapping with double clicking.
|
|
2
|
|
3 ;; Copyright (C) 1994 Per Abrahamsen.
|
|
4
|
|
5 ;; Author: Per Abrahamsen <abraham@iesd.auc.dk>
|
|
6 ;; Version: $Id: double.el,v 5.2 1994/02/03 17:18:49 amanda Exp $
|
|
7 ;; Keywords: i18n
|
|
8 ;; Bogus-Bureaucratic-Cruft: How 'bout ESR and the LCD people agreed
|
|
9 ;; on a common format?
|
|
10
|
|
11 ;; LCD Archive Entry:
|
|
12 ;; double|Per Abrahamsen|abraham@iesd.auc.dk|
|
|
13 ;; Support keyboard remapping with double clicking|
|
|
14 ;; $Date: 1994/02/03 17:18:49 $|$Revision: 5.2 $|~/modes/double.el.Z|
|
|
15 ;;
|
|
16 ;; This program is free software; you can redistribute it and/or modify
|
|
17 ;; it under the terms of the GNU General Public License as published by
|
|
18 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
19 ;; any later version.
|
|
20 ;;
|
|
21 ;; This program is distributed in the hope that it will be useful,
|
|
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
24 ;; GNU General Public License for more details.
|
|
25 ;;
|
|
26 ;; You should have received a copy of the GNU General Public License
|
|
27 ;; along with this program; if not, write to the Free Software
|
|
28 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
29
|
|
30 ;;; Commentary:
|
|
31
|
|
32 ;; This mode is intended for use with languages that adds a small
|
|
33 ;; number of extra letters not available on the keyboard.
|
|
34 ;;
|
|
35 ;; Examples includes Scandinavian and German with an US keyboard.
|
|
36 ;;
|
|
37 ;; The idea is that certain keys are overloaded. When you press it
|
|
38 ;; once it will insert one string, and when you press it twice the
|
|
39 ;; string will be replaced by another. This can be used for mapping
|
|
40 ;; keys on a US keyboard to generate characters according to the local
|
|
41 ;; keyboard convention when pressed once, and according to US keyboard
|
|
42 ;; convetion when pressed twice.
|
|
43 ;;
|
|
44 ;; To use this mode, you must define the variable `double-map' and
|
|
45 ;; then enable double mode with `M-x double-mode'. Read the
|
|
46 ;; documentation for both of them.
|
|
47 ;;
|
|
48 ;; The default mapping is for getting Danish/Norwegian keyboard layout
|
|
49 ;; using ISO Latin 1 on a US keyboard.
|
|
50 ;;
|
|
51 ;; Requires FSF Emacs 19.20 or later.
|
|
52 ;;
|
|
53 ;; Imprtant node: While I would like to hear comments, bug reports,
|
|
54 ;; suggestions, please do @strong{not} expect me to put other mappings
|
|
55 ;; that the default into this file. There are billions and billions
|
|
56 ;; of such mappings, and just supporting the most common would
|
|
57 ;; increase the size of this nice small file manyfold.
|
|
58
|
|
59 ;;; ChangeLog:
|
|
60
|
|
61 ;; * 1994-02-03 Per Abrahamsen
|
|
62 ;; Created.
|
|
63
|
|
64 ;;; Code:
|
|
65
|
|
66 (defvar double-map
|
|
67 '((?\; "\346" ";")
|
|
68 (?\' "\370" "'")
|
|
69 (?\[ "\345" "[")
|
|
70 (?\: "\306" ":")
|
|
71 (?\" "\330" "\"")
|
|
72 (?\{ "\305" "{"))
|
|
73 "Alist of key translations activated by double mode.
|
|
74
|
|
75 Each entry is a list with three elements:
|
|
76 1. The key activating the translation.
|
|
77 2. The string to be inserted when the key is pressed once.
|
|
78 3. The string to be inserted when the key is pressed twice.")
|
|
79
|
|
80 ;;; Read Event
|
|
81
|
|
82 (defvar double-last-event nil)
|
|
83 ;; The last key that generated a double key event.
|
|
84
|
|
85 (defun double-read-event (prompt)
|
|
86 ;; Read an event
|
|
87 (if isearch-mode (isearch-update))
|
|
88 (if prompt
|
|
89 (prog2 (message "%s%c" prompt double-last-event)
|
|
90 (read-event)
|
|
91 (message ""))
|
|
92 (read-event)))
|
|
93
|
|
94 (global-set-key [ ignore ] '(lambda () (interactive)))
|
|
95
|
|
96 (or (boundp 'isearch-mode-map)
|
|
97 (load-library "isearch"))
|
|
98
|
|
99 (define-key isearch-mode-map [ ignore ]
|
|
100 (function (lambda () (interactive) (isearch-update))))
|
|
101
|
|
102 (defun double-translate-key (prompt)
|
|
103 ;; Translate input events using double map.
|
|
104 (let ((key last-input-char))
|
|
105 (cond (unread-command-events
|
|
106 ;; Artificial event, ignore it.
|
|
107 (vector key))
|
|
108 ((eq key 'magic-start)
|
|
109 ;; End of generated event. See if he will repeat it...
|
|
110 (let ((new (double-read-event prompt))
|
|
111 (entry (assoc double-last-event double-map)))
|
|
112 (if (eq new double-last-event)
|
|
113 (progn
|
|
114 (setq unread-command-events
|
|
115 (append (make-list (1- (length (nth 1 entry)))
|
|
116 'delete)
|
|
117 (nth 2 entry)
|
|
118 '(magic-end)))
|
|
119 (vector 127))
|
|
120 (setq unread-command-events (list new))
|
|
121 [ ignore ])))
|
|
122 ((eq key 'magic-end)
|
|
123 ;; End of double event. Ignore.
|
|
124 [ ignore ])
|
|
125 (t
|
|
126 ;; New key.
|
|
127 (let ((exp (nth 1 (assoc key double-map))))
|
|
128 (setq double-last-event key)
|
|
129 (setq unread-command-events
|
|
130 (append (substring exp 1) '(magic-start)))
|
|
131 (vector (aref exp 0)))))))
|
|
132
|
|
133 ;;; Key Translation Map
|
|
134
|
|
135 (defvar default-key-translation-map
|
|
136 (or key-translation-map (make-sparse-keymap))
|
|
137 "Key translation you want to have effect, regardless of double mode.
|
|
138 This will default to the value of `key-translation-map' when double was
|
|
139 first loaded.")
|
|
140
|
|
141 (make-variable-buffer-local 'key-translation-map)
|
|
142
|
|
143 (defun double-setup ()
|
|
144 ;; Setup key-translation-map as indicated by `double-map'.
|
|
145 (setq key-translation-map (copy-keymap default-key-translation-map))
|
|
146 (mapcar (function (lambda (entry)
|
|
147 (define-key key-translation-map (vector (nth 0 entry))
|
|
148 'double-translate-key)))
|
|
149 (append double-map '((magic-start) (magic-end)))))
|
|
150
|
|
151 ;;; Mode
|
|
152
|
|
153 (defvar double-mode nil)
|
|
154 ;; Indicator for the double mode.
|
|
155 (make-variable-buffer-local 'double-mode)
|
|
156
|
|
157 (or (assq 'double-mode minor-mode-alist)
|
|
158 (setq minor-mode-alist
|
|
159 (cons '(double-mode (" " double-mode-name)) minor-mode-alist)))
|
|
160
|
|
161 (defvar double-mode-name "Double")
|
|
162 ;; Name of current double mode.
|
|
163 (make-variable-buffer-local 'double-mode-name)
|
|
164
|
|
165 ;;;###autoload
|
|
166 (defun double-mode (arg)
|
|
167 "Toggle double mode.
|
|
168 With prefix arg, turn double mode on iff arg is positive.
|
|
169
|
|
170 When double mode is on, some keys will insert will insert different
|
|
171 strings when pressed twice. See variable `double-map' for details."
|
|
172 (interactive "P")
|
|
173 (if (or (and (null arg) double-mode)
|
|
174 (<= (prefix-numeric-value arg) 0))
|
|
175 ;; Turn it off
|
|
176 (if double-mode
|
|
177 (progn
|
|
178 (let ((double-map))
|
|
179 (double-setup))
|
|
180 (setq double-mode nil)
|
|
181 (set-buffer-modified-p (buffer-modified-p))))
|
|
182 ;;Turn it on
|
|
183 (if double-mode
|
|
184 ()
|
|
185 (double-setup)
|
|
186 (setq double-mode t)
|
|
187 (set-buffer-modified-p (buffer-modified-p)))))
|
|
188
|
|
189 (provide 'double)
|
|
190
|
|
191 ;;; double.el ends here
|
|
192
|