428
|
1 ;;; x-init.el --- initialization code for X windows
|
|
2
|
|
3 ;; Copyright (C) 1990, 1993, 1994, 1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
5 ;; Copyright (C) 1995, 1996 Ben Wing.
|
|
6
|
|
7 ;; Maintainer: XEmacs Development Team
|
|
8 ;; Keywords: terminals, dumped
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; 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.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: Not synched.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
|
31 ;; This file is dumped with XEmacs (when X support is compiled in).
|
|
32
|
|
33 ;;; Code:
|
|
34
|
502
|
35 (globally-declare-fboundp
|
|
36 '(x-keysym-on-keyboard-p
|
|
37 x-server-vendor x-init-specifier-from-resources init-mule-x-win))
|
|
38
|
|
39 (globally-declare-boundp
|
|
40 '(x-initial-argv-list))
|
|
41
|
428
|
42 ;; If you want to change this variable, this is the place you must do it.
|
|
43 ;; Do not set it to a string containing periods. X doesn't like that.
|
|
44 ;(setq x-emacs-application-class "Emacs")
|
|
45
|
|
46 (defgroup x nil
|
|
47 "The X Window system."
|
|
48 :group 'environment)
|
|
49
|
|
50 ;; OpenWindows-like "find" processing. These functions are really Sunisms,
|
|
51 ;; but we put them here instead of in x-win-sun.el in case someone wants
|
|
52 ;; to use them when not running on a Sun console (presumably after binding
|
|
53 ;; them to different keys, or putting them on menus.)
|
|
54
|
|
55 (defvar ow-find-last-string nil)
|
|
56 (defvar ow-find-last-clipboard nil)
|
|
57
|
|
58 (defun ow-find (&optional backward-p)
|
|
59 "Search forward the next occurrence of the text of the selection."
|
|
60 (interactive)
|
442
|
61 (let ((sel (ignore-errors (get-selection)))
|
|
62 (clip (ignore-errors (get-clipboard)))
|
428
|
63 text)
|
|
64 (setq text (cond
|
|
65 (sel)
|
|
66 ((not (equal clip ow-find-last-clipboard))
|
|
67 (setq ow-find-last-clipboard clip))
|
|
68 (ow-find-last-string)
|
|
69 (t (error "No selection available"))))
|
|
70 (setq ow-find-last-string text)
|
|
71 (cond (backward-p
|
|
72 (search-backward text)
|
|
73 (set-mark (+ (point) (length text))))
|
|
74 (t
|
|
75 (search-forward text)
|
|
76 (set-mark (- (point) (length text)))))
|
|
77 (zmacs-activate-region)))
|
|
78
|
|
79 (defun ow-find-backward ()
|
|
80 "Search backward for the previous occurrence of the text of the selection."
|
|
81 (interactive)
|
|
82 (ow-find t))
|
|
83
|
|
84 ;; Load X-server specific code.
|
|
85 ;; Specifically, load some code to repair the grievous damage that MIT and
|
|
86 ;; Sun have done to the default keymap for the Sun keyboards.
|
|
87
|
|
88 (eval-when-compile
|
|
89 (defmacro x-define-dead-key (key map)
|
|
90 `(when (x-keysym-on-keyboard-p ',key)
|
|
91 (define-key function-key-map [,key] ',map))))
|
|
92
|
|
93 (defun x-initialize-compose ()
|
|
94 "Enable compose key and dead key processing."
|
|
95 (autoload 'compose-map "x-compose" nil t 'keymap)
|
|
96 (autoload 'compose-acute-map "x-compose" nil t 'keymap)
|
|
97 (autoload 'compose-grave-map "x-compose" nil t 'keymap)
|
|
98 (autoload 'compose-cedilla-map "x-compose" nil t 'keymap)
|
|
99 (autoload 'compose-diaeresis-map "x-compose" nil t 'keymap)
|
|
100 (autoload 'compose-circumflex-map "x-compose" nil t 'keymap)
|
|
101 (autoload 'compose-tilde-map "x-compose" nil t 'keymap)
|
|
102
|
|
103 (when (x-keysym-on-keyboard-p 'multi-key)
|
|
104 (define-key function-key-map [multi-key] 'compose-map))
|
|
105
|
|
106 ;; The dead keys might really be called just about anything, depending
|
|
107 ;; on the vendor. MIT thinks that the prefixes are "SunFA_", "D", and
|
|
108 ;; "hpmute_" for Sun, DEC, and HP respectively. However, OpenWindows 3
|
|
109 ;; thinks that the prefixes are "SunXK_FA_", "DXK_", and "hpXK_mute_".
|
|
110 ;; And HP (who don't mention Sun and DEC at all) use "XK_mute_".
|
|
111 ;; Go figure.
|
|
112
|
|
113 ;; Presumably if someone is running OpenWindows, they won't be using
|
|
114 ;; the DEC or HP keysyms, but if they are defined then that is possible,
|
|
115 ;; so in that case we accept them all.
|
|
116
|
|
117 ;; If things seem not to be working, you might want to check your
|
|
118 ;; /usr/lib/X11/XKeysymDB file to see if your vendor has an equally
|
|
119 ;; mixed up view of what these keys should be called.
|
|
120
|
|
121 ;; Canonical names:
|
|
122 (x-define-dead-key acute compose-acute-map)
|
|
123 (x-define-dead-key grave compose-grave-map)
|
|
124 (x-define-dead-key cedilla compose-cedilla-map)
|
|
125 (x-define-dead-key diaeresis compose-diaeresis-map)
|
|
126 (x-define-dead-key circumflex compose-circumflex-map)
|
|
127 (x-define-dead-key tilde compose-tilde-map)
|
|
128 (x-define-dead-key degree compose-ring-map)
|
|
129
|
|
130 ;; Sun according to MIT:
|
|
131 (x-define-dead-key SunFA_Acute compose-acute-map)
|
|
132 (x-define-dead-key SunFA_Grave compose-grave-map)
|
|
133 (x-define-dead-key SunFA_Cedilla compose-cedilla-map)
|
|
134 (x-define-dead-key SunFA_Diaeresis compose-diaeresis-map)
|
|
135 (x-define-dead-key SunFA_Circum compose-circumflex-map)
|
|
136 (x-define-dead-key SunFA_Tilde compose-tilde-map)
|
|
137
|
|
138 ;; Sun according to OpenWindows 2:
|
|
139 (x-define-dead-key Dead_Grave compose-grave-map)
|
|
140 (x-define-dead-key Dead_Circum compose-circumflex-map)
|
|
141 (x-define-dead-key Dead_Tilde compose-tilde-map)
|
|
142
|
|
143 ;; Sun according to OpenWindows 3:
|
|
144 (x-define-dead-key SunXK_FA_Acute compose-acute-map)
|
|
145 (x-define-dead-key SunXK_FA_Grave compose-grave-map)
|
|
146 (x-define-dead-key SunXK_FA_Cedilla compose-cedilla-map)
|
|
147 (x-define-dead-key SunXK_FA_Diaeresis compose-diaeresis-map)
|
|
148 (x-define-dead-key SunXK_FA_Circum compose-circumflex-map)
|
|
149 (x-define-dead-key SunXK_FA_Tilde compose-tilde-map)
|
|
150
|
|
151 ;; DEC according to MIT:
|
|
152 (x-define-dead-key Dacute_accent compose-acute-map)
|
|
153 (x-define-dead-key Dgrave_accent compose-grave-map)
|
|
154 (x-define-dead-key Dcedilla_accent compose-cedilla-map)
|
|
155 (x-define-dead-key Dcircumflex_accent compose-circumflex-map)
|
|
156 (x-define-dead-key Dtilde compose-tilde-map)
|
|
157 (x-define-dead-key Dring_accent compose-ring-map)
|
|
158
|
|
159 ;; DEC according to OpenWindows 3:
|
|
160 (x-define-dead-key DXK_acute_accent compose-acute-map)
|
|
161 (x-define-dead-key DXK_grave_accent compose-grave-map)
|
|
162 (x-define-dead-key DXK_cedilla_accent compose-cedilla-map)
|
|
163 (x-define-dead-key DXK_circumflex_accent compose-circumflex-map)
|
|
164 (x-define-dead-key DXK_tilde compose-tilde-map)
|
|
165 (x-define-dead-key DXK_ring_accent compose-ring-map)
|
|
166
|
|
167 ;; HP according to MIT:
|
|
168 (x-define-dead-key hpmute_acute compose-acute-map)
|
|
169 (x-define-dead-key hpmute_grave compose-grave-map)
|
|
170 (x-define-dead-key hpmute_diaeresis compose-diaeresis-map)
|
|
171 (x-define-dead-key hpmute_asciicircum compose-circumflex-map)
|
|
172 (x-define-dead-key hpmute_asciitilde compose-tilde-map)
|
|
173
|
|
174 ;; Empirically discovered on Linux XFree86 MetroX:
|
|
175 (x-define-dead-key usldead_acute compose-acute-map)
|
|
176 (x-define-dead-key usldead_grave compose-grave-map)
|
|
177 (x-define-dead-key usldead_diaeresis compose-diaeresis-map)
|
|
178 (x-define-dead-key usldead_asciicircum compose-circumflex-map)
|
|
179 (x-define-dead-key usldead_asciitilde compose-tilde-map)
|
|
180
|
|
181 ;; HP according to OpenWindows 3:
|
|
182 (x-define-dead-key hpXK_mute_acute compose-acute-map)
|
|
183 (x-define-dead-key hpXK_mute_grave compose-grave-map)
|
|
184 (x-define-dead-key hpXK_mute_diaeresis compose-diaeresis-map)
|
|
185 (x-define-dead-key hpXK_mute_asciicircum compose-circumflex-map)
|
|
186 (x-define-dead-key hpXK_mute_asciitilde compose-tilde-map)
|
|
187
|
|
188 ;; HP according to HP-UX 8.0:
|
|
189 (x-define-dead-key XK_mute_acute compose-acute-map)
|
|
190 (x-define-dead-key XK_mute_grave compose-grave-map)
|
|
191 (x-define-dead-key XK_mute_diaeresis compose-diaeresis-map)
|
|
192 (x-define-dead-key XK_mute_asciicircum compose-circumflex-map)
|
|
193 (x-define-dead-key XK_mute_asciitilde compose-tilde-map)
|
|
194
|
2828
|
195 ;; [[ XFree86 seems to use lower case and a hyphen ]] Not true; they use
|
|
196 ;; lower case and an underscore. XEmacs converts the underscore to a
|
|
197 ;; hyphen in x_keysym_to_emacs_keysym because the keysym is in the
|
|
198 ;; "Keyboard" character set, which is just totally fucking random,
|
|
199 ;; considering it doesn't happen for any other character sets.
|
428
|
200 (x-define-dead-key dead-acute compose-acute-map)
|
|
201 (x-define-dead-key dead-grave compose-grave-map)
|
|
202 (x-define-dead-key dead-cedilla compose-cedilla-map)
|
|
203 (x-define-dead-key dead-diaeresis compose-diaeresis-map)
|
|
204 (x-define-dead-key dead-circum compose-circumflex-map)
|
|
205 (x-define-dead-key dead-circumflex compose-circumflex-map)
|
|
206 (x-define-dead-key dead-tilde compose-tilde-map)
|
|
207 )
|
|
208
|
|
209 (eval-when-compile
|
|
210 (load "x-win-sun" nil t)
|
|
211 (load "x-win-xfree86" nil t))
|
|
212
|
|
213 (defun x-initialize-keyboard ()
|
|
214 "Perform X-Server-specific initializations. Don't call this."
|
|
215 ;; This is some heuristic junk that tries to guess whether this is
|
|
216 ;; a Sun keyboard.
|
|
217 ;;
|
|
218 ;; One way of implementing this (which would require C support) would
|
|
219 ;; be to examine the X keymap itself and see if the layout looks even
|
|
220 ;; remotely like a Sun - check for the Find key on a particular
|
|
221 ;; keycode, for example. It'd be nice to have a table of this to
|
|
222 ;; recognize various keyboards; see also xkeycaps.
|
|
223 ;;
|
|
224 ;; Note that we cannot use most vendor-provided proprietary keyboard
|
|
225 ;; APIs to identify the keyboard - those only work on the console.
|
|
226 ;; xkeycaps has the same problem when running `remotely'.
|
|
227 (let ((vendor (x-server-vendor)))
|
|
228 (cond ((or (string-match "Sun Microsystems" vendor)
|
|
229 ;; MIT losingly fails to tell us what hardware the X server
|
|
230 ;; is managing, so assume all MIT displays are Suns... HA HA!
|
|
231 (string-equal "MIT X Consortium" vendor)
|
|
232 (string-equal "X Consortium" vendor))
|
|
233 ;; Ok, we think this could be a Sun keyboard. Run the Sun code.
|
|
234 (x-win-init-sun))
|
|
235 ((string-match "XFree86" vendor)
|
|
236 ;; Those XFree86 people do some weird keysym stuff, too.
|
2766
|
237 (x-win-init-xfree86))))
|
|
238 ;; Perhaps tell people that some keys won't work.
|
|
239 ;;
|
|
240 ;; If they remap while XEmacs is running and this problem arises, they
|
|
241 ;; won't see the messages. Which should be okay, assuming the length of
|
|
242 ;; time before we get a Unicode-compatible internal encoding is relatively
|
|
243 ;; short.
|
|
244 (let (unknown-code-points sym-string)
|
|
245 (dolist (x-keysym (hash-table-key-list (x-keysym-hash-table)))
|
|
246 (setq sym-string (if (stringp x-keysym) x-keysym (symbol-name x-keysym)))
|
2828
|
247 (when (and (not (get (intern sym-string) 'character-of-keysym))
|
2766
|
248 (string-match "^U[0-9A-F]+$" sym-string))
|
|
249 (pushnew (concat sym-string " ") unknown-code-points :test 'equal)))
|
|
250 (when unknown-code-points
|
|
251 (lwarn 'key-mapping 'info
|
|
252 "Undefined Unicode key mappings.
|
|
253 Your keyboard has, among many others, the following keysyms defined:
|
|
254
|
|
255 %s
|
|
256 The standards say that applications should interpret these keysyms as
|
|
257 representing the corresponding Unicode code points (e.g. U2720 should
|
|
258 represent MALTESE CROSS), but unfortunately the current version of XEmacs
|
|
259 has no support for many of those characters in its internal encoding, and
|
|
260 when it encounters the keysyms corresponding to those characters, they
|
|
261 remain unbound.
|
|
262
|
|
263 See the documentation for `unicode-to-char' for one technique if you have an
|
|
264 urgent need for support for one of those characters--you probably don't,
|
|
265 most of the widely-used characters have mappings in the internal XEmacs
|
|
266 encoding--otherwise, wait until we ship a version with an internal encoding
|
|
267 based on Unicode. "
|
|
268 (with-string-as-buffer-contents (apply 'concat " "
|
|
269 unknown-code-points)
|
|
270 (setq fill-prefix " ")
|
|
271 (fill-paragraph nil))))))
|
428
|
272
|
|
273
|
|
274 ;; Moved from x-toolbar.el, since InfoDock doesn't dump a x-toolbar.el.
|
|
275 (defun x-init-toolbar-from-resources (locale)
|
|
276 (loop for (specifier . resname) in
|
|
277 `(( ,top-toolbar-height . "topToolBarHeight")
|
|
278 (,bottom-toolbar-height . "bottomToolBarHeight")
|
|
279 ( ,left-toolbar-width . "leftToolBarWidth")
|
|
280 ( ,right-toolbar-width . "rightToolBarWidth")
|
|
281
|
|
282 ( ,top-toolbar-border-width . "topToolBarBorderWidth")
|
|
283 (,bottom-toolbar-border-width . "bottomToolBarBorderWidth")
|
|
284 ( ,left-toolbar-border-width . "leftToolBarBorderWidth")
|
|
285 ( ,right-toolbar-border-width . "rightToolBarBorderWidth"))
|
|
286 do
|
|
287 (x-init-specifier-from-resources
|
|
288 specifier 'natnum locale (cons resname (upcase-initials resname)))))
|
|
289
|
|
290 (defvar pre-x-win-initted nil)
|
|
291
|
|
292 (defun init-pre-x-win ()
|
|
293 "Initialize X Windows at startup (pre). Don't call this."
|
|
294 (when (not pre-x-win-initted)
|
|
295 (setq initial-frame-plist (if initial-frame-unmapped-p
|
|
296 '(initially-unmapped t)
|
|
297 nil))
|
|
298 (setq pre-x-win-initted t)))
|
|
299
|
|
300 (defvar x-win-initted nil)
|
|
301
|
|
302 (defun init-x-win ()
|
|
303 "Initialize X Windows at startup. Don't call this."
|
|
304 (when (not x-win-initted)
|
|
305 (defvar x-app-defaults-directory)
|
|
306 (init-pre-x-win)
|
872
|
307 (if (featurep 'mule) (init-mule-x-win))
|
428
|
308
|
|
309 ;; Open the X display when this file is loaded
|
|
310 ;; (Note that the first frame is created later.)
|
|
311 (setq x-initial-argv-list (cons (car command-line-args)
|
|
312 command-line-args-left))
|
|
313 ;; Locate the app-defaults directory
|
|
314 (when (and (boundp 'x-app-defaults-directory)
|
|
315 (null x-app-defaults-directory))
|
|
316 (setq x-app-defaults-directory
|
|
317 (locate-data-directory "app-defaults")))
|
|
318 (make-x-device nil)
|
|
319 (setq command-line-args-left (cdr x-initial-argv-list))
|
|
320 (setq x-win-initted t)))
|
|
321
|
|
322 (defvar post-x-win-initted nil)
|
|
323
|
|
324 (defun init-post-x-win ()
|
|
325 "Initialize X Windows at startup (post). Don't call this."
|
|
326 (when (not post-x-win-initted)
|
872
|
327 ;(if (featurep 'mule) (init-mule-x-win))
|
428
|
328 ;; Motif-ish bindings
|
|
329 ;; The following two were generally unliked.
|
|
330 ;;(define-key global-map '(shift delete) 'kill-primary-selection)
|
|
331 ;;(define-key global-map '(control delete) 'delete-primary-selection)
|
|
332 (define-key global-map '(shift insert) 'yank-clipboard-selection)
|
|
333 (define-key global-map '(control insert) 'copy-primary-selection)
|
|
334 ;; These are Sun-isms.
|
|
335 (define-key global-map 'copy 'copy-primary-selection)
|
|
336 (define-key global-map 'paste 'yank-clipboard-selection)
|
|
337 (define-key global-map 'cut 'kill-primary-selection)
|
|
338
|
|
339 ;;(define-key global-map '(shift menu) 'x-goto-menubar) ;NYI
|
|
340
|
|
341 (setq post-x-win-initted t)))
|
|
342
|
|
343 ;;; Keyboard initialization needs to be done differently for each X
|
|
344 ;;; console, so use create-console-hook.
|
|
345 (when (featurep 'x)
|
|
346 (add-hook
|
|
347 'create-console-hook
|
|
348 (lambda (console)
|
|
349 (letf (((selected-console) console))
|
|
350 (when (eq 'x (console-type console))
|
|
351 (x-initialize-keyboard)
|
|
352 (x-initialize-compose))))))
|
|
353
|
|
354 (defun make-frame-on-display (display &optional props)
|
|
355 "Create a frame on the X display named DISPLAY.
|
|
356 DISPLAY should be a standard display string such as \"unix:0\",
|
|
357 or nil for the display specified on the command line or in the
|
|
358 DISPLAY environment variable.
|
|
359
|
|
360 PROPS should be a plist of properties, as in the call to `make-frame'.
|
|
361
|
|
362 This function opens a connection to the display or reuses an existing
|
|
363 connection.
|
|
364
|
|
365 This function is a trivial wrapper around `make-frame-on-device'."
|
|
366 (interactive "sMake frame on display: ")
|
|
367 (if (equal display "") (setq display nil))
|
|
368 (make-frame-on-device 'x display props))
|
|
369
|
|
370 ;; Character 160 (octal 0240) displays incorrectly under X apparently
|
|
371 ;; due to a universally crocked font width specification. Display it
|
|
372 ;; as a space since that's what seems to be expected.
|
|
373 ;;
|
|
374 ;; (make-vector 256 nil) instead of (make-display-table) because
|
|
375 ;; make-display-table doesn't exist when this file is loaded.
|
|
376
|
|
377 (let ((tab (make-vector 256 nil)))
|
|
378 (aset tab 160 " ")
|
|
379 (set-specifier current-display-table tab 'global 'x))
|
|
380
|
|
381 ;;; x-init.el ends here
|