10690
|
1 ;;; edt-mapper.el --- Create an EDT LK-201 Map File for X-Windows Emacs.
|
|
2
|
|
3 ;;; For GNU Emacs 19
|
|
4
|
11234
|
5 ;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
10690
|
6
|
|
7 ;; Author: Kevin Gallagher <kgallagh@spd.dsccc.com>
|
|
8 ;; Maintainer: Kevin Gallagher <kgallagh@spd.dsccc.com>
|
|
9 ;; Keywords: emulations
|
|
10
|
10691
|
11 ;; This file is part of GNU Emacs.
|
10690
|
12
|
|
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
14 ;; it under the terms of the GNU General Public License as published by
|
|
15 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
16 ;; any later version.
|
|
17
|
|
18 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21 ;; GNU General Public License for more details.
|
|
22
|
|
23 ;; You should have received a copy of the GNU General Public License
|
|
24 ;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; This emacs lisp program can be used to create an emacs lisp file
|
|
30 ;; that defines the mapping of the user's keyboard under X-Windows to
|
|
31 ;; the LK-201 keyboard function keys and keypad keys (around which
|
|
32 ;; EDT has been designed). Please read the "Usage" AND "Known
|
|
33 ;; Problems" sections before attempting to run this program. (The
|
|
34 ;; design of this file, edt-mapper.el, was heavily influenced by
|
|
35 ;; tpu-mapper.el.)
|
|
36
|
|
37 ;;; Usage:
|
|
38
|
|
39 ;; Simply load this file into the X-Windows version of emacs (version 19)
|
|
40 ;; using the following command.
|
|
41
|
|
42 ;; emacs -q -l edt-mapper.el
|
|
43
|
|
44 ;; The "-q" option prevents loading of your .emacs file (commands therein
|
|
45 ;; might confuse this program).
|
|
46
|
|
47 ;; An instruction screen showing the typical LK-201 terminal functions keys
|
|
48 ;; will be displayed, and you will be prompted to press the keys on your
|
|
49 ;; keyboard which you want to emulate the corresponding LK-201 keys.
|
|
50
|
|
51 ;; Finally, you will be prompted for the name of the file to store
|
|
52 ;; the key definitions. If you chose the default, it will be found
|
|
53 ;; and loaded automatically when the EDT emulation is started. If
|
|
54 ;; you specify a different file name, you will need to set the
|
|
55 ;; variable "edt-xkeys-file" before starting the EDT emulation.
|
|
56 ;; Here's how you might go about doing that in your .emacs file.
|
|
57
|
|
58 ;; (setq edt-xkeys-file (expand-file-name "~/.my-emacs-x-keys"))
|
|
59
|
|
60 ;;; Known Problems:
|
|
61
|
|
62 ;; Sometimes, edt-mapper will ignore a key you press, and just continue to
|
|
63 ;; prompt for the same key. This can happen when your window manager sucks
|
|
64 ;; up the key and doesn't pass it on to emacs, or it could be an emacs bug.
|
|
65 ;; Either way, there's nothing that edt-mapper can do about it. You must
|
|
66 ;; press RETURN, to skip the current key and continue. Later, you and/or
|
|
67 ;; your local X guru can try to figure out why the key is being ignored.
|
|
68
|
|
69 ;; ====================================================================
|
|
70
|
|
71 ;;;
|
|
72 ;;; Make sure we're running X-windows and Emacs version 19
|
|
73 ;;;
|
|
74 (cond
|
|
75 ((not (and window-system (not (string-lessp emacs-version "19"))))
|
|
76 (insert "
|
|
77
|
|
78 Whoa! This isn't going to work...
|
|
79
|
|
80 You must run edt-mapper.el under X-windows and Emacs version 19.
|
|
81
|
|
82 Press any key to exit. ")
|
|
83 (sit-for 600)
|
|
84 (kill-emacs t)))
|
|
85
|
|
86
|
|
87 ;;;
|
|
88 ;;; Decide whether we're running GNU or Lucid emacs.
|
|
89 ;;;
|
|
90 (defconst edt-lucid-emacs19-p (string-match "Lucid" emacs-version)
|
|
91 "Non-NIL if we are running Lucid Emacs version 19.")
|
|
92
|
|
93
|
|
94 ;;;
|
|
95 ;;; Key variables
|
|
96 ;;;
|
|
97 (defvar edt-key nil)
|
|
98 (defvar edt-enter nil)
|
|
99 (defvar edt-return nil)
|
|
100 (defvar edt-key-seq nil)
|
|
101 (defvar edt-enter-seq nil)
|
|
102 (defvar edt-return-seq nil)
|
|
103
|
|
104
|
|
105 ;;;
|
|
106 ;;; Make sure the window is big enough to display the instructions
|
|
107 ;;;
|
|
108 (if edt-lucid-emacs19-p (set-screen-size nil 80 36)
|
|
109 (set-frame-size (selected-frame) 80 36))
|
|
110
|
|
111
|
|
112 ;;;
|
|
113 ;;; Create buffers - Directions and Keys
|
|
114 ;;;
|
|
115 (if (not (get-buffer "Directions")) (generate-new-buffer "Directions"))
|
|
116 (if (not (get-buffer "Keys")) (generate-new-buffer "Keys"))
|
|
117
|
|
118 ;;;
|
|
119 ;;; Put header in the Keys buffer
|
|
120 ;;;
|
|
121 (set-buffer "Keys")
|
|
122 (insert "\
|
|
123 ;;
|
|
124 ;; Key definitions for the EDT emulation within GNU Emacs
|
|
125 ;;
|
|
126
|
|
127 (defconst *EDT-keys*
|
|
128 '(
|
|
129 ")
|
|
130
|
|
131 ;;;
|
|
132 ;;; Display directions
|
|
133 ;;;
|
|
134 (switch-to-buffer "Directions")
|
|
135 (insert "
|
|
136 EDT MAPPER
|
|
137
|
|
138 You will be asked to press keys to create a custom mapping (under
|
|
139 X-Windows) of your keypad keys and function keys so that they can emulate
|
|
140 the LK-201 keypad and function keys or the subset of keys found on a
|
|
141 VT-100 series terminal keyboard. (The LK-201 keyboard is the standard
|
|
142 keyboard attached to VT-200 series terminals, and above.)
|
|
143
|
|
144 Sometimes, edt-mapper will ignore a key you press, and just continue to
|
|
145 prompt for the same key. This can happen when your window manager sucks
|
|
146 up the key and doesn't pass it on to emacs, or it could be an emacs bug.
|
|
147 Either way, there's nothing that edt-mapper can do about it. You must
|
|
148 press RETURN, to skip the current key and continue. Later, you and/or
|
|
149 your local X guru can try to figure out why the key is being ignored.
|
|
150
|
|
151 Start by pressing the RETURN key, and continue by pressing the keys
|
|
152 specified in the mini-buffer. If you want to entirely omit a key,
|
|
153 because your keyboard does not have a corresponding key, for example,
|
|
154 just press RETURN at the prompt.
|
|
155
|
|
156 ")
|
|
157 (delete-other-windows)
|
|
158
|
|
159 ;;;
|
|
160 ;;; Save <CR> for future reference
|
|
161 ;;;
|
|
162 (cond
|
|
163 (edt-lucid-emacs19-p
|
|
164 (setq edt-return-seq (read-key-sequence "Hit carriage-return <CR> to continue "))
|
|
165 (setq edt-return (concat "[" (format "%s" (event-key (aref edt-return-seq 0))) "]")))
|
|
166 (t
|
|
167 (message "Hit carriage-return <CR> to continue ")
|
|
168 (setq edt-return-seq (read-event))
|
|
169 (setq edt-return (concat "[" (format "%s" edt-return-seq) "]"))))
|
|
170
|
|
171 ;;;
|
|
172 ;;; Display Keypad Diagram and Begin Prompting for Keys
|
|
173 ;;;
|
|
174 (set-buffer "Directions")
|
|
175 (delete-region (point-min) (point-max))
|
|
176 (insert "
|
|
177
|
|
178
|
|
179
|
|
180 PRESS THE KEY SPECIFIED IN THE MINIBUFFER BELOW.
|
|
181
|
|
182
|
|
183
|
|
184
|
|
185 Here's a picture of the standard LK-201 keypad for reference:
|
|
186
|
|
187 _______________________ _______________________________
|
|
188 | HELP | DO | | F17 | F18 | F19 | F20 |
|
|
189 | | | | | | | |
|
|
190 |_______|_______________| |_______|_______|_______|_______|
|
|
191 _______________________ _______________________________
|
|
192 | FIND |INSERT |REMOVE | | PF1 | PF2 | PF3 | PF4 |
|
|
193 | | | | | | | | |
|
|
194 |_______|_______|_______| |_______|_______|_______|_______|
|
|
195 |SELECT |PREVIOU| NEXT | | KP7 | KP8 | KP9 | KP- |
|
|
196 | | | | | | | | |
|
|
197 |_______|_______|_______| |_______|_______|_______|_______|
|
|
198 | UP | | KP4 | KP5 | KP6 | KP, |
|
|
199 | | | | | | |
|
|
200 _______|_______|_______ |_______|_______|_______|_______|
|
|
201 | LEFT | DOWN | RIGHT | | KP1 | KP2 | KP3 | |
|
|
202 | | | | | | | | |
|
|
203 |_______|_______|_______| |_______|_______|_______| KPE |
|
|
204 | KP0 | KPP | |
|
|
205 | | | |
|
|
206 |_______________|_______|_______|
|
|
207
|
|
208 ")
|
|
209
|
|
210 ;;;
|
|
211 ;;; Key mapping functions
|
|
212 ;;;
|
|
213 (defun edt-lucid-map-key (ident descrip func gold-func)
|
|
214 (interactive)
|
|
215 (setq edt-key-seq (read-key-sequence (format "Press %s%s: " ident descrip)))
|
|
216 (setq edt-key (concat "[" (format "%s" (event-key (aref edt-key-seq 0))) "]"))
|
|
217 (cond ((not (equal edt-key edt-return))
|
|
218 (set-buffer "Keys")
|
|
219 (insert (format " (\"%s\" . %s)\n" ident edt-key))
|
|
220 (set-buffer "Directions"))
|
|
221 ;; bogosity to get next prompt to come up, if the user hits <CR>!
|
|
222 ;; check periodically to see if this is still needed...
|
|
223 (t
|
|
224 (format "%s" edt-key)))
|
|
225 edt-key)
|
|
226
|
|
227 (defun edt-gnu-map-key (ident descrip)
|
|
228 (interactive)
|
|
229 (message "Press %s%s: " ident descrip)
|
|
230 (setq edt-key-seq (read-event))
|
|
231 (setq edt-key (concat "[" (format "%s" edt-key-seq) "]"))
|
|
232 (cond ((not (equal edt-key edt-return))
|
|
233 (set-buffer "Keys")
|
|
234 (insert (format " (\"%s\" . %s)\n" ident edt-key))
|
|
235 (set-buffer "Directions"))
|
|
236 ;; bogosity to get next prompt to come up, if the user hits <CR>!
|
|
237 ;; check periodically to see if this is still needed...
|
|
238 (t
|
|
239 (set-buffer "Keys")
|
|
240 (insert (format " (\"%s\" . \"\" )\n" ident))
|
|
241 (set-buffer "Directions")))
|
|
242 edt-key)
|
|
243
|
|
244 (fset 'edt-map-key (if edt-lucid-emacs19-p 'edt-lucid-map-key 'edt-gnu-map-key))
|
|
245 (set-buffer "Keys")
|
|
246 (insert "
|
|
247 ;;
|
|
248 ;; Arrows
|
|
249 ;;
|
|
250 ")
|
|
251 (set-buffer "Directions")
|
|
252
|
|
253 (edt-map-key "UP" " - The Up Arrow Key")
|
|
254 (edt-map-key "DOWN" " - The Down Arrow Key")
|
|
255 (edt-map-key "LEFT" " - The Left Arrow Key")
|
|
256 (edt-map-key "RIGHT" " - The Right Arrow Key")
|
|
257
|
|
258
|
|
259 (set-buffer "Keys")
|
|
260 (insert "
|
|
261 ;;
|
|
262 ;; PF keys
|
|
263 ;;
|
|
264 ")
|
|
265 (set-buffer "Directions")
|
|
266
|
|
267 (edt-map-key "PF1" " - The PF1 (GOLD) Key")
|
|
268 (edt-map-key "PF2" " - The Keypad PF2 Key")
|
|
269 (edt-map-key "PF3" " - The Keypad PF3 Key")
|
|
270 (edt-map-key "PF4" " - The Keypad PF4 Key")
|
|
271
|
|
272 (set-buffer "Keys")
|
|
273 (insert "
|
|
274 ;;
|
|
275 ;; KP0-9 KP- KP, KPP and KPE
|
|
276 ;;
|
|
277 ")
|
|
278 (set-buffer "Directions")
|
|
279
|
|
280 (edt-map-key "KP0" " - The Keypad 0 Key")
|
|
281 (edt-map-key "KP1" " - The Keypad 1 Key")
|
|
282 (edt-map-key "KP2" " - The Keypad 2 Key")
|
|
283 (edt-map-key "KP3" " - The Keypad 3 Key")
|
|
284 (edt-map-key "KP4" " - The Keypad 4 Key")
|
|
285 (edt-map-key "KP5" " - The Keypad 5 Key")
|
|
286 (edt-map-key "KP6" " - The Keypad 6 Key")
|
|
287 (edt-map-key "KP7" " - The Keypad 7 Key")
|
|
288 (edt-map-key "KP8" " - The Keypad 8 Key")
|
|
289 (edt-map-key "KP9" " - The Keypad 9 Key")
|
|
290 (edt-map-key "KP-" " - The Keypad - Key")
|
|
291 (edt-map-key "KP," " - The Keypad , Key")
|
|
292 (edt-map-key "KPP" " - The Keypad . Key")
|
|
293 (edt-map-key "KPE" " - The Keypad Enter Key")
|
|
294 ;; Save the enter key
|
|
295 (setq edt-enter edt-key)
|
|
296 (setq edt-enter-seq edt-key-seq)
|
|
297
|
|
298
|
|
299 (set-buffer "Keys")
|
|
300 (insert "
|
|
301 ;;
|
|
302 ;; Editing keypad (FIND, INSERT, REMOVE)
|
|
303 ;; (SELECT, PREVIOUS, NEXT)
|
|
304 ;;
|
|
305 ")
|
|
306 (set-buffer "Directions")
|
|
307
|
|
308 (edt-map-key "FIND" " - The Find key on the editing keypad")
|
|
309 (edt-map-key "INSERT" " - The Insert key on the editing keypad")
|
|
310 (edt-map-key "REMOVE" " - The Remove key on the editing keypad")
|
|
311 (edt-map-key "SELECT" " - The Select key on the editing keypad")
|
|
312 (edt-map-key "PREVIOUS" " - The Prev Scr key on the editing keypad")
|
|
313 (edt-map-key "NEXT" " - The Next Scr key on the editing keypad")
|
|
314
|
|
315 (set-buffer "Keys")
|
|
316 (insert "
|
|
317 ;;
|
|
318 ;; F1-14 Help Do F17-F20
|
|
319 ;;
|
|
320 ")
|
|
321 (set-buffer "Directions")
|
|
322
|
|
323 (edt-map-key "F1" " - F1 Function Key")
|
|
324 (edt-map-key "F2" " - F2 Function Key")
|
|
325 (edt-map-key "F3" " - F3 Function Key")
|
|
326 (edt-map-key "F4" " - F4 Function Key")
|
|
327 (edt-map-key "F5" " - F5 Function Key")
|
|
328 (edt-map-key "F6" " - F6 Function Key")
|
|
329 (edt-map-key "F7" " - F7 Function Key")
|
|
330 (edt-map-key "F8" " - F8 Function Key")
|
|
331 (edt-map-key "F9" " - F9 Function Key")
|
|
332 (edt-map-key "F10" " - F10 Function Key")
|
|
333 (edt-map-key "F11" " - F11 Function Key")
|
|
334 (edt-map-key "F12" " - F12 Function Key")
|
|
335 (edt-map-key "F13" " - F13 Function Key")
|
|
336 (edt-map-key "F14" " - F14 Function Key")
|
|
337 (edt-map-key "HELP" " - HELP Function Key")
|
|
338 (edt-map-key "DO" " - DO Function Key")
|
|
339 (edt-map-key "F17" " - F17 Function Key")
|
|
340 (edt-map-key "F18" " - F18 Function Key")
|
|
341 (edt-map-key "F19" " - F19 Function Key")
|
|
342 (edt-map-key "F20" " - F20 Function Key")
|
|
343
|
|
344 (set-buffer "Directions")
|
|
345 (delete-region (point-min) (point-max))
|
|
346 (insert "
|
|
347 ADDITIONAL FUNCTION KEYS
|
|
348
|
|
349 Your keyboard may have additional function keys which do not
|
|
350 correspond to any LK-201 keys. The EDT Emulation can be
|
|
351 configured to recognize those keys, since you may wish to add your
|
|
352 own key bindings to those keys.
|
|
353
|
|
354 For example, suppose your keyboard has a keycap marked \"Line Del\"
|
|
355 and you wish to add it to the list of keys which can be customized
|
|
356 by the EDT Emulation. First, assign a unique single-word name to
|
|
357 the key for use by the EDT Emulation, let's say \"linedel\", in this
|
|
358 example. Then, at the \"EDT Key Name:\" prompt, enter \"linedel\",
|
|
359 followed by a press of the RETURN key. Finally, when prompted,
|
|
360 press the \"Line Del\" key. You now will be able to bind functions
|
|
361 to \"linedel\" and \"Gold-linedel\" in edt-user.el in just the same way
|
|
362 you can customize bindings of the standard LK-201 keys.
|
|
363
|
|
364 When you have no additional function keys to specify, just press
|
|
365 RETURN at the \"EDT Key Name:\" prompt. (If you change your mind
|
|
366 AFTER you enter an EDT Key Name and before you press a key at the
|
|
367 \"Press\" prompt, you may omit the key by simply pressing RETURN at
|
|
368 the prompt.)
|
|
369 ")
|
|
370 (switch-to-buffer "Directions")
|
|
371 ;;;
|
|
372 ;;; Add support for extras keys
|
|
373 ;;;
|
|
374 (set-buffer "Keys")
|
|
375 (insert "\
|
|
376 ;;
|
|
377 ;; Extra Keys
|
|
378 ;;
|
|
379 ")
|
|
380 (setq EDT-key-name "")
|
|
381 (while (not
|
|
382 (string-equal (setq EDT-key-name (read-string "EDT Key Name: ")) ""))
|
|
383 (edt-map-key EDT-key-name ""))
|
|
384
|
|
385 ;
|
|
386 ; No more keys to add, so wrap up.
|
|
387 ;
|
|
388 (set-buffer "Keys")
|
|
389 (insert "\
|
|
390 )
|
|
391 )
|
|
392 ")
|
|
393
|
|
394 ;;;
|
|
395 ;;; Save the key mapping program and blow this pop stand
|
|
396 ;;;
|
|
397 (let ((file (if edt-lucid-emacs19-p "~/.edt-lucid-keys" "~/.edt-gnu-keys")))
|
|
398 (set-visited-file-name
|
|
399 (read-file-name (format "Save key mapping to file (default %s): " file) nil file)))
|
|
400 (save-buffer)
|
|
401
|
|
402 (message "That's it! Press any key to exit")
|
|
403 (sit-for 600)
|
|
404 (kill-emacs t)
|
|
405
|
|
406 ;;; edt-mapper.el ends here
|