*** empty log message ***
[bpt/emacs.git] / lisp / term / x-win.el
CommitLineData
63f77899
JB
1;; Parse switches controlling how Emacs interfaces with X window system.
2;; Copyright (C) 1990 Free Software Foundation, Inc.
3
4;; This file is part of GNU Emacs.
5
6;; GNU Emacs is distributed in the hope that it will be useful,
7;; but WITHOUT ANY WARRANTY. No author or distributor
8;; accepts responsibility to anyone for the consequences of using it
9;; or for whether it serves any particular purpose or works at all,
10;; unless he says so in writing. Refer to the GNU Emacs General Public
11;; License for full details.
12
13;; Everyone is granted permission to copy, modify and redistribute
14;; GNU Emacs, but only under the conditions described in the
15;; GNU Emacs General Public License. A copy of this license is
16;; supposed to have been given to you along with GNU Emacs so you
17;; can know your rights and responsibilities. It should be in a
18;; file named COPYING. Among other things, the copyright notice
19;; and this notice must be preserved on all copies.
20
21
22;; X-win.el: this file is loaded from ../lisp/startup.el when it recognizes
23;; that X windows are to be used. Command line switches are parsed and those
24;; pertaining to X are processed and removed from the command line. The
25;; X display is opened and hooks are set for popping up the initial window.
26
27;; startup.el will then examine startup files, and eventually call the hooks
28;; which create the first window (s).
29\f
30;; These are the standard X switches from the Xt Initialize.c file of
31;; Release 4.
32
33;; Command line Resource Manager string
34
35;; +rv *reverseVideo
36;; +synchronous *synchronous
37;; -background *background
38;; -bd *borderColor
39;; -bg *background
40;; -bordercolor *borderColor
41;; -borderwidth .borderWidth
42;; -bw .borderWidth
43;; -display .display
44;; -fg *foreground
45;; -fn *font
46;; -font *font
47;; -foreground *foreground
48;; -geometry .geometry
49;; -iconic .iconic
50;; -name .name
51;; -reverse *reverseVideo
52;; -rv *reverseVideo
53;; -selectionTimeout .selectionTimeout
54;; -synchronous *synchronous
55;; -title .title
56;; -xrm
57
63f77899
JB
58;; An alist of X options and the function which handles them. See
59;; ../startup.el.
60
63c86e17
JB
61(if (not (eq window-system 'x))
62 (error "Loading x-win.el but not compiled for X"))
63
f4ce8684
JB
64;; This is a temporary work-around while we the separate keymap
65;; stuff isn't yet fixed. These variables aren't used anymore,
66;; but the lisp code wants them to exist. -JimB
67(setq global-mouse-map (make-sparse-keymap))
68(setq global-function-map (make-sparse-keymap))
69
63c86e17
JB
70(require 'x-mouse)
71(require 'screen)
72
63f77899 73(setq command-switch-alist
63c86e17
JB
74 (append '(("-dm" . x-establish-daemon-mode)
75 ("-bw" . x-handle-numeric-switch)
76 ("-d" . x-handle-display)
77 ("-display" . x-handle-display)
78 ("-name" . x-handle-switch)
79 ("-T" . x-handle-switch)
80 ("-r" . x-handle-switch)
81 ("-rv" . x-handle-switch)
82 ("-reverse" . x-handle-switch)
83 ("-fn" . x-handle-switch)
84 ("-font" . x-handle-switch)
85 ("-ib" . x-handle-switch)
86 ("-g" . x-handle-geometry)
87 ("-geometry" . x-handle-geometry)
88 ("-fg" . x-handle-switch)
89 ("-foreground". x-handle-switch)
90 ("-bg" . x-handle-switch)
91 ("-background". x-handle-switch)
92 ("-ms" . x-handle-switch)
93 ("-ib" . x-handle-switch)
94 ("-iconic" . x-handle-switch)
95 ("-cr" . x-handle-switch)
96 ("-vb" . x-handle-switch)
97 ("-hb" . x-handle-switch)
98 ("-bd" . x-handle-switch))
63f77899
JB
99 command-switch-alist))
100
63f77899
JB
101(defconst x-switch-definitions
102 '(("-name" name)
103 ("-T" name)
104 ("-r" lose)
105 ("-rv" lose)
106 ("-reverse" lose)
107 ("-fn" font)
108 ("-font" font)
109 ("-ib" internal-border-width)
110 ("-fg" foreground-color)
111 ("-foreground" foreground-color)
112 ("-bg" background-color)
113 ("-background" background-color)
114 ("-ms" mouse-color)
115 ("-cr" cursor-color)
116 ("-ib" icon-type t)
117 ("-iconic" iconic-startup t)
118 ("-vb" vertical-scroll-bar t)
119 ("-hb" horizontal-scroll-bar t)
120 ("-bd" border-color)
121 ("-bw" border-width)))
122
123;; Handler for switches of the form "-switch value" or "-switch".
124(defun x-handle-switch (switch)
125 (let ((aelt (assoc switch x-switch-definitions)))
126 (if aelt
127 (if (nth 2 aelt)
b54621ea 128 (setq screen-default-alist
63f77899 129 (cons (cons (nth 1 aelt) (nth 2 aelt))
b54621ea
JB
130 screen-default-alist))
131 (setq screen-default-alist
63f77899
JB
132 (cons (cons (nth 1 aelt)
133 (car x-invocation-args))
b54621ea 134 screen-default-alist)
63f77899
JB
135 x-invocation-args (cdr x-invocation-args))))))
136
137;; Handler for switches of the form "-switch n"
138(defun x-handle-numeric-switch (switch)
139 (let ((aelt (assoc switch x-switch-definitions)))
140 (if aelt
b54621ea 141 (setq screen-default-alist
63f77899
JB
142 (cons (cons (nth 1 aelt)
143 (string-to-int (car x-invocation-args)))
b54621ea 144 screen-default-alist)
63f77899
JB
145 x-invocation-args
146 (cdr x-invocation-args)))))
147
148;; Handle the geometry option
149(defun x-handle-geometry (switch)
b54621ea 150 (setq initial-screen-alist (append initial-screen-alist
63f77899
JB
151 (x-geometry (car x-invocation-args)))
152 x-invocation-args (cdr x-invocation-args)))
153
154;; The daemon stuff isn't really useful at the moment.
155(defvar x-daemon-mode nil
156 "When set, means initially create just a minibuffer.")
157
158(defun x-establish-daemon-mode (switch)
159 (setq x-daemon-mode t))
160
161(defvar x-display-name nil
162 "The X display name specifying server and X screen.")
163
164(defun x-handle-display (switch)
165 (setq x-display-name (car x-invocation-args)
166 x-invocation-args (cdr x-invocation-args)))
167
63f77899
JB
168(defvar x-invocation-args nil)
169
8769d648
JB
170(defun x-handle-args (args)
171 "Here the X-related command line options in ARGS are processed,
172before the user's startup file is loaded. They are copied to
173x-invocation args from which the X-related things are extracted, first
174the switch (e.g., \"-fg\") in the following code, and possible values
175(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
176This returns ARGS with the arguments that have been processed removed."
63c86e17
JB
177 (setq x-invocation-args args
178 args nil)
179 (while x-invocation-args
180 (let* ((this-switch (car x-invocation-args))
181 (aelt (assoc this-switch command-switch-alist)))
182 (setq x-invocation-args (cdr x-invocation-args))
183 (if aelt
184 (funcall (cdr aelt) this-switch)
185 (setq args (cons this-switch args)))))
186 (setq args (nreverse args)))
187
b54621ea
JB
188
189;; Handle Xresources.
190
191(defun x-read-resources ()
67b61085 192 "Return an alist of values
b54621ea
JB
193 "Reread the X defaults from the X server and install them in
194`screen-default-alist', to be used in new screens."
195 (interactive)
196 (mapcar (function
197 (lambda (key-resname-default)
1c599895 198 (let* ((key (nth 0 key-resname-default))
b54621ea
JB
199 (tail (assq key screen-default-alist))
200 (value
1c599895 201 (or (x-get-resource (nth 1 key-resname-default))
99d33957 202 (nth 2 key-resname-default))))
b54621ea
JB
203 (if tail (setcdr tail value)
204 (setq screen-default-alist
205 (cons (cons key value)
206 screen-default-alist))))))
207 '((font "font" "9x15")
208 (background-color "background" "white")
209 (border-width "#BorderWidth" 2)
210 (internal-border-width "#InternalBorderWidth" 1)
211
212 (foreground-color "foreground" "black")
213 (mouse-color "mouse" "black")
214 (cursor-color "cursor" "black")
84545e78
JB
215 (border-color "border" "black")))
216 (setq x-screen-defaults screen-default-alist))
63f77899
JB
217
218\f
219;; This is the function which creates the first X window. It is called
63c86e17 220;; from startup.el before the user's init file is processed.
63f77899
JB
221
222(defun x-pop-initial-window ()
63f77899 223 ;; see screen.el for this function
b54621ea
JB
224 (pop-initial-screen (append initial-screen-alist
225 screen-default-alist))
63f77899
JB
226 (delete-screen terminal-screen))
227
228\f
229;;
230;; Standard X cursor shapes, courtesy of Mr. Fox, who wanted ALL of them.
231;;
232
233(defconst x-pointer-X-cursor 0)
234(defconst x-pointer-arrow 2)
235(defconst x-pointer-based-arrow-down 4)
236(defconst x-pointer-based-arrow-up 6)
237(defconst x-pointer-boat 8)
238(defconst x-pointer-bogosity 10)
239(defconst x-pointer-bottom-left-corner 12)
240(defconst x-pointer-bottom-right-corner 14)
241(defconst x-pointer-bottom-side 16)
242(defconst x-pointer-bottom-tee 18)
243(defconst x-pointer-box-spiral 20)
244(defconst x-pointer-center-ptr 22)
245(defconst x-pointer-circle 24)
246(defconst x-pointer-clock 26)
247(defconst x-pointer-coffee-mug 28)
248(defconst x-pointer-cross 30)
249(defconst x-pointer-cross-reverse 32)
250(defconst x-pointer-crosshair 34)
251(defconst x-pointer-diamond-cross 36)
252(defconst x-pointer-dot 38)
253(defconst x-pointer-dotbox 40)
254(defconst x-pointer-double-arrow 42)
255(defconst x-pointer-draft-large 44)
256(defconst x-pointer-draft-small 46)
257(defconst x-pointer-draped-box 48)
258(defconst x-pointer-exchange 50)
259(defconst x-pointer-fleur 52)
260(defconst x-pointer-gobbler 54)
261(defconst x-pointer-gumby 56)
262(defconst x-pointer-hand1 58)
263(defconst x-pointer-hand2 60)
264(defconst x-pointer-heart 62)
265(defconst x-pointer-icon 64)
266(defconst x-pointer-iron-cross 66)
267(defconst x-pointer-left-ptr 68)
268(defconst x-pointer-left-side 70)
269(defconst x-pointer-left-tee 72)
270(defconst x-pointer-leftbutton 74)
271(defconst x-pointer-ll-angle 76)
272(defconst x-pointer-lr-angle 78)
273(defconst x-pointer-man 80)
274(defconst x-pointer-middlebutton 82)
275(defconst x-pointer-mouse 84)
276(defconst x-pointer-pencil 86)
277(defconst x-pointer-pirate 88)
278(defconst x-pointer-plus 90)
279(defconst x-pointer-question-arrow 92)
280(defconst x-pointer-right-ptr 94)
281(defconst x-pointer-right-side 96)
282(defconst x-pointer-right-tee 98)
283(defconst x-pointer-rightbutton 100)
284(defconst x-pointer-rtl-logo 102)
285(defconst x-pointer-sailboat 104)
286(defconst x-pointer-sb-down-arrow 106)
287(defconst x-pointer-sb-h-double-arrow 108)
288(defconst x-pointer-sb-left-arrow 110)
289(defconst x-pointer-sb-right-arrow 112)
290(defconst x-pointer-sb-up-arrow 114)
291(defconst x-pointer-sb-v-double-arrow 116)
292(defconst x-pointer-shuttle 118)
293(defconst x-pointer-sizing 120)
294(defconst x-pointer-spider 122)
295(defconst x-pointer-spraycan 124)
296(defconst x-pointer-star 126)
297(defconst x-pointer-target 128)
298(defconst x-pointer-tcross 130)
299(defconst x-pointer-top-left-arrow 132)
300(defconst x-pointer-top-left-corner 134)
301(defconst x-pointer-top-right-corner 136)
302(defconst x-pointer-top-side 138)
303(defconst x-pointer-top-tee 140)
304(defconst x-pointer-trek 142)
305(defconst x-pointer-ul-angle 144)
306(defconst x-pointer-umbrella 146)
307(defconst x-pointer-ur-angle 148)
308(defconst x-pointer-watch 150)
309(defconst x-pointer-xterm 152)
310\f
311;;
312;; Available colors
313;;
314
315(defvar x-colors '("aquamarine"
316 "Aquamarine"
317 "medium aquamarine"
318 "MediumAquamarine"
319 "black"
320 "Black"
321 "blue"
322 "Blue"
323 "cadet blue"
324 "CadetBlue"
325 "cornflower blue"
326 "CornflowerBlue"
327 "dark slate blue"
328 "DarkSlateBlue"
329 "light blue"
330 "LightBlue"
331 "light steel blue"
332 "LightSteelBlue"
333 "medium blue"
334 "MediumBlue"
335 "medium slate blue"
336 "MediumSlateBlue"
337 "midnight blue"
338 "MidnightBlue"
339 "navy blue"
340 "NavyBlue"
341 "navy"
342 "Navy"
343 "sky blue"
344 "SkyBlue"
345 "slate blue"
346 "SlateBlue"
347 "steel blue"
348 "SteelBlue"
349 "coral"
350 "Coral"
351 "cyan"
352 "Cyan"
353 "firebrick"
354 "Firebrick"
355 "brown"
356 "Brown"
357 "gold"
358 "Gold"
359 "goldenrod"
360 "Goldenrod"
361 "medium goldenrod"
362 "MediumGoldenrod"
363 "green"
364 "Green"
365 "dark green"
366 "DarkGreen"
367 "dark olive green"
368 "DarkOliveGreen"
369 "forest green"
370 "ForestGreen"
371 "lime green"
372 "LimeGreen"
373 "medium forest green"
374 "MediumForestGreen"
375 "medium sea green"
376 "MediumSeaGreen"
377 "medium spring green"
378 "MediumSpringGreen"
379 "pale green"
380 "PaleGreen"
381 "sea green"
382 "SeaGreen"
383 "spring green"
384 "SpringGreen"
385 "yellow green"
386 "YellowGreen"
387 "dark slate grey"
388 "DarkSlateGrey"
389 "dark slate gray"
390 "DarkSlateGray"
391 "dim grey"
392 "DimGrey"
393 "dim gray"
394 "DimGray"
395 "light grey"
396 "LightGrey"
397 "light gray"
398 "LightGray"
399 "gray"
400 "grey"
401 "Gray"
402 "Grey"
403 "khaki"
404 "Khaki"
405 "magenta"
406 "Magenta"
407 "maroon"
408 "Maroon"
409 "orange"
410 "Orange"
411 "orchid"
412 "Orchid"
413 "dark orchid"
414 "DarkOrchid"
415 "medium orchid"
416 "MediumOrchid"
417 "pink"
418 "Pink"
419 "plum"
420 "Plum"
421 "red"
422 "Red"
423 "indian red"
424 "IndianRed"
425 "medium violet red"
426 "MediumVioletRed"
427 "orange red"
428 "OrangeRed"
429 "violet red"
430 "VioletRed"
431 "salmon"
432 "Salmon"
433 "sienna"
434 "Sienna"
435 "tan"
436 "Tan"
437 "thistle"
438 "Thistle"
439 "turquoise"
440 "Turquoise"
441 "dark turquoise"
442 "DarkTurquoise"
443 "medium turquoise"
444 "MediumTurquoise"
445 "violet"
446 "Violet"
447 "blue violet"
448 "BlueViolet"
449 "wheat"
450 "Wheat"
451 "white"
452 "White"
453 "yellow"
454 "Yellow"
455 "green yellow"
456 "GreenYellow")
457 "The full list of X colors from the rgb.text file.")
458
459(defun x-defined-colors ()
460 "Return a list of colors supported by the current X-Display."
461 (let ((all-colors x-colors)
462 (this-color nil)
463 (defined-colors nil))
464 (while all-colors
465 (setq this-color (car all-colors)
466 all-colors (cdr all-colors))
467 (and (x-defined-color this-color)
468 (setq defined-colors (cons this-color defined-colors))))
469 defined-colors))
470
471\f
63f77899
JB
472;;
473;; Function key processing under X. Function keys are received through
474;; in the input stream as Lisp symbols.
475;;
476
477(defun define-function-key (map sym definition)
478 (let ((exist (assq sym (cdr map))))
479 (if exist
480 (setcdr exist definition)
481 (setcdr map
482 (cons (cons sym definition)
483 (cdr map))))))
484
485;; For unused keysyms. If this happens, it's probably a server or
486;; Xlib bug.
487
488(defun weird-x-keysym ()
489 (interactive)
490 (error "Bizarre X keysym received."))
491(define-function-key global-function-map 'xk-not-serious 'weird-x-keysym)
492
493;; Keypad type things
494
495(define-function-key global-function-map 'xk-home 'beginning-of-line)
496(define-function-key global-function-map 'xk-left 'backward-char)
497(define-function-key global-function-map 'xk-up 'previous-line)
498(define-function-key global-function-map 'xk-right 'forward-char)
499(define-function-key global-function-map 'xk-down 'next-line)
500(define-function-key global-function-map 'xk-prior 'previous-line)
501(define-function-key global-function-map 'xk-next 'next-line)
502(define-function-key global-function-map 'xk-end 'end-of-line)
503(define-function-key global-function-map 'xk-begin 'beginning-of-line)
504
505 ;; IsMiscFunctionKey
506
507(define-function-key global-function-map 'xk-select nil)
508(define-function-key global-function-map 'xk-print nil)
509(define-function-key global-function-map 'xk-execute nil)
510(define-function-key global-function-map 'xk-insert nil)
511(define-function-key global-function-map 'xk-undo nil)
512(define-function-key global-function-map 'xk-redo nil)
513(define-function-key global-function-map 'xk-menu nil)
514(define-function-key global-function-map 'xk-find nil)
515(define-function-key global-function-map 'xk-cancel nil)
516(define-function-key global-function-map 'xk-help nil)
517(define-function-key global-function-map 'xk-break nil)
518
519 ;; IsKeypadKey
520
521(define-function-key global-function-map 'xk-kp-space
522 '(lambda nil (interactive)
523 (insert " ")))
524(define-function-key global-function-map 'xk-kp-tab
525 '(lambda nil (interactive)
526 (insert "\t")))
527(define-function-key global-function-map 'xk-kp-enter
528 '(lambda nil (interactive)
529 (insert "\n")))
530
ac440144 531(define-function-key global-function-map 'xk-kp-f1 nil)
63f77899
JB
532(define-function-key global-function-map 'xk-kp-f2 nil)
533(define-function-key global-function-map 'xk-kp-f3 nil)
534(define-function-key global-function-map 'xk-kp-f4 nil)
535
536(define-function-key global-function-map 'xk-kp-equal
537 '(lambda nil (interactive)
538 (insert "=")))
539(define-function-key global-function-map 'xk-kp-multiply
540 '(lambda nil (interactive)
541 (insert "*")))
542(define-function-key global-function-map 'xk-kp-add
543 '(lambda nil (interactive)
544 (insert "+")))
545(define-function-key global-function-map 'xk-kp-separator
546 '(lambda nil (interactive)
547 (insert ";")))
548(define-function-key global-function-map 'xk-kp-subtract
549 '(lambda nil (interactive)
550 (insert "-")))
551(define-function-key global-function-map 'xk-kp-decimal
552 '(lambda nil (interactive)
553 (insert ".")))
554(define-function-key global-function-map 'xk-kp-divide
555 '(lambda nil (interactive)
556 (insert "/")))
557
558(define-function-key global-function-map 'xk-kp-0
559 '(lambda nil (interactive)
560 (insert "0")))
561(define-function-key global-function-map 'xk-kp-1
562 '(lambda nil (interactive)
563 (insert "1")))
564(define-function-key global-function-map 'xk-kp-2
565 '(lambda nil (interactive)
566 (insert "2")))
567(define-function-key global-function-map 'xk-kp-3
568 '(lambda nil (interactive)
569 (insert "3")))
570(define-function-key global-function-map 'xk-kp-4
571 '(lambda nil (interactive)
572 (insert "4")))
573(define-function-key global-function-map 'xk-kp-5
574 '(lambda nil (interactive)
575 (insert "5")))
576(define-function-key global-function-map 'xk-kp-6
577 '(lambda nil (interactive)
578 (insert "6")))
579(define-function-key global-function-map 'xk-kp-7
580 '(lambda nil (interactive)
581 (insert "7")))
582(define-function-key global-function-map 'xk-kp-8
583 '(lambda nil (interactive)
584 (insert "8")))
585(define-function-key global-function-map 'xk-kp-9
586 '(lambda nil (interactive)
587 (insert "9")))
588
589 ;; IsFunctionKey
590
591(define-function-key global-function-map 'xk-f1 'rmail)
592(define-function-key global-function-map 'xk-f2 nil)
593(define-function-key global-function-map 'xk-f3 nil)
594(define-function-key global-function-map 'xk-f4 nil)
595(define-function-key global-function-map 'xk-f5 nil)
596(define-function-key global-function-map 'xk-f6 nil)
597(define-function-key global-function-map 'xk-f7 nil)
598(define-function-key global-function-map 'xk-f8 nil)
599(define-function-key global-function-map 'xk-f9 nil)
600(define-function-key global-function-map 'xk-f10 nil)
601(define-function-key global-function-map 'xk-f11 nil)
602(define-function-key global-function-map 'xk-f12 nil)
603(define-function-key global-function-map 'xk-f13 nil)
604(define-function-key global-function-map 'xk-f14 nil)
605(define-function-key global-function-map 'xk-f15 nil)
606(define-function-key global-function-map 'xk-f16 nil)
607(define-function-key global-function-map 'xk-f17 nil)
608(define-function-key global-function-map 'xk-f18 nil)
609(define-function-key global-function-map 'xk-f19 nil)
610(define-function-key global-function-map 'xk-f20 nil)
611(define-function-key global-function-map 'xk-f21 nil)
612(define-function-key global-function-map 'xk-f22 nil)
613(define-function-key global-function-map 'xk-f23 nil)
614(define-function-key global-function-map 'xk-f24 nil)
615(define-function-key global-function-map 'xk-f25 nil)
616(define-function-key global-function-map 'xk-f26 nil)
617(define-function-key global-function-map 'xk-f27 nil)
618(define-function-key global-function-map 'xk-f28 nil)
619(define-function-key global-function-map 'xk-f29 nil)
620(define-function-key global-function-map 'xk-f30 nil)
621(define-function-key global-function-map 'xk-f31 nil)
622(define-function-key global-function-map 'xk-f32 nil)
623(define-function-key global-function-map 'xk-f33 nil)
624(define-function-key global-function-map 'xk-f34 nil)
625(define-function-key global-function-map 'xk-f35 nil)
63c86e17 626
b54621ea
JB
627;;; Do the actual X Windows setup here; the above code just defines
628;;; functions and variables that we use now.
63c86e17 629
63c86e17
JB
630(x-open-connection (or x-display-name
631 (setq x-display-name (getenv "DISPLAY"))))
e9de784c
JB
632
633;; xterm.c depends on using interrupt-driven input, but we don't want
634;; the fcntls to apply to the terminal, so we do this after opening
635;; the display.
636(set-input-mode t nil t)
637
67dbf5b0 638(setq screen-creation-function 'x-create-screen)
99d33957 639(x-read-resources)
8769d648 640(setq command-line-args (x-handle-args command-line-args))
63c86e17
JB
641(x-pop-initial-window)
642
643(setq suspend-hook
644 '(lambda ()
645 (error "Suspending an emacs running under X makes no sense")))
646
647(define-key global-map "\C-z" 'iconify-emacs)