annotate lisp/x11/x-win-sun.el @ 205:92f8ad5d0d3f r20-4b1

Import from CVS: tag r20-4b1
author cvs
date Mon, 13 Aug 2007 10:02:46 +0200
parents f53b5ca2e663
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; x-win-sun.el --- runtime initialization for Sun X servers and keyboards
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Authors: jwz@netscape.com, wing@666.com, mrb@eng.sun.com
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: terminals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 52
diff changeset
20 ;; along with XEmacs; see the file COPYING. If not, write to the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 52
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 52
diff changeset
22 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; This file is loaded by x-win.el at run-time when we are sure that XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; is running on the display of a Sun.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; The Sun X server (both the MIT and OpenWindows varieties) have extremely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; stupid names for their keypad and function keys. For example, the key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; labeled 3 / PgDn, with R15 written on the front, is actually called F35.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; There are 3 methods of dealing with the Sun key brokenness:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; - Use xmodmap to give all keys more sensible names for all apps:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; I use this shell script:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; for i in 0 1 2 3 4 5 6 7 8 9 Add Subtract Multiply Divide Decimal ; do
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
39 ;; echo "keysym KP-$i = KP-$i"
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
40 ;; done | xmodmap
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;; Clearly, as a good X11 citizen, we can't do this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; - Use keyboard-translate-table to remap the keybindings at a low level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;; This approach is taken in the function `sun-x11-keyboard-translate'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;; This is like running xmodmap within XEmacs only.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;; This is not the default, however, so that legacy keybindings in users'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;; .emacs files like (global-set-key [(f35)] 'foo) continue to work
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;; - Use keyboard macros to provide indirection for keybindings.
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
51 ;; If we do (global-set-key [(f35)] [(kp-3)]), then the user's keybindings
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
52 ;; work whether he uses `f35' or `kp-3'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; This is also compatible with FSF Emacs and other X11 apps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; Although this has the disadvantage that these remappings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;; only work with the global key map, we use this as the default.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; - The Right Way to do this remains to be written...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; OK, here's another try at doing things the right way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;; We use function-key-map, which honors explicit key-bindings for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; stupid Sun names, but also allows indirection if no explicit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;; key-binding exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
67 (defun x-remap-keysyms-using-function-key-map (from-key to-key)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
68 (dolist (prefix '(() (shift) (control) (meta) (alt)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
69 (shift control) (shift alt) (shift meta)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
70 (control alt) (control meta) (alt meta)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
71 (shift control alt) (shift control meta)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
72 (shift alt meta) (control alt meta)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
73 (shift control alt meta)))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
74 (define-key function-key-map
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
75 (append prefix (list from-key))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
76 (vector (append prefix (list to-key))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; help is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;; num_lock is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ;; up is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ;; left is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ;; right is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
83 ;; kp-add is ok
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;; down is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ;; insert is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ;; delete is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
87 ;; kp-enter is ok
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
88 ;; Sun Function keys
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
89 (loop for (x-name from-key to-key) in
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
90 `(("F21" f21 pause)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
91 ("F22" f22 print)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
92 ("F23" f23 scroll_lock)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
93
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
94 ;; X11 R6 mappings
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
95 ("SunProps" SunProps props)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
96 ("SunFront" SunFront front)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
97 ("SunOpen" SunOpen open)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
98 ("SunFind" SunFind find)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
99 ("Cancel" cancel stop)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
100 ("Undo" Undo undo)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
101 ("SunCopy" SunCopy copy)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
102 ("SunPaste" SunPaste paste)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
103 ("SunCut" SunCut cut)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
104
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
105 ("F13" f13 props)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
106 ("F14" f14 undo)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
107 ("F15" f15 front)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
108 ("F16" f16 copy)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
109 ("F17" f17 open)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
110 ("F18" f18 paste)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
111 ("F19" f19 find)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
112 ("F20" f20 cut)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
113
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
114 ("F25" f25 kp-divide)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
115 ("F26" f26 kp-multiply)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
116 ("F31" f31 kp-5)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
117
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
118 ;; Map f33 and r13 to end or kp-end
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
119 ,@(cond
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
120 ((not (x-keysym-on-keyboard-sans-modifiers-p "End"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
121 '(("F33" f33 end)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
122 ("R13" r13 end)))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
123 ((not (x-keysym-on-keyboard-sans-modifiers-p "KP_End"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
124 '(("F33" f33 kp-end)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
125 ("R13" r13 kp-end))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
127 ,@(if (x-keysym-on-keyboard-sans-modifiers-p "F36")
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
128 '(("F36" f36 stop)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
129 ("F37" f37 again)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
131 ;; Type 4 keyboards have a real kp-subtract and a f24 labelled `='
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
132 ;; Type 5 keyboards have no key labelled `=' and a f24 labelled `-'
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
133 ,@(when (x-keysym-on-keyboard-sans-modifiers-p "F24")
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
134 `(("F24" f24 ,(if (x-keysym-on-keyboard-sans-modifiers-p "KP_Subtract")
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
135 'kp-equal
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
136 'kp-subtract))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
138 ;; Map f27 to home or kp-home, as appropriate
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
139 ,@(cond ((not (x-keysym-on-keyboard-sans-modifiers-p "Home"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
140 '(("F27" f27 home)))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
141 ((not (x-keysym-on-keyboard-sans-modifiers-p "KP_Home"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
142 '(("F27" f27 kp-home))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
143
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
144 ;; Map f29 to prior or kp-prior, as appropriate
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
145 ,@(cond ((not (x-keysym-on-keyboard-sans-modifiers-p "Prior"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
146 '(("F29" f29 prior)))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
147 ((not (x-keysym-on-keyboard-sans-modifiers-p "KP_Prior"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
148 '(("F29" f29 kp-prior))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
150 ;; Map f35 to next or kp-next, as appropriate
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
151 ,@(cond ((not (x-keysym-on-keyboard-sans-modifiers-p "Next"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
152 '(("F35" f35 next)))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
153 ((not (x-keysym-on-keyboard-sans-modifiers-p "KP_Next"))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
154 '(("F35" f35 kp-next))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
156 ,@(cond ((x-keysym-on-keyboard-sans-modifiers-p "apRead") ; SunOS 4.1.1
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
157 '(("apRead" apRead f11) ("apEdit" apEdit f12)))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
158 ((x-keysym-on-keyboard-sans-modifiers-p "SunF36") ; SunOS 5
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
159 '(("SunF36" SunF36 f11)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
160 ("SunF37" SunF37 f12)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
161 ("F11" f11 stop)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
162 ("F12" f12 again))))
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
163 )
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
164 do (when (x-keysym-on-keyboard-sans-modifiers-p x-name)
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 189
diff changeset
165 (x-remap-keysyms-using-function-key-map from-key to-key)))
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
166
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
167 (unintern 'x-remap-keysyms-using-function-key-map)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ;; for each element in the left column of the above table, alias it
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
170 ;; to the thing in the right column. Then do the same for many, but
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;; not all, modifier combinations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; (Well, we omit hyper and super. #### Handle this some other way!)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 ; (while mapping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ; (let ((mods '(() (shift) (control) (meta) (alt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 ; (while mods
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ; (let ((k1 (vector (append (car mods) (list (car (car mapping))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 ; (k2 (vector (append (car mods) (list (cdr (car mapping)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 ; (define-key global-map k1 k2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 ; (setq mods (cdr mods))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 ; (setq mapping (cdr mapping))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ;;; I've extended keyboard-translate-table to work over keysyms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ;;; [FSF Emacs has something called `system-key-alist' that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ;;; supposed to accomplish approximately the same thing. Unfortunately,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ;;; it's brain-dead in the typically FSF way, and associates *numbers*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ;;; (who knows where the hell they come from?) with symbols.] --ben
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
189 ;;; And I've made it into a function which is NOT called by default --mrb
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defun sun-x11-keyboard-translate ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 "Remap Sun's X11 keyboard.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 Keys with names like `f35' are remapped, at a low level,
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
194 to more mnemonic ones,like `kp-3'."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (interactive)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
196
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (keyboard-translate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 'f11 'stop ; the type4 keyboard Sun/MIT name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 'f36 'stop ; the type5 keyboard Sun name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 'cancel 'stop ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 'f12 'again ; the type4 keyboard Sun/MIT name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 'f37 'again ; the type5 keyboard Sun name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 'f13 'props ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 'SunProps 'props ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 'f14 'undo ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 'f15 'front ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 'SunFront 'front ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 'f16 'copy ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 'SunCopy 'copy ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 'f17 'open ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 'SunOpen 'open ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 'f18 'paste ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 'SunPaste 'paste ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 'f19 'find ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 'f20 'cut ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 'SunCut 'cut ; R6 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 ;; help is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 'f21 'pause
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 'f22 'prsc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 'f23 'scroll
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 ;; num_lock is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
222 ;;'f24 'kp-equal) ; type4 only!
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
223 'f25 'kp-divide ;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
224 'f26 'kp-multiply ;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
225 'f24 'kp-subtract ; type5 only!
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
226 'f27 'kp-7 ;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 ;; up is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
228 'f29 'kp-9
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 ;; left is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
230 'f31 'kp-5
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 ;; right is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
232 ;; kp-add is ok
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
233 'f33 'kp-1 ; the Sun name
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 'r13 'end ; the MIT name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ;; down is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
236 'f35 'kp-3
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 ;; insert is ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ;; delete is ok
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
239 ;; kp-enter is ok
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 'SunF36 'f11 ; Type 5 keyboards
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 'SunF37 'f12 ; Used to be Stop & Again
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 ;;; OpenWindows-like "find" processing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 ;;; As far as I know, the `find' key is a Sunism, so we do that binding
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 149
diff changeset
247 ;;; here. This is the only Sun-specific keybinding. (The functions
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;;; themselves are in x-win.el in case someone wants to use them when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;;; not running on a Sun display.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (define-key global-map 'find 'ow-find)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (define-key global-map '(shift find) 'ow-find-backward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 ;;; x-win-sun.el ends here