Clean up previous change.
[emacs.git] / lisp / emulation / edt-mapper.el
blob14838987d1db966b756b25f01e2e6e9d343d4cd2
1 ;;; edt-mapper.el --- create an EDT LK-201 map file for X-Windows Emacs
3 ;; Copyright (C) 1994, 1995, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006 Free Software Foundation, Inc.
6 ;; Author: Kevin Gallagher <kevingal@onramp.net>
7 ;; Maintainer: Kevin Gallagher <kevingal@onramp.net>
8 ;; Keywords: emulations
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Commentary:
30 ;; [Part of the GNU Emacs EDT Emulation.]
32 ;; This emacs lisp program can be used to create an emacs lisp file
33 ;; that defines the mapping of the user's keyboard to the LK-201
34 ;; keyboard function keys and keypad keys (around which EDT has been
35 ;; designed). Please read the "Usage" AND "Known Problems" sections
36 ;; below before attempting to run this program. (The design of this
37 ;; file, edt-mapper.el, was heavily influenced by tpu-mapper.el.)
39 ;; Version 4.0 contains the following enhancements:
41 ;; 1. If you access a workstation using an X Server, note that the
42 ;; initialization file generated by edt-mapper.el will now
43 ;; contain the name of the X Server vendor. This is a
44 ;; convenience for those who have access to their Unix account
45 ;; from more than one type of X Server. Since different X
46 ;; Servers typically require different EDT emulation
47 ;; initialization files, edt-mapper.el will now generate these
48 ;; different initialization files and save them with different
49 ;; names.
51 ;; 2. Also, edt-mapper.el is now capable of binding an ASCII key
52 ;; sequence, providing the ASCII key sequence prefix is already
53 ;; known by Emacs to be a prefix. As a result, some
54 ;; terminal/keyboard/window system configurations, which don't
55 ;; have a complete set of sensible function key map bindings, can
56 ;; still be configured for EDT Emulation.
59 ;; Usage:
61 ;; Simply load this file into emacs (version 19 or higher)
62 ;; using the following command.
64 ;; emacs -q -l edt-mapper.el
66 ;; The "-q" option prevents loading of your .emacs file (commands
67 ;; therein might confuse this program).
69 ;; An instruction screen showing the typical LK-201 terminal
70 ;; functions keys will be displayed, and you will be prompted to
71 ;; press the keys on your keyboard which you want to emulate the
72 ;; corresponding LK-201 keys.
74 ;; Finally, you will be prompted for the name of the file to store
75 ;; the key definitions. If you chose the default, it will be found
76 ;; and loaded automatically when the EDT emulation is started. If
77 ;; you specify a different file name, you will need to set the
78 ;; variable "edt-keys-file" before starting the EDT emulation.
79 ;; Here's how you might go about doing that in your .emacs file.
81 ;; (setq edt-keys-file (expand-file-name "~/.my-emacs-keys"))
84 ;; Known Problems:
86 ;; Sometimes, edt-mapper will ignore a key you press, and just
87 ;; continue to prompt for the same key. This can happen when your
88 ;; window manager sucks up the key and doesn't pass it on to emacs,
89 ;; or it could be an emacs bug. Either way, there's nothing that
90 ;; edt-mapper can do about it. You must press RETURN, to skip the
91 ;; current key and continue. Later, you and/or your local Emacs guru
92 ;; can try to figure out why the key is being ignored.
94 ;;; History:
97 ;; Version 4.0 2000 Added 2 New Features
99 ;;; Code:
102 ;;; Make sure we're running Emacs version 19, or higher.
105 (cond
106 ((string-lessp emacs-version "19")
107 (insert "
109 Whoa! This isn't going to work...
111 You must run edt-mapper.el under Emacs version 19 or higher.
113 Press any key to exit. ")
114 (sit-for 600)
115 (kill-emacs t)))
118 ;;; Decide Emacs Variant, GNU Emacs or XEmacs (aka Lucid Emacs).
119 ;;; Determine Window System, and X Server Vendor (if appropriate).
121 (defconst edt-x-emacs-p (string-match "XEmacs" emacs-version)
122 "Non-nil if we are running XEmacs version 19, or higher.")
124 (defconst edt-emacs-variant (if edt-x-emacs-p "xemacs" "gnu")
125 "Indicates Emacs variant: GNU Emacs or XEmacs \(aka Lucid Emacs\).")
127 (defconst edt-window-system (if edt-x-emacs-p (console-type) window-system)
128 "Indicates window system \(in GNU Emacs\) or console type \(in XEmacs\).")
130 (defconst edt-xserver (if (eq edt-window-system 'x)
131 (if edt-x-emacs-p
132 (replace-in-string (x-server-vendor) "[ _]" "-")
133 (subst-char-in-string ? ?- (x-server-vendor)))
134 nil)
135 "Indicates X server vendor name, if applicable.")
139 ;;; Key variables
141 (defvar edt-key nil)
142 (defvar edt-enter nil)
143 (defvar edt-return nil)
144 (defvar edt-key-seq nil)
145 (defvar edt-enter-seq nil)
146 (defvar edt-return-seq nil)
147 (defvar edt-term nil)
149 ;; To silence the byte-compiler
150 (eval-when-compile
151 (defvar EDT-key-name)
152 (defvar edt-save-function-key-map))
155 ;;; Determine Terminal Type (if appropriate).
158 (if (and edt-window-system (not (eq edt-window-system 'tty)))
159 (setq edt-term nil)
160 (setq edt-term (getenv "TERM")))
163 ;;; Make sure the window is big enough to display the instructions,
164 ;;; except where window cannot be re-sized.
167 (if (and edt-window-system (not (eq edt-window-system 'tty)))
168 (set-frame-size (selected-frame) 80 36))
171 ;;; Create buffers - Directions and Keys
173 (if (not (get-buffer "Directions")) (generate-new-buffer "Directions"))
174 (if (not (get-buffer "Keys")) (generate-new-buffer "Keys"))
177 ;;; Put header in the Keys buffer
179 (set-buffer "Keys")
180 (insert "\
182 ;; Key definitions for the EDT emulation within GNU Emacs
185 (defconst *EDT-keys*
190 ;;; Display directions
192 (switch-to-buffer "Directions")
193 (if (and edt-window-system (not (eq edt-window-system 'tty)))
194 (insert "
195 EDT MAPPER
197 You will be asked to press keys to create a custom mapping (under a
198 Window Manager) of your keypad keys and function keys so that they can
199 emulate the LK-201 keypad and function keys or the subset of keys found
200 on a VT-100 series terminal keyboard. (The LK-201 keyboard is the
201 standard keyboard attached to VT-200 series terminals, and above.)
203 Sometimes, edt-mapper will ignore a key you press, and just continue to
204 prompt for the same key. This can happen when your window manager sucks
205 up the key and doesn't pass it on to emacs, or it could be an emacs bug.
206 Either way, there's nothing that edt-mapper can do about it. You must
207 press RETURN, to skip the current key and continue. Later, you and/or
208 your local system guru can try to figure out why the key is being ignored.
210 Start by pressing the RETURN key, and continue by pressing the keys
211 specified in the mini-buffer. If you want to entirely omit a key,
212 because your keyboard does not have a corresponding key, for example,
213 just press RETURN at the prompt.
216 (insert "
217 EDT MAPPER
219 You will be asked to press keys to create a custom mapping of your
220 keypad keys and function keys so that they can emulate the LK-201
221 keypad and function keys or the subset of keys found on a VT-100
222 series terminal keyboard. (The LK-201 keyboard is the standard
223 keyboard attached to VT-200 series terminals, and above.)
225 If you are using a real LK-201 keyboard, you should map the keys
226 exactly as they are on the keyboard.
228 Start by pressing the RETURN key, and continue by pressing the keys
229 specified in the mini-buffer. If you want to entirely omit a key,
230 because your keyboard does not have a corresponding key, for example,
231 just press RETURN at the prompt.
235 (delete-other-windows)
238 ;;; Save <CR> for future reference.
240 ;;; For GNU Emacs, running in a Window System, first hide bindings in
241 ;;; function-key-map.
243 (cond
244 (edt-x-emacs-p
245 (setq edt-return-seq (read-key-sequence "Hit carriage-return <CR> to continue "))
246 (setq edt-return (concat "[" (format "%s" (event-key (aref edt-return-seq 0))) "]")))
248 (if edt-window-system
249 (progn
250 (setq edt-save-function-key-map function-key-map)
251 (setq function-key-map (make-sparse-keymap))))
252 (setq edt-return (read-key-sequence "Hit carriage-return <CR> to continue "))))
255 ;;; Remove prefix-key bindings to F1 and F2 in global-map so they can be
256 ;;; bound in the EDT Emulation mode.
258 (global-unset-key [f1])
259 (global-unset-key [f2])
262 ;;; Display Keypad Diagram and Begin Prompting for Keys
264 (set-buffer "Directions")
265 (delete-region (point-min) (point-max))
266 (if (and edt-window-system (not (eq edt-window-system 'tty)))
267 (insert "
269 PRESS THE KEY SPECIFIED IN THE MINIBUFFER BELOW.
271 Here's a picture of the standard LK-201 keypad for reference:
273 _______________________ _______________________________
274 | HELP | DO | | F17 | F18 | F19 | F20 |
275 | | | | | | | |
276 |_______|_______________| |_______|_______|_______|_______|
277 _______________________ _______________________________
278 | FIND |INSERT |REMOVE | | PF1 | PF2 | PF3 | PF4 |
279 | | | | | | | | |
280 |_______|_______|_______| |_______|_______|_______|_______|
281 |SELECT |PREVIOU| NEXT | | KP7 | KP8 | KP9 | KP- |
282 | | | | | | | | |
283 |_______|_______|_______| |_______|_______|_______|_______|
284 | UP | | KP4 | KP5 | KP6 | KP, |
285 | | | | | | |
286 _______|_______|_______ |_______|_______|_______|_______|
287 | LEFT | DOWN | RIGHT | | KP1 | KP2 | KP3 | |
288 | | | | | | | | |
289 |_______|_______|_______| |_______|_______|_______| KPE |
290 | KP0 | KPP | |
291 | | | |
292 |_______________|_______|_______|
294 REMEMBER: JUST PRESS RETURN TO SKIP MAPPING A KEY.
297 (progn
298 (insert "
299 GENERATING A CUSTOM CONFIGURATION FILE FOR TERMINAL TYPE: ")
300 (insert (format "%s." edt-term))
301 (insert "
303 PRESS THE KEY SPECIFIED IN THE MINIBUFFER BELOW.
305 _______________________ _______________________________
306 | HELP | DO | | F17 | F18 | F19 | F20 |
307 |_______|_______________| |_______|_______|_______|_______|
308 _______________________ _______________________________
309 | FIND |INSERT |REMOVE | | PF1 | PF2 | PF3 | PF4 |
310 |_______|_______|_______| |_______|_______|_______|_______|
311 |SELECT |PREVIOU| NEXT | | KP7 | KP8 | KP9 | KP- |
312 |_______|_______|_______| |_______|_______|_______|_______|
313 | UP | | KP4 | KP5 | KP6 | KP, |
314 _______|_______|_______ |_______|_______|_______|_______|
315 | LEFT | DOWN | RIGHT | | KP1 | KP2 | KP3 | |
316 |_______|_______|_______| |_______|_______|_______| KPE |
317 | KP0 | KPP | |
318 |_______________|_______|_______|
320 REMEMBER: JUST PRESS RETURN TO SKIP MAPPING A KEY.")))
324 ;;; Key mapping functions
326 (defun edt-lucid-map-key (ident descrip)
327 (interactive)
328 (setq edt-key-seq (read-key-sequence (format "Press %s%s: " ident descrip)))
329 (setq edt-key (concat "[" (format "%s" (event-key (aref edt-key-seq 0))) "]"))
330 (cond ((not (equal edt-key edt-return))
331 (set-buffer "Keys")
332 (insert (format " (\"%s\" . %s)\n" ident edt-key))
333 (set-buffer "Directions"))
334 ;; bogosity to get next prompt to come up, if the user hits <CR>!
335 ;; check periodically to see if this is still needed...
337 (set-buffer "Keys")
338 (insert (format " (\"%s\" . \"\" )\n" ident))
339 (set-buffer "Directions")))
340 edt-key)
342 (defun edt-gnu-map-key (ident descrip)
343 (interactive)
344 (setq edt-key (read-key-sequence (format "Press %s%s: " ident descrip)))
345 (cond ((not (equal edt-key edt-return))
346 (set-buffer "Keys")
347 (insert (if (vectorp edt-key)
348 (format " (\"%s\" . %s)\n" ident edt-key)
349 (format " (\"%s\" . \"%s\")\n" ident edt-key)))
350 (set-buffer "Directions"))
351 ;; bogosity to get next prompt to come up, if the user hits <CR>!
352 ;; check periodically to see if this is still needed...
354 (set-buffer "Keys")
355 (insert (format " (\"%s\" . \"\" )\n" ident))
356 (set-buffer "Directions")))
357 edt-key)
359 (fset 'edt-map-key (if edt-x-emacs-p 'edt-lucid-map-key 'edt-gnu-map-key))
360 (set-buffer "Keys")
361 (insert "
363 ;; Arrows
366 (set-buffer "Directions")
368 (edt-map-key "UP" " - The Up Arrow Key")
369 (edt-map-key "DOWN" " - The Down Arrow Key")
370 (edt-map-key "LEFT" " - The Left Arrow Key")
371 (edt-map-key "RIGHT" " - The Right Arrow Key")
374 (set-buffer "Keys")
375 (insert "
377 ;; PF keys
380 (set-buffer "Directions")
382 (edt-map-key "PF1" " - The PF1 (GOLD) Key")
383 (edt-map-key "PF2" " - The Keypad PF2 Key")
384 (edt-map-key "PF3" " - The Keypad PF3 Key")
385 (edt-map-key "PF4" " - The Keypad PF4 Key")
387 (set-buffer "Keys")
388 (insert "
390 ;; KP0-9 KP- KP, KPP and KPE
393 (set-buffer "Directions")
395 (edt-map-key "KP0" " - The Keypad 0 Key")
396 (edt-map-key "KP1" " - The Keypad 1 Key")
397 (edt-map-key "KP2" " - The Keypad 2 Key")
398 (edt-map-key "KP3" " - The Keypad 3 Key")
399 (edt-map-key "KP4" " - The Keypad 4 Key")
400 (edt-map-key "KP5" " - The Keypad 5 Key")
401 (edt-map-key "KP6" " - The Keypad 6 Key")
402 (edt-map-key "KP7" " - The Keypad 7 Key")
403 (edt-map-key "KP8" " - The Keypad 8 Key")
404 (edt-map-key "KP9" " - The Keypad 9 Key")
405 (edt-map-key "KP-" " - The Keypad - Key")
406 (edt-map-key "KP," " - The Keypad , Key")
407 (edt-map-key "KPP" " - The Keypad . Key")
408 (edt-map-key "KPE" " - The Keypad Enter Key")
409 ;; Save the enter key
410 (setq edt-enter edt-key)
411 (setq edt-enter-seq edt-key-seq)
414 (set-buffer "Keys")
415 (insert "
417 ;; Editing keypad (FIND, INSERT, REMOVE)
418 ;; (SELECT, PREVIOUS, NEXT)
421 (set-buffer "Directions")
423 (edt-map-key "FIND" " - The Find key on the editing keypad")
424 (edt-map-key "INSERT" " - The Insert key on the editing keypad")
425 (edt-map-key "REMOVE" " - The Remove key on the editing keypad")
426 (edt-map-key "SELECT" " - The Select key on the editing keypad")
427 (edt-map-key "PREVIOUS" " - The Prev Scr key on the editing keypad")
428 (edt-map-key "NEXT" " - The Next Scr key on the editing keypad")
430 (set-buffer "Keys")
431 (insert "
433 ;; F1-14 Help Do F17-F20
436 (set-buffer "Directions")
438 (edt-map-key "F1" " - F1 Function Key")
439 (edt-map-key "F2" " - F2 Function Key")
440 (edt-map-key "F3" " - F3 Function Key")
441 (edt-map-key "F4" " - F4 Function Key")
442 (edt-map-key "F5" " - F5 Function Key")
443 (edt-map-key "F6" " - F6 Function Key")
444 (edt-map-key "F7" " - F7 Function Key")
445 (edt-map-key "F8" " - F8 Function Key")
446 (edt-map-key "F9" " - F9 Function Key")
447 (edt-map-key "F10" " - F10 Function Key")
448 (edt-map-key "F11" " - F11 Function Key")
449 (edt-map-key "F12" " - F12 Function Key")
450 (edt-map-key "F13" " - F13 Function Key")
451 (edt-map-key "F14" " - F14 Function Key")
452 (edt-map-key "HELP" " - HELP Function Key")
453 (edt-map-key "DO" " - DO Function Key")
454 (edt-map-key "F17" " - F17 Function Key")
455 (edt-map-key "F18" " - F18 Function Key")
456 (edt-map-key "F19" " - F19 Function Key")
457 (edt-map-key "F20" " - F20 Function Key")
459 (set-buffer "Directions")
460 (delete-region (point-min) (point-max))
461 (insert "
462 ADDITIONAL FUNCTION KEYS
464 Your keyboard may have additional function keys which do not correspond
465 to any LK-201 keys. The EDT Emulation can be configured to recognize
466 those keys, since you may wish to add your own key bindings to those keys.
468 For example, suppose your keyboard has a keycap marked \"Line Del\" and
469 you wish to add it to the list of keys which can be customized by the EDT
470 Emulation. First, assign a unique single-word name to the key for use by
471 the EDT Emulation, for example, \"linedel\". Then, at the \"EDT Key
472 Name:\" prompt, enter \"linedel\", followed by a press of the RETURN key.
473 Finally, when prompted, press the \"Line Del\" key. You now will be able
474 to bind functions to \"linedel\" and \"Gold-linedel\" in edt-user.el in
475 just the same way you can customize bindings of the LK-201 function and
476 keypad keys.
478 When you are done, just press RETURN at the \"EDT Key Name:\" prompt.
480 (switch-to-buffer "Directions")
482 ;;; Add support for extras keys
484 (set-buffer "Keys")
485 (insert "\
487 ;; Extra Keys
491 ;;; Restore function-key-map.
493 (if (and edt-window-system (not edt-x-emacs-p))
494 (setq function-key-map edt-save-function-key-map))
495 (setq EDT-key-name "")
496 (while (not
497 (string-equal (setq EDT-key-name (read-string "EDT Key Name: ")) ""))
498 (edt-map-key EDT-key-name ""))
501 ; No more keys to add, so wrap up.
503 (set-buffer "Keys")
504 (insert "\
510 ;;; Save the key mapping program
513 ;;; Save the key mapping file
515 (let ((file (concat
516 "~/.edt-" edt-emacs-variant
517 (if edt-term (concat "-" edt-term))
518 (if edt-xserver (concat "-" edt-xserver))
519 (if edt-window-system (concat "-" (upcase (symbol-name edt-window-system))))
520 "-keys")))
521 (set-visited-file-name
522 (read-file-name (format "Save key mapping to file (default %s): " file) nil file)))
523 (save-buffer)
525 (message "That's it! Press any key to exit")
526 (sit-for 600)
527 (kill-emacs t)
529 ;;; arch-tag: 9eea59c8-b8b7-4d66-b858-c8920624c518
530 ;;; edt-mapper.el ends here