annotate lisp/x11/x-init.el @ 203:850242ba4a81 r20-3b28

Import from CVS: tag r20-3b28
author cvs
date Mon, 13 Aug 2007 10:02:21 +0200
parents b405438285a2
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-init.el --- initialization code for X windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Author: various
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Keywords: terminals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
23 ;; Free Software Foundation, 59 Temple Place - Suite 330,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
24 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;; If you want to change this variable, this is the place you must do it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;;; Do not set it to a string containing periods. X doesn't like that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;(setq x-emacs-application-class "Emacs")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;; selections and active regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;;; If and only if zmacs-regions is true:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;;; When a mark is pushed and the region goes into the "active" state, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;;; assert it as the Primary selection. This causes it to be hilighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;;; When the region goes into the "inactive" state, we disown the Primary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;;; selection, causing the region to be dehilighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;; Note that it is possible for the region to be in the "active" state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;;; and not be hilighted, if it is in the active state and then some other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;;; application asserts the selection. This is probably not a big deal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defun x-activate-region-as-selection ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (if (marker-buffer (mark-marker t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (x-own-selection (cons (point-marker t) (mark-marker t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;; OpenWindows-like "find" processing. These functions are really Sunisms,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;;; but we put them here instead of in x-win-sun.el in case someone wants
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
53 ;;; to use them when not running on a Sun console (presumably after binding
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
54 ;;; them to different keys, or putting them on menus.)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (defvar ow-find-last-string nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (defvar ow-find-last-clipboard nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (defun ow-find (&optional backward-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 "Search forward the next occurrence of the text of the selection."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (let ((sel (condition-case () (x-get-selection) (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (clip (condition-case () (x-get-clipboard) (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (setq text (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (sel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ((not (equal clip ow-find-last-clipboard))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (setq ow-find-last-clipboard clip))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (ow-find-last-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (t (error "No selection available"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (setq ow-find-last-string text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (cond (backward-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (search-backward text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (set-mark (+ (point) (length text))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (search-forward text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (set-mark (- (point) (length text)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (zmacs-activate-region)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (defun ow-find-backward ()
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
81 "Search backward for the previous occurrence of the text of the selection."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (ow-find t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ;;; Load X-server specific code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ;;; Specifically, load some code to repair the grievous damage that MIT and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ;;; Sun have done to the default keymap for the Sun keyboards.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
89 (eval-when-compile
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
90 (defmacro x-define-dead-key (key map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
91 `(when (x-keysym-on-keyboard-p ,(symbol-name key))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
92 (define-key function-key-map [,key] ',map))))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
93
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
94 (defun x-initialize-compose ()
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
95 "Enable compose processing"
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
96 (autoload 'compose-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
97 (autoload 'compose-acute-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
98 (autoload 'compose-grave-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
99 (autoload 'compose-cedilla-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
100 (autoload 'compose-diaeresis-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
101 (autoload 'compose-circumflex-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
102 (autoload 'compose-tilde-map "x-compose" nil t 'keymap)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
103
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
104 (when (x-keysym-on-keyboard-p "Multi_key")
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
105 (define-key function-key-map [multi-key] 'compose-map))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
106
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
107 ;; The dead keys might really be called just about anything, depending
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
108 ;; on the vendor. MIT thinks that the prefixes are "SunFA_", "D", and
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
109 ;; "hpmute_" for Sun, DEC, and HP respectively. However, OpenWindows 3
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
110 ;; thinks that the prefixes are "SunXK_FA_", "DXK_", and "hpXK_mute_".
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
111 ;; And HP (who don't mention Sun and DEC at all) use "XK_mute_".
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
112 ;; Go figure.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
113
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
114 ;; Presumably if someone is running OpenWindows, they won't be using
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
115 ;; the DEC or HP keysyms, but if they are defined then that is possible,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
116 ;; so in that case we accept them all.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
117
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
118 ;; If things seem not to be working, you might want to check your
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
119 ;; /usr/lib/X11/XKeysymDB file to see if your vendor has an equally
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
120 ;; mixed up view of what these keys should be called.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
121
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
122 ;; Canonical names:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
123 (x-define-dead-key acute compose-acute-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
124 (x-define-dead-key grave compose-grave-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
125 (x-define-dead-key cedilla compose-cedilla-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
126 (x-define-dead-key diaeresis compose-diaeresis-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
127 (x-define-dead-key circumflex compose-circumflex-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
128 (x-define-dead-key tilde compose-tilde-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
129 (x-define-dead-key degree compose-ring-map)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
130
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
131 ;; Sun according to MIT:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
132 (x-define-dead-key SunFA_Acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
133 (x-define-dead-key SunFA_Grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
134 (x-define-dead-key SunFA_Cedilla compose-cedilla-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
135 (x-define-dead-key SunFA_Diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
136 (x-define-dead-key SunFA_Circum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
137 (x-define-dead-key SunFA_Tilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
138
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
139 ;; Sun according to OpenWindows 2:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
140 (x-define-dead-key Dead_Grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
141 (x-define-dead-key Dead_Circum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
142 (x-define-dead-key Dead_Tilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
143
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
144 ;; Sun according to OpenWindows 3:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
145 (x-define-dead-key SunXK_FA_Acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
146 (x-define-dead-key SunXK_FA_Grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
147 (x-define-dead-key SunXK_FA_Cedilla compose-cedilla-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
148 (x-define-dead-key SunXK_FA_Diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
149 (x-define-dead-key SunXK_FA_Circum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
150 (x-define-dead-key SunXK_FA_Tilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
151
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
152 ;; DEC according to MIT:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
153 (x-define-dead-key Dacute_accent compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
154 (x-define-dead-key Dgrave_accent compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
155 (x-define-dead-key Dcedilla_accent compose-cedilla-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
156 (x-define-dead-key Dcircumflex_accent compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
157 (x-define-dead-key Dtilde compose-tilde-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
158 (x-define-dead-key Dring_accent compose-ring-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
159
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
160 ;; DEC according to OpenWindows 3:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
161 (x-define-dead-key DXK_acute_accent compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
162 (x-define-dead-key DXK_grave_accent compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
163 (x-define-dead-key DXK_cedilla_accent compose-cedilla-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
164 (x-define-dead-key DXK_circumflex_accent compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
165 (x-define-dead-key DXK_tilde compose-tilde-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
166 (x-define-dead-key DXK_ring_accent compose-ring-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
167
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
168 ;; HP according to MIT:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
169 (x-define-dead-key hpmute_acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
170 (x-define-dead-key hpmute_grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
171 (x-define-dead-key hpmute_diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
172 (x-define-dead-key hpmute_asciicircum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
173 (x-define-dead-key hpmute_asciitilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
174
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
175 ;; HP according to OpenWindows 3:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
176 (x-define-dead-key hpXK_mute_acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
177 (x-define-dead-key hpXK_mute_grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
178 (x-define-dead-key hpXK_mute_diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
179 (x-define-dead-key hpXK_mute_asciicircum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
180 (x-define-dead-key hpXK_mute_asciitilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
181
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
182 ;; HP according to HP-UX 8.0:
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
183 (x-define-dead-key XK_mute_acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
184 (x-define-dead-key XK_mute_grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
185 (x-define-dead-key XK_mute_diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
186 (x-define-dead-key XK_mute_asciicircum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
187 (x-define-dead-key XK_mute_asciitilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
188
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
189 ;; Xfree86 seems to use lower case and a hyphen
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
190 (x-define-dead-key dead-acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
191 (x-define-dead-key dead-grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
192 (x-define-dead-key dead-cedilla compose-cedilla-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
193 (x-define-dead-key dead-diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
194 (x-define-dead-key dead-circum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
195 (x-define-dead-key dead-tilde compose-tilde-map)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
196
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
197 ;; and AIX uses underscore, sigh....
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
198 (x-define-dead-key dead_acute compose-acute-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
199 (x-define-dead-key dead_grave compose-grave-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
200 (x-define-dead-key dead_cedilla compose-cedilla-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
201 (x-define-dead-key dead_diaeresis compose-diaeresis-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
202 (x-define-dead-key dead_circum compose-circumflex-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
203 (x-define-dead-key dead_tilde compose-tilde-map)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
204 )
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
205
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (defun x-initialize-keyboard ()
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
207 "Perform X-Server-specific initializations. Don't call this."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
208 ;; This is some heuristic junk that tries to guess whether this is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
209 ;; a Sun keyboard.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
210 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
211 ;; One way of implementing this (which would require C support) would
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
212 ;; be to examine the X keymap itself and see if the layout looks even
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
213 ;; remotely like a Sun - check for the Find key on a particular
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
214 ;; keycode, for example. It'd be nice to have a table of this to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
215 ;; recognize various keyboards; see also xkeycaps.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
216 (let ((vendor (x-server-vendor)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
217 (cond ((or (string-match "Sun Microsystems" vendor)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 ;; MIT losingly fails to tell us what hardware the X server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 ;; is managing, so assume all MIT displays are Suns... HA HA!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (string-equal "MIT X Consortium" vendor)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
221 (string-equal "X Consortium" vendor))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
222 ;; Ok, we think this could be a Sun keyboard. Load the Sun code.
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
223 (load "x-win-sun"))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
224 ((string-match "XFree86" vendor)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
225 ;; Those XFree86 people do some weird keysym stuff, too.
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
226 (load "x-win-xfree86")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (defvar pre-x-win-initted nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (defun init-pre-x-win ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 "Initialize X Windows at startup (pre). Don't call this."
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
233 (when (not pre-x-win-initted)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
234 (require 'x-iso8859-1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
235 (setq character-set-property 'x-iso8859/1) ; see x-iso8859-1.el
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
237 (setq initial-frame-plist (if initial-frame-unmapped-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
238 '(initially-unmapped t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
239 nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
240 (setq pre-x-win-initted t)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (defvar x-win-initted nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (defun init-x-win ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 "Initialize X Windows at startup. Don't call this."
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
246 (when (not x-win-initted)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
247 (init-pre-x-win)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
249 ;; Open the X display when this file is loaded
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
250 ;; (Note that the first frame is created later.)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
251 (setq x-initial-argv-list (cons (car command-line-args)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
252 command-line-args-left))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
253 (make-x-device nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
254 (setq command-line-args-left (cdr x-initial-argv-list))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
255 (setq x-win-initted t)))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
256
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (defvar post-x-win-initted nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (defun init-post-x-win ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 "Initialize X Windows at startup (post). Don't call this."
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
261 (when (not post-x-win-initted)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
262 ;; We can't load this until after the initial X device is created
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
263 ;; because the icon initialization needs to access the display to get
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
264 ;; any toolbar-related color resources.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
265 (if (featurep 'toolbar)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
266 (init-x-toolbar))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
267 (if (featurep 'mule)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
268 (init-mule-x-win))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
269 ;; these are only ever called if zmacs-regions is true.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
270 (add-hook 'zmacs-deactivate-region-hook
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
271 (lambda ()
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
272 (if (console-on-window-system-p)
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
273 (x-disown-selection))))
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
274 (add-hook 'zmacs-activate-region-hook
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
275 (lambda ()
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
276 (if (console-on-window-system-p)
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
277 (x-activate-region-as-selection))))
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
278 (add-hook 'zmacs-update-region-hook
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
279 (lambda ()
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
280 (if (console-on-window-system-p)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
281 (x-activate-region-as-selection))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
282 ;; Motif-ish bindings
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
283 ;; The following two were generally unliked.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
284 ;;(define-key global-map '(shift delete) 'x-kill-primary-selection)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
285 ;;(define-key global-map '(control delete) 'x-delete-primary-selection)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
286 (define-key global-map '(shift insert) 'x-yank-clipboard-selection)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
287 (define-key global-map '(control insert) 'x-copy-primary-selection)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
288 ;; These are Sun-isms.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
289 (define-key global-map 'copy 'x-copy-primary-selection)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
290 (define-key global-map 'paste 'x-yank-clipboard-selection)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
291 (define-key global-map 'cut 'x-kill-primary-selection)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
293 (define-key global-map 'menu 'popup-mode-menu)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
294 ;;(define-key global-map '(shift menu) 'x-goto-menubar) ;NYI
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
296 (setq post-x-win-initted t)))
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
297
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
298 ;;; Keyboard initialization needs to be done differently for each X
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
299 ;;; console, so use create-console-hook.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
300 (when (featurep 'x)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
301 (add-hook
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
302 'create-console-hook
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
303 (lambda (console)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
304 (letf (((selected-console) console))
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 74
diff changeset
305 (when (eq 'x (console-type console))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
306 (x-initialize-keyboard)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
307 (x-initialize-compose))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
309 (defun make-frame-on-display (display &optional props)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 "Create a frame on the X display named DISPLAY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 DISPLAY should be a standard display string such as \"unix:0\",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 or nil for the display specified on the command line or in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 DISPLAY environment variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
315 PROPS should be a plist of properties, as in the call to `make-frame'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 This function opens a connection to the display or reuses an existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 connection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 This function is a trivial wrapper around `make-frame-on-device'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (interactive "sMake frame on display: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (if (equal display "") (setq display nil))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
323 (make-frame-on-device 'x display props))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 ;;; x-init.el ends here