(calendar-location-name, calendar-latitude)
[emacs.git] / lisp / term / x-win.el
blob7d7f091b2fdff8a47f980bf9aab5fb68ea0cdf08
1 ;;; x-win.el --- parse relevant switches and set up for X -*-coding: iso-2022-7bit;-*-
3 ;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: FSF
7 ;; Keywords: terminals, i18n
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;; X-win.el: this file defines functions to initialize the X window
29 ;; system and process X-specific command line parameters before
30 ;; creating the first X frame.
32 ;; Note that contrary to previous Emacs versions, the act of loading
33 ;; this file should not have the side effect of initializing the
34 ;; window system or processing command line arguments (this file is
35 ;; now loaded in loadup.el). See the variables
36 ;; `handle-args-function-alist' and
37 ;; `window-system-initialization-alist' for more details.
39 ;; startup.el will then examine startup files, and eventually call the hooks
40 ;; which create the first window(s).
42 ;;; Code:
44 ;; These are the standard X switches from the Xt Initialize.c file of
45 ;; Release 4.
47 ;; Command line Resource Manager string
49 ;; +rv *reverseVideo
50 ;; +synchronous *synchronous
51 ;; -background *background
52 ;; -bd *borderColor
53 ;; -bg *background
54 ;; -bordercolor *borderColor
55 ;; -borderwidth .borderWidth
56 ;; -bw .borderWidth
57 ;; -display .display
58 ;; -fg *foreground
59 ;; -fn *font
60 ;; -font *font
61 ;; -foreground *foreground
62 ;; -geometry .geometry
63 ;; -iconic .iconic
64 ;; -name .name
65 ;; -reverse *reverseVideo
66 ;; -rv *reverseVideo
67 ;; -selectionTimeout .selectionTimeout
68 ;; -synchronous *synchronous
69 ;; -xrm
71 ;; An alist of X options and the function which handles them. See
72 ;; ../startup.el.
74 (if (not (fboundp 'x-create-frame))
75 (error "%s: Loading x-win.el but not compiled for X" (invocation-name)))
77 (require 'frame)
78 (require 'mouse)
79 (require 'scroll-bar)
80 (require 'faces)
81 (require 'select)
82 (require 'menu-bar)
83 (require 'fontset)
84 (require 'x-dnd)
86 (defvar x-invocation-args)
87 (defvar x-keysym-table)
88 (defvar x-selection-timeout)
89 (defvar x-session-id)
90 (defvar x-session-previous-id)
92 (defvar x-command-line-resources nil)
94 ;; Handler for switches of the form "-switch value" or "-switch".
95 (defun x-handle-switch (switch)
96 (let ((aelt (assoc switch command-line-x-option-alist)))
97 (if aelt
98 (let ((param (nth 3 aelt))
99 (value (nth 4 aelt)))
100 (if value
101 (setq default-frame-alist
102 (cons (cons param value)
103 default-frame-alist))
104 (setq default-frame-alist
105 (cons (cons param
106 (car x-invocation-args))
107 default-frame-alist)
108 x-invocation-args (cdr x-invocation-args)))))))
110 ;; Handler for switches of the form "-switch n"
111 (defun x-handle-numeric-switch (switch)
112 (let ((aelt (assoc switch command-line-x-option-alist)))
113 (if aelt
114 (let ((param (nth 3 aelt)))
115 (setq default-frame-alist
116 (cons (cons param
117 (string-to-number (car x-invocation-args)))
118 default-frame-alist)
119 x-invocation-args
120 (cdr x-invocation-args))))))
122 ;; Handle options that apply to initial frame only
123 (defun x-handle-initial-switch (switch)
124 (let ((aelt (assoc switch command-line-x-option-alist)))
125 (if aelt
126 (let ((param (nth 3 aelt))
127 (value (nth 4 aelt)))
128 (if value
129 (setq initial-frame-alist
130 (cons (cons param value)
131 initial-frame-alist))
132 (setq initial-frame-alist
133 (cons (cons param
134 (car x-invocation-args))
135 initial-frame-alist)
136 x-invocation-args (cdr x-invocation-args)))))))
138 (defun x-handle-no-bitmap-icon (switch)
139 (setq default-frame-alist (cons '(icon-type) default-frame-alist)))
141 ;; Make -iconic apply only to the initial frame!
142 (defun x-handle-iconic (switch)
143 (setq initial-frame-alist
144 (cons '(visibility . icon) initial-frame-alist)))
146 ;; Handle the -xrm option.
147 (defun x-handle-xrm-switch (switch)
148 (unless (consp x-invocation-args)
149 (error "%s: missing argument to `%s' option" (invocation-name) switch))
150 (setq x-command-line-resources
151 (if (null x-command-line-resources)
152 (car x-invocation-args)
153 (concat x-command-line-resources "\n" (car x-invocation-args))))
154 (setq x-invocation-args (cdr x-invocation-args)))
156 ;; Handle the geometry option
157 (defun x-handle-geometry (switch)
158 (let* ((geo (x-parse-geometry (car x-invocation-args)))
159 (left (assq 'left geo))
160 (top (assq 'top geo))
161 (height (assq 'height geo))
162 (width (assq 'width geo)))
163 (if (or height width)
164 (setq default-frame-alist
165 (append default-frame-alist
166 '((user-size . t))
167 (if height (list height))
168 (if width (list width)))
169 initial-frame-alist
170 (append initial-frame-alist
171 '((user-size . t))
172 (if height (list height))
173 (if width (list width)))))
174 (if (or left top)
175 (setq initial-frame-alist
176 (append initial-frame-alist
177 '((user-position . t))
178 (if left (list left))
179 (if top (list top)))))
180 (setq x-invocation-args (cdr x-invocation-args))))
182 ;; Handle the -name option. Set the variable x-resource-name
183 ;; to the option's operand; set the name of
184 ;; the initial frame, too.
185 (defun x-handle-name-switch (switch)
186 (or (consp x-invocation-args)
187 (error "%s: missing argument to `%s' option" (invocation-name) switch))
188 (setq x-resource-name (car x-invocation-args)
189 x-invocation-args (cdr x-invocation-args))
190 (setq initial-frame-alist (cons (cons 'name x-resource-name)
191 initial-frame-alist)))
193 ;; Handle the --parent-id option.
194 (defun x-handle-parent-id (switch)
195 (or (consp x-invocation-args)
196 (error "%s: missing argument to `%s' option" (invocation-name) switch))
197 (setq initial-frame-alist (cons
198 (cons 'parent-id
199 (string-to-number (car x-invocation-args)))
200 initial-frame-alist)
201 x-invocation-args (cdr x-invocation-args)))
203 (defvar x-display-name nil
204 "The name of the X display on which Emacs was started.
206 For the X display name of individual frames, see the `display'
207 frame parameter.")
209 (defun x-handle-display (switch)
210 "Handle -display DISPLAY option."
211 (setq x-display-name (car x-invocation-args)
212 x-invocation-args (cdr x-invocation-args))
213 ;; Make subshell programs see the same DISPLAY value Emacs really uses.
214 ;; Note that this isn't completely correct, since Emacs can use
215 ;; multiple displays. However, there is no way to tell an already
216 ;; running subshell which display the user is currently typing on.
217 (setenv "DISPLAY" x-display-name))
219 (defun x-handle-args (args)
220 "Process the X-related command line options in ARGS.
221 This is done before the user's startup file is loaded. They are copied to
222 `x-invocation-args', from which the X-related things are extracted, first
223 the switch (e.g., \"-fg\") in the following code, and possible values
224 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
225 This function returns ARGS minus the arguments that have been processed."
226 ;; We use ARGS to accumulate the args that we don't handle here, to return.
227 (setq x-invocation-args args
228 args nil)
229 (while (and x-invocation-args
230 (not (equal (car x-invocation-args) "--")))
231 (let* ((this-switch (car x-invocation-args))
232 (orig-this-switch this-switch)
233 completion argval aelt handler)
234 (setq x-invocation-args (cdr x-invocation-args))
235 ;; Check for long options with attached arguments
236 ;; and separate out the attached option argument into argval.
237 (if (string-match "^--[^=]*=" this-switch)
238 (setq argval (substring this-switch (match-end 0))
239 this-switch (substring this-switch 0 (1- (match-end 0)))))
240 ;; Complete names of long options.
241 (if (string-match "^--" this-switch)
242 (progn
243 (setq completion (try-completion this-switch command-line-x-option-alist))
244 (if (eq completion t)
245 ;; Exact match for long option.
247 (if (stringp completion)
248 (let ((elt (assoc completion command-line-x-option-alist)))
249 ;; Check for abbreviated long option.
250 (or elt
251 (error "Option `%s' is ambiguous" this-switch))
252 (setq this-switch completion))))))
253 (setq aelt (assoc this-switch command-line-x-option-alist))
254 (if aelt (setq handler (nth 2 aelt)))
255 (if handler
256 (if argval
257 (let ((x-invocation-args
258 (cons argval x-invocation-args)))
259 (funcall handler this-switch))
260 (funcall handler this-switch))
261 (setq args (cons orig-this-switch args)))))
262 (nconc (nreverse args) x-invocation-args))
264 ;; Handle the --smid switch. This is used by the session manager
265 ;; to give us back our session id we had on the previous run.
266 (defun x-handle-smid (switch)
267 (or (consp x-invocation-args)
268 (error "%s: missing argument to `%s' option" (invocation-name) switch))
269 (setq x-session-previous-id (car x-invocation-args)
270 x-invocation-args (cdr x-invocation-args)))
272 (defvar emacs-save-session-functions nil
273 "Special hook run when a save-session event occurs.
274 The functions do not get any argument.
275 Functions can return non-nil to inform the session manager that the
276 window system shutdown should be aborted.
278 See also `emacs-session-save'.")
280 (defun emacs-session-filename (session-id)
281 "Construct a filename to save the session in based on SESSION-ID.
282 If the directory ~/.emacs.d exists, we make a filename in there, otherwise
283 a file in the home directory."
284 (let ((basename (concat "session." session-id))
285 (emacs-dir user-emacs-directory))
286 (expand-file-name (if (file-directory-p emacs-dir)
287 (concat emacs-dir basename)
288 (concat "~/.emacs-" basename)))))
290 (defun emacs-session-save ()
291 "This function is called when the window system is shutting down.
292 If this function returns non-nil, the window system shutdown is cancelled.
294 When a session manager tells Emacs that the window system is shutting
295 down, this function is called. It calls the functions in the hook
296 `emacs-save-session-functions'. Functions are called with the current
297 buffer set to a temporary buffer. Functions should use `insert' to insert
298 lisp code to save the session state. The buffer is saved
299 in a file in the home directory of the user running Emacs. The file
300 is evaluated when Emacs is restarted by the session manager.
302 If any of the functions returns non-nil, no more functions are called
303 and this function returns non-nil. This will inform the session manager
304 that it should abort the window system shutdown."
305 (let ((filename (emacs-session-filename x-session-id))
306 (buf (get-buffer-create (concat " *SES " x-session-id))))
307 (when (file-exists-p filename)
308 (delete-file filename))
309 (with-current-buffer buf
310 (let ((cancel-shutdown (condition-case nil
311 ;; A return of t means cancel the shutdown.
312 (run-hook-with-args-until-success
313 'emacs-save-session-functions)
314 (error t))))
315 (unless cancel-shutdown
316 (write-file filename))
317 (kill-buffer buf)
318 cancel-shutdown))))
320 (defun emacs-session-restore (previous-session-id)
321 "Restore the Emacs session if started by a session manager.
322 The file saved by `emacs-session-save' is evaluated and deleted if it
323 exists."
324 (let ((filename (emacs-session-filename previous-session-id)))
325 (when (file-exists-p filename)
326 (load-file filename)
327 (delete-file filename)
328 (message "Restored session data"))))
334 ;; Standard X cursor shapes, courtesy of Mr. Fox, who wanted ALL of them.
337 (defconst x-pointer-X-cursor 0)
338 (defconst x-pointer-arrow 2)
339 (defconst x-pointer-based-arrow-down 4)
340 (defconst x-pointer-based-arrow-up 6)
341 (defconst x-pointer-boat 8)
342 (defconst x-pointer-bogosity 10)
343 (defconst x-pointer-bottom-left-corner 12)
344 (defconst x-pointer-bottom-right-corner 14)
345 (defconst x-pointer-bottom-side 16)
346 (defconst x-pointer-bottom-tee 18)
347 (defconst x-pointer-box-spiral 20)
348 (defconst x-pointer-center-ptr 22)
349 (defconst x-pointer-circle 24)
350 (defconst x-pointer-clock 26)
351 (defconst x-pointer-coffee-mug 28)
352 (defconst x-pointer-cross 30)
353 (defconst x-pointer-cross-reverse 32)
354 (defconst x-pointer-crosshair 34)
355 (defconst x-pointer-diamond-cross 36)
356 (defconst x-pointer-dot 38)
357 (defconst x-pointer-dotbox 40)
358 (defconst x-pointer-double-arrow 42)
359 (defconst x-pointer-draft-large 44)
360 (defconst x-pointer-draft-small 46)
361 (defconst x-pointer-draped-box 48)
362 (defconst x-pointer-exchange 50)
363 (defconst x-pointer-fleur 52)
364 (defconst x-pointer-gobbler 54)
365 (defconst x-pointer-gumby 56)
366 (defconst x-pointer-hand1 58)
367 (defconst x-pointer-hand2 60)
368 (defconst x-pointer-heart 62)
369 (defconst x-pointer-icon 64)
370 (defconst x-pointer-iron-cross 66)
371 (defconst x-pointer-left-ptr 68)
372 (defconst x-pointer-left-side 70)
373 (defconst x-pointer-left-tee 72)
374 (defconst x-pointer-leftbutton 74)
375 (defconst x-pointer-ll-angle 76)
376 (defconst x-pointer-lr-angle 78)
377 (defconst x-pointer-man 80)
378 (defconst x-pointer-middlebutton 82)
379 (defconst x-pointer-mouse 84)
380 (defconst x-pointer-pencil 86)
381 (defconst x-pointer-pirate 88)
382 (defconst x-pointer-plus 90)
383 (defconst x-pointer-question-arrow 92)
384 (defconst x-pointer-right-ptr 94)
385 (defconst x-pointer-right-side 96)
386 (defconst x-pointer-right-tee 98)
387 (defconst x-pointer-rightbutton 100)
388 (defconst x-pointer-rtl-logo 102)
389 (defconst x-pointer-sailboat 104)
390 (defconst x-pointer-sb-down-arrow 106)
391 (defconst x-pointer-sb-h-double-arrow 108)
392 (defconst x-pointer-sb-left-arrow 110)
393 (defconst x-pointer-sb-right-arrow 112)
394 (defconst x-pointer-sb-up-arrow 114)
395 (defconst x-pointer-sb-v-double-arrow 116)
396 (defconst x-pointer-shuttle 118)
397 (defconst x-pointer-sizing 120)
398 (defconst x-pointer-spider 122)
399 (defconst x-pointer-spraycan 124)
400 (defconst x-pointer-star 126)
401 (defconst x-pointer-target 128)
402 (defconst x-pointer-tcross 130)
403 (defconst x-pointer-top-left-arrow 132)
404 (defconst x-pointer-top-left-corner 134)
405 (defconst x-pointer-top-right-corner 136)
406 (defconst x-pointer-top-side 138)
407 (defconst x-pointer-top-tee 140)
408 (defconst x-pointer-trek 142)
409 (defconst x-pointer-ul-angle 144)
410 (defconst x-pointer-umbrella 146)
411 (defconst x-pointer-ur-angle 148)
412 (defconst x-pointer-watch 150)
413 (defconst x-pointer-xterm 152)
414 (defconst x-pointer-invisible 255)
417 ;; Available colors
420 (defvar x-colors '("LightGreen"
421 "light green"
422 "DarkRed"
423 "dark red"
424 "DarkMagenta"
425 "dark magenta"
426 "DarkCyan"
427 "dark cyan"
428 "DarkBlue"
429 "dark blue"
430 "DarkGray"
431 "dark gray"
432 "DarkGrey"
433 "dark grey"
434 "grey100"
435 "gray100"
436 "grey99"
437 "gray99"
438 "grey98"
439 "gray98"
440 "grey97"
441 "gray97"
442 "grey96"
443 "gray96"
444 "grey95"
445 "gray95"
446 "grey94"
447 "gray94"
448 "grey93"
449 "gray93"
450 "grey92"
451 "gray92"
452 "grey91"
453 "gray91"
454 "grey90"
455 "gray90"
456 "grey89"
457 "gray89"
458 "grey88"
459 "gray88"
460 "grey87"
461 "gray87"
462 "grey86"
463 "gray86"
464 "grey85"
465 "gray85"
466 "grey84"
467 "gray84"
468 "grey83"
469 "gray83"
470 "grey82"
471 "gray82"
472 "grey81"
473 "gray81"
474 "grey80"
475 "gray80"
476 "grey79"
477 "gray79"
478 "grey78"
479 "gray78"
480 "grey77"
481 "gray77"
482 "grey76"
483 "gray76"
484 "grey75"
485 "gray75"
486 "grey74"
487 "gray74"
488 "grey73"
489 "gray73"
490 "grey72"
491 "gray72"
492 "grey71"
493 "gray71"
494 "grey70"
495 "gray70"
496 "grey69"
497 "gray69"
498 "grey68"
499 "gray68"
500 "grey67"
501 "gray67"
502 "grey66"
503 "gray66"
504 "grey65"
505 "gray65"
506 "grey64"
507 "gray64"
508 "grey63"
509 "gray63"
510 "grey62"
511 "gray62"
512 "grey61"
513 "gray61"
514 "grey60"
515 "gray60"
516 "grey59"
517 "gray59"
518 "grey58"
519 "gray58"
520 "grey57"
521 "gray57"
522 "grey56"
523 "gray56"
524 "grey55"
525 "gray55"
526 "grey54"
527 "gray54"
528 "grey53"
529 "gray53"
530 "grey52"
531 "gray52"
532 "grey51"
533 "gray51"
534 "grey50"
535 "gray50"
536 "grey49"
537 "gray49"
538 "grey48"
539 "gray48"
540 "grey47"
541 "gray47"
542 "grey46"
543 "gray46"
544 "grey45"
545 "gray45"
546 "grey44"
547 "gray44"
548 "grey43"
549 "gray43"
550 "grey42"
551 "gray42"
552 "grey41"
553 "gray41"
554 "grey40"
555 "gray40"
556 "grey39"
557 "gray39"
558 "grey38"
559 "gray38"
560 "grey37"
561 "gray37"
562 "grey36"
563 "gray36"
564 "grey35"
565 "gray35"
566 "grey34"
567 "gray34"
568 "grey33"
569 "gray33"
570 "grey32"
571 "gray32"
572 "grey31"
573 "gray31"
574 "grey30"
575 "gray30"
576 "grey29"
577 "gray29"
578 "grey28"
579 "gray28"
580 "grey27"
581 "gray27"
582 "grey26"
583 "gray26"
584 "grey25"
585 "gray25"
586 "grey24"
587 "gray24"
588 "grey23"
589 "gray23"
590 "grey22"
591 "gray22"
592 "grey21"
593 "gray21"
594 "grey20"
595 "gray20"
596 "grey19"
597 "gray19"
598 "grey18"
599 "gray18"
600 "grey17"
601 "gray17"
602 "grey16"
603 "gray16"
604 "grey15"
605 "gray15"
606 "grey14"
607 "gray14"
608 "grey13"
609 "gray13"
610 "grey12"
611 "gray12"
612 "grey11"
613 "gray11"
614 "grey10"
615 "gray10"
616 "grey9"
617 "gray9"
618 "grey8"
619 "gray8"
620 "grey7"
621 "gray7"
622 "grey6"
623 "gray6"
624 "grey5"
625 "gray5"
626 "grey4"
627 "gray4"
628 "grey3"
629 "gray3"
630 "grey2"
631 "gray2"
632 "grey1"
633 "gray1"
634 "grey0"
635 "gray0"
636 "thistle4"
637 "thistle3"
638 "thistle2"
639 "thistle1"
640 "MediumPurple4"
641 "MediumPurple3"
642 "MediumPurple2"
643 "MediumPurple1"
644 "purple4"
645 "purple3"
646 "purple2"
647 "purple1"
648 "DarkOrchid4"
649 "DarkOrchid3"
650 "DarkOrchid2"
651 "DarkOrchid1"
652 "MediumOrchid4"
653 "MediumOrchid3"
654 "MediumOrchid2"
655 "MediumOrchid1"
656 "plum4"
657 "plum3"
658 "plum2"
659 "plum1"
660 "orchid4"
661 "orchid3"
662 "orchid2"
663 "orchid1"
664 "magenta4"
665 "magenta3"
666 "magenta2"
667 "magenta1"
668 "VioletRed4"
669 "VioletRed3"
670 "VioletRed2"
671 "VioletRed1"
672 "maroon4"
673 "maroon3"
674 "maroon2"
675 "maroon1"
676 "PaleVioletRed4"
677 "PaleVioletRed3"
678 "PaleVioletRed2"
679 "PaleVioletRed1"
680 "LightPink4"
681 "LightPink3"
682 "LightPink2"
683 "LightPink1"
684 "pink4"
685 "pink3"
686 "pink2"
687 "pink1"
688 "HotPink4"
689 "HotPink3"
690 "HotPink2"
691 "HotPink1"
692 "DeepPink4"
693 "DeepPink3"
694 "DeepPink2"
695 "DeepPink1"
696 "red4"
697 "red3"
698 "red2"
699 "red1"
700 "OrangeRed4"
701 "OrangeRed3"
702 "OrangeRed2"
703 "OrangeRed1"
704 "tomato4"
705 "tomato3"
706 "tomato2"
707 "tomato1"
708 "coral4"
709 "coral3"
710 "coral2"
711 "coral1"
712 "DarkOrange4"
713 "DarkOrange3"
714 "DarkOrange2"
715 "DarkOrange1"
716 "orange4"
717 "orange3"
718 "orange2"
719 "orange1"
720 "LightSalmon4"
721 "LightSalmon3"
722 "LightSalmon2"
723 "LightSalmon1"
724 "salmon4"
725 "salmon3"
726 "salmon2"
727 "salmon1"
728 "brown4"
729 "brown3"
730 "brown2"
731 "brown1"
732 "firebrick4"
733 "firebrick3"
734 "firebrick2"
735 "firebrick1"
736 "chocolate4"
737 "chocolate3"
738 "chocolate2"
739 "chocolate1"
740 "tan4"
741 "tan3"
742 "tan2"
743 "tan1"
744 "wheat4"
745 "wheat3"
746 "wheat2"
747 "wheat1"
748 "burlywood4"
749 "burlywood3"
750 "burlywood2"
751 "burlywood1"
752 "sienna4"
753 "sienna3"
754 "sienna2"
755 "sienna1"
756 "IndianRed4"
757 "IndianRed3"
758 "IndianRed2"
759 "IndianRed1"
760 "RosyBrown4"
761 "RosyBrown3"
762 "RosyBrown2"
763 "RosyBrown1"
764 "DarkGoldenrod4"
765 "DarkGoldenrod3"
766 "DarkGoldenrod2"
767 "DarkGoldenrod1"
768 "goldenrod4"
769 "goldenrod3"
770 "goldenrod2"
771 "goldenrod1"
772 "gold4"
773 "gold3"
774 "gold2"
775 "gold1"
776 "yellow4"
777 "yellow3"
778 "yellow2"
779 "yellow1"
780 "LightYellow4"
781 "LightYellow3"
782 "LightYellow2"
783 "LightYellow1"
784 "LightGoldenrod4"
785 "LightGoldenrod3"
786 "LightGoldenrod2"
787 "LightGoldenrod1"
788 "khaki4"
789 "khaki3"
790 "khaki2"
791 "khaki1"
792 "DarkOliveGreen4"
793 "DarkOliveGreen3"
794 "DarkOliveGreen2"
795 "DarkOliveGreen1"
796 "OliveDrab4"
797 "OliveDrab3"
798 "OliveDrab2"
799 "OliveDrab1"
800 "chartreuse4"
801 "chartreuse3"
802 "chartreuse2"
803 "chartreuse1"
804 "green4"
805 "green3"
806 "green2"
807 "green1"
808 "SpringGreen4"
809 "SpringGreen3"
810 "SpringGreen2"
811 "SpringGreen1"
812 "PaleGreen4"
813 "PaleGreen3"
814 "PaleGreen2"
815 "PaleGreen1"
816 "SeaGreen4"
817 "SeaGreen3"
818 "SeaGreen2"
819 "SeaGreen1"
820 "DarkSeaGreen4"
821 "DarkSeaGreen3"
822 "DarkSeaGreen2"
823 "DarkSeaGreen1"
824 "aquamarine4"
825 "aquamarine3"
826 "aquamarine2"
827 "aquamarine1"
828 "DarkSlateGray4"
829 "DarkSlateGray3"
830 "DarkSlateGray2"
831 "DarkSlateGray1"
832 "cyan4"
833 "cyan3"
834 "cyan2"
835 "cyan1"
836 "turquoise4"
837 "turquoise3"
838 "turquoise2"
839 "turquoise1"
840 "CadetBlue4"
841 "CadetBlue3"
842 "CadetBlue2"
843 "CadetBlue1"
844 "PaleTurquoise4"
845 "PaleTurquoise3"
846 "PaleTurquoise2"
847 "PaleTurquoise1"
848 "LightCyan4"
849 "LightCyan3"
850 "LightCyan2"
851 "LightCyan1"
852 "LightBlue4"
853 "LightBlue3"
854 "LightBlue2"
855 "LightBlue1"
856 "LightSteelBlue4"
857 "LightSteelBlue3"
858 "LightSteelBlue2"
859 "LightSteelBlue1"
860 "SlateGray4"
861 "SlateGray3"
862 "SlateGray2"
863 "SlateGray1"
864 "LightSkyBlue4"
865 "LightSkyBlue3"
866 "LightSkyBlue2"
867 "LightSkyBlue1"
868 "SkyBlue4"
869 "SkyBlue3"
870 "SkyBlue2"
871 "SkyBlue1"
872 "DeepSkyBlue4"
873 "DeepSkyBlue3"
874 "DeepSkyBlue2"
875 "DeepSkyBlue1"
876 "SteelBlue4"
877 "SteelBlue3"
878 "SteelBlue2"
879 "SteelBlue1"
880 "DodgerBlue4"
881 "DodgerBlue3"
882 "DodgerBlue2"
883 "DodgerBlue1"
884 "blue4"
885 "blue3"
886 "blue2"
887 "blue1"
888 "RoyalBlue4"
889 "RoyalBlue3"
890 "RoyalBlue2"
891 "RoyalBlue1"
892 "SlateBlue4"
893 "SlateBlue3"
894 "SlateBlue2"
895 "SlateBlue1"
896 "azure4"
897 "azure3"
898 "azure2"
899 "azure1"
900 "MistyRose4"
901 "MistyRose3"
902 "MistyRose2"
903 "MistyRose1"
904 "LavenderBlush4"
905 "LavenderBlush3"
906 "LavenderBlush2"
907 "LavenderBlush1"
908 "honeydew4"
909 "honeydew3"
910 "honeydew2"
911 "honeydew1"
912 "ivory4"
913 "ivory3"
914 "ivory2"
915 "ivory1"
916 "cornsilk4"
917 "cornsilk3"
918 "cornsilk2"
919 "cornsilk1"
920 "LemonChiffon4"
921 "LemonChiffon3"
922 "LemonChiffon2"
923 "LemonChiffon1"
924 "NavajoWhite4"
925 "NavajoWhite3"
926 "NavajoWhite2"
927 "NavajoWhite1"
928 "PeachPuff4"
929 "PeachPuff3"
930 "PeachPuff2"
931 "PeachPuff1"
932 "bisque4"
933 "bisque3"
934 "bisque2"
935 "bisque1"
936 "AntiqueWhite4"
937 "AntiqueWhite3"
938 "AntiqueWhite2"
939 "AntiqueWhite1"
940 "seashell4"
941 "seashell3"
942 "seashell2"
943 "seashell1"
944 "snow4"
945 "snow3"
946 "snow2"
947 "snow1"
948 "thistle"
949 "MediumPurple"
950 "medium purple"
951 "purple"
952 "BlueViolet"
953 "blue violet"
954 "DarkViolet"
955 "dark violet"
956 "DarkOrchid"
957 "dark orchid"
958 "MediumOrchid"
959 "medium orchid"
960 "orchid"
961 "plum"
962 "violet"
963 "magenta"
964 "VioletRed"
965 "violet red"
966 "MediumVioletRed"
967 "medium violet red"
968 "maroon"
969 "PaleVioletRed"
970 "pale violet red"
971 "LightPink"
972 "light pink"
973 "pink"
974 "DeepPink"
975 "deep pink"
976 "HotPink"
977 "hot pink"
978 "red"
979 "OrangeRed"
980 "orange red"
981 "tomato"
982 "LightCoral"
983 "light coral"
984 "coral"
985 "DarkOrange"
986 "dark orange"
987 "orange"
988 "LightSalmon"
989 "light salmon"
990 "salmon"
991 "DarkSalmon"
992 "dark salmon"
993 "brown"
994 "firebrick"
995 "chocolate"
996 "tan"
997 "SandyBrown"
998 "sandy brown"
999 "wheat"
1000 "beige"
1001 "burlywood"
1002 "peru"
1003 "sienna"
1004 "SaddleBrown"
1005 "saddle brown"
1006 "IndianRed"
1007 "indian red"
1008 "RosyBrown"
1009 "rosy brown"
1010 "DarkGoldenrod"
1011 "dark goldenrod"
1012 "goldenrod"
1013 "LightGoldenrod"
1014 "light goldenrod"
1015 "gold"
1016 "yellow"
1017 "LightYellow"
1018 "light yellow"
1019 "LightGoldenrodYellow"
1020 "light goldenrod yellow"
1021 "PaleGoldenrod"
1022 "pale goldenrod"
1023 "khaki"
1024 "DarkKhaki"
1025 "dark khaki"
1026 "OliveDrab"
1027 "olive drab"
1028 "ForestGreen"
1029 "forest green"
1030 "YellowGreen"
1031 "yellow green"
1032 "LimeGreen"
1033 "lime green"
1034 "GreenYellow"
1035 "green yellow"
1036 "MediumSpringGreen"
1037 "medium spring green"
1038 "chartreuse"
1039 "green"
1040 "LawnGreen"
1041 "lawn green"
1042 "SpringGreen"
1043 "spring green"
1044 "PaleGreen"
1045 "pale green"
1046 "LightSeaGreen"
1047 "light sea green"
1048 "MediumSeaGreen"
1049 "medium sea green"
1050 "SeaGreen"
1051 "sea green"
1052 "DarkSeaGreen"
1053 "dark sea green"
1054 "DarkOliveGreen"
1055 "dark olive green"
1056 "DarkGreen"
1057 "dark green"
1058 "aquamarine"
1059 "MediumAquamarine"
1060 "medium aquamarine"
1061 "CadetBlue"
1062 "cadet blue"
1063 "LightCyan"
1064 "light cyan"
1065 "cyan"
1066 "turquoise"
1067 "MediumTurquoise"
1068 "medium turquoise"
1069 "DarkTurquoise"
1070 "dark turquoise"
1071 "PaleTurquoise"
1072 "pale turquoise"
1073 "PowderBlue"
1074 "powder blue"
1075 "LightBlue"
1076 "light blue"
1077 "LightSteelBlue"
1078 "light steel blue"
1079 "SteelBlue"
1080 "steel blue"
1081 "LightSkyBlue"
1082 "light sky blue"
1083 "SkyBlue"
1084 "sky blue"
1085 "DeepSkyBlue"
1086 "deep sky blue"
1087 "DodgerBlue"
1088 "dodger blue"
1089 "blue"
1090 "RoyalBlue"
1091 "royal blue"
1092 "MediumBlue"
1093 "medium blue"
1094 "LightSlateBlue"
1095 "light slate blue"
1096 "MediumSlateBlue"
1097 "medium slate blue"
1098 "SlateBlue"
1099 "slate blue"
1100 "DarkSlateBlue"
1101 "dark slate blue"
1102 "CornflowerBlue"
1103 "cornflower blue"
1104 "NavyBlue"
1105 "navy blue"
1106 "navy"
1107 "MidnightBlue"
1108 "midnight blue"
1109 "LightGray"
1110 "light gray"
1111 "LightGrey"
1112 "light grey"
1113 "grey"
1114 "gray"
1115 "LightSlateGrey"
1116 "light slate grey"
1117 "LightSlateGray"
1118 "light slate gray"
1119 "SlateGrey"
1120 "slate grey"
1121 "SlateGray"
1122 "slate gray"
1123 "DimGrey"
1124 "dim grey"
1125 "DimGray"
1126 "dim gray"
1127 "DarkSlateGrey"
1128 "dark slate grey"
1129 "DarkSlateGray"
1130 "dark slate gray"
1131 "black"
1132 "white"
1133 "MistyRose"
1134 "misty rose"
1135 "LavenderBlush"
1136 "lavender blush"
1137 "lavender"
1138 "AliceBlue"
1139 "alice blue"
1140 "azure"
1141 "MintCream"
1142 "mint cream"
1143 "honeydew"
1144 "seashell"
1145 "LemonChiffon"
1146 "lemon chiffon"
1147 "ivory"
1148 "cornsilk"
1149 "moccasin"
1150 "NavajoWhite"
1151 "navajo white"
1152 "PeachPuff"
1153 "peach puff"
1154 "bisque"
1155 "BlanchedAlmond"
1156 "blanched almond"
1157 "PapayaWhip"
1158 "papaya whip"
1159 "AntiqueWhite"
1160 "antique white"
1161 "linen"
1162 "OldLace"
1163 "old lace"
1164 "FloralWhite"
1165 "floral white"
1166 "gainsboro"
1167 "WhiteSmoke"
1168 "white smoke"
1169 "GhostWhite"
1170 "ghost white"
1171 "snow")
1172 "The list of X colors from the `rgb.txt' file.
1173 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1175 (defun xw-defined-colors (&optional frame)
1176 "Internal function called by `defined-colors', which see."
1177 (or frame (setq frame (selected-frame)))
1178 (let ((all-colors x-colors)
1179 (this-color nil)
1180 (defined-colors nil))
1181 (while all-colors
1182 (setq this-color (car all-colors)
1183 all-colors (cdr all-colors))
1184 (and (color-supported-p this-color frame t)
1185 (setq defined-colors (cons this-color defined-colors))))
1186 defined-colors))
1188 ;;;; Function keys
1190 (defvar x-alternatives-map
1191 (let ((map (make-sparse-keymap)))
1192 ;; Map certain keypad keys into ASCII characters that people usually expect.
1193 (define-key map [backspace] [127])
1194 (define-key map [delete] [127])
1195 (define-key map [tab] [?\t])
1196 (define-key map [linefeed] [?\n])
1197 (define-key map [clear] [?\C-l])
1198 (define-key map [return] [?\C-m])
1199 (define-key map [escape] [?\e])
1200 (define-key map [M-backspace] [?\M-\d])
1201 (define-key map [M-delete] [?\M-\d])
1202 (define-key map [M-tab] [?\M-\t])
1203 (define-key map [M-linefeed] [?\M-\n])
1204 (define-key map [M-clear] [?\M-\C-l])
1205 (define-key map [M-return] [?\M-\C-m])
1206 (define-key map [M-escape] [?\M-\e])
1207 (define-key map [iso-lefttab] [backtab])
1208 (define-key map [S-iso-lefttab] [backtab])
1209 map)
1210 "Keymap of possible alternative meanings for some keys.")
1212 (defun x-setup-function-keys (frame)
1213 "Set up `function-key-map' on FRAME for the X window system."
1214 ;; Don't do this twice on the same display, or it would break
1215 ;; normal-erase-is-backspace-mode.
1216 (unless (terminal-parameter frame 'x-setup-function-keys)
1217 ;; Map certain keypad keys into ASCII characters that people usually expect.
1218 (with-selected-frame frame
1219 (let ((map (copy-keymap x-alternatives-map)))
1220 (set-keymap-parent map (keymap-parent local-function-key-map))
1221 (set-keymap-parent local-function-key-map map)))
1222 (set-terminal-parameter frame 'x-setup-function-keys t)))
1224 ;; These tell read-char how to convert
1225 ;; these special chars to ASCII.
1226 (put 'backspace 'ascii-character 127)
1227 (put 'delete 'ascii-character 127)
1228 (put 'tab 'ascii-character ?\t)
1229 (put 'linefeed 'ascii-character ?\n)
1230 (put 'clear 'ascii-character 12)
1231 (put 'return 'ascii-character 13)
1232 (put 'escape 'ascii-character ?\e)
1235 ;;;; Keysyms
1237 (defun vendor-specific-keysyms (vendor)
1238 "Return the appropriate value of `system-key-alist' for VENDOR.
1239 VENDOR is a string containing the name of the X Server's vendor,
1240 as returned by `x-server-vendor'."
1241 (cond ((or (string-equal vendor "Hewlett-Packard Incorporated")
1242 (string-equal vendor "Hewlett-Packard Company"))
1243 '(( 168 . mute-acute)
1244 ( 169 . mute-grave)
1245 ( 170 . mute-asciicircum)
1246 ( 171 . mute-diaeresis)
1247 ( 172 . mute-asciitilde)
1248 ( 175 . lira)
1249 ( 190 . guilder)
1250 ( 252 . block)
1251 ( 256 . longminus)
1252 (65388 . reset)
1253 (65389 . system)
1254 (65390 . user)
1255 (65391 . clearline)
1256 (65392 . insertline)
1257 (65393 . deleteline)
1258 (65394 . insertchar)
1259 (65395 . deletechar)
1260 (65396 . backtab)
1261 (65397 . kp-backtab)))
1262 ;; Fixme: What about non-X11/NeWS sun server?
1263 ((or (string-equal vendor "X11/NeWS - Sun Microsystems Inc.")
1264 (string-equal vendor "X Consortium"))
1265 '((392976 . f36)
1266 (392977 . f37)
1267 (393056 . req)
1268 ;; These are for Sun under X11R6
1269 (393072 . props)
1270 (393073 . front)
1271 (393074 . copy)
1272 (393075 . open)
1273 (393076 . paste)
1274 (393077 . cut)))
1276 ;; This is used by DEC's X server.
1277 '((65280 . remove)))))
1279 ;; Latin-1
1280 (let ((i 160))
1281 (while (< i 256)
1282 (puthash i i x-keysym-table)
1283 (setq i (1+ i))))
1285 ;; Table from Kuhn's proposed additions to the `KEYSYM Encoding'
1286 ;; appendix to the X protocol definition.
1287 (dolist
1288 (pair
1290 ;; Latin-2
1291 (#x1a1 . ?\e,B!\e(B)
1292 (#x1a2 . ?\e,B"\e(B)
1293 (#x1a3 . ?\e,B#\e(B)
1294 (#x1a5 . ?\e,B%\e(B)
1295 (#x1a6 . ?\e,B&\e(B)
1296 (#x1a9 . ?\e,B)\e(B)
1297 (#x1aa . ?\e,B*\e(B)
1298 (#x1ab . ?\e,B+\e(B)
1299 (#x1ac . ?\e,B,\e(B)
1300 (#x1ae . ?\e,B.\e(B)
1301 (#x1af . ?\e,B/\e(B)
1302 (#x1b1 . ?\e,B1\e(B)
1303 (#x1b2 . ?\e,B2\e(B)
1304 (#x1b3 . ?\e,B3\e(B)
1305 (#x1b5 . ?\e,B5\e(B)
1306 (#x1b6 . ?\e,B6\e(B)
1307 (#x1b7 . ?\e,B7\e(B)
1308 (#x1b9 . ?\e,B9\e(B)
1309 (#x1ba . ?\e,B:\e(B)
1310 (#x1bb . ?\e,B;\e(B)
1311 (#x1bc . ?\e,B<\e(B)
1312 (#x1bd . ?\e,B=\e(B)
1313 (#x1be . ?\e,B>\e(B)
1314 (#x1bf . ?\e,B?\e(B)
1315 (#x1c0 . ?\e,B@\e(B)
1316 (#x1c3 . ?\e,BC\e(B)
1317 (#x1c5 . ?\e,BE\e(B)
1318 (#x1c6 . ?\e,BF\e(B)
1319 (#x1c8 . ?\e,BH\e(B)
1320 (#x1ca . ?\e,BJ\e(B)
1321 (#x1cc . ?\e,BL\e(B)
1322 (#x1cf . ?\e,BO\e(B)
1323 (#x1d0 . ?\e,BP\e(B)
1324 (#x1d1 . ?\e,BQ\e(B)
1325 (#x1d2 . ?\e,BR\e(B)
1326 (#x1d5 . ?\e,BU\e(B)
1327 (#x1d8 . ?\e,BX\e(B)
1328 (#x1d9 . ?\e,BY\e(B)
1329 (#x1db . ?\e,B[\e(B)
1330 (#x1de . ?\e,B^\e(B)
1331 (#x1e0 . ?\e,B`\e(B)
1332 (#x1e3 . ?\e,Bc\e(B)
1333 (#x1e5 . ?\e,Be\e(B)
1334 (#x1e6 . ?\e,Bf\e(B)
1335 (#x1e8 . ?\e,Bh\e(B)
1336 (#x1ea . ?\e,Bj\e(B)
1337 (#x1ec . ?\e,Bl\e(B)
1338 (#x1ef . ?\e,Bo\e(B)
1339 (#x1f0 . ?\e,Bp\e(B)
1340 (#x1f1 . ?\e,Bq\e(B)
1341 (#x1f2 . ?\e,Br\e(B)
1342 (#x1f5 . ?\e,Bu\e(B)
1343 (#x1f8 . ?\e,Bx\e(B)
1344 (#x1f9 . ?\e,By\e(B)
1345 (#x1fb . ?\e,B{\e(B)
1346 (#x1fe . ?\e,B~\e(B)
1347 (#x1ff . ?\e,B\x7f\e(B)
1348 ;; Latin-3
1349 (#x2a1 . ?\e,C!\e(B)
1350 (#x2a6 . ?\e,C&\e(B)
1351 (#x2a9 . ?\e,C)\e(B)
1352 (#x2ab . ?\e,C+\e(B)
1353 (#x2ac . ?\e,C,\e(B)
1354 (#x2b1 . ?\e,C1\e(B)
1355 (#x2b6 . ?\e,C6\e(B)
1356 (#x2b9 . ?\e,C9\e(B)
1357 (#x2bb . ?\e,C;\e(B)
1358 (#x2bc . ?\e,C<\e(B)
1359 (#x2c5 . ?\e,CE\e(B)
1360 (#x2c6 . ?\e,CF\e(B)
1361 (#x2d5 . ?\e,CU\e(B)
1362 (#x2d8 . ?\e,CX\e(B)
1363 (#x2dd . ?\e,C]\e(B)
1364 (#x2de . ?\e,C^\e(B)
1365 (#x2e5 . ?\e,Ce\e(B)
1366 (#x2e6 . ?\e,Cf\e(B)
1367 (#x2f5 . ?\e,Cu\e(B)
1368 (#x2f8 . ?\e,Cx\e(B)
1369 (#x2fd . ?\e,C}\e(B)
1370 (#x2fe . ?\e,C~\e(B)
1371 ;; Latin-4
1372 (#x3a2 . ?\e,D"\e(B)
1373 (#x3a3 . ?\e,D#\e(B)
1374 (#x3a5 . ?\e,D%\e(B)
1375 (#x3a6 . ?\e,D&\e(B)
1376 (#x3aa . ?\e,D*\e(B)
1377 (#x3ab . ?\e,D+\e(B)
1378 (#x3ac . ?\e,D,\e(B)
1379 (#x3b3 . ?\e,D3\e(B)
1380 (#x3b5 . ?\e,D5\e(B)
1381 (#x3b6 . ?\e,D6\e(B)
1382 (#x3ba . ?\e,D:\e(B)
1383 (#x3bb . ?\e,D;\e(B)
1384 (#x3bc . ?\e,D<\e(B)
1385 (#x3bd . ?\e,D=\e(B)
1386 (#x3bf . ?\e,D?\e(B)
1387 (#x3c0 . ?\e,D@\e(B)
1388 (#x3c7 . ?\e,DG\e(B)
1389 (#x3cc . ?\e,DL\e(B)
1390 (#x3cf . ?\e,DO\e(B)
1391 (#x3d1 . ?\e,DQ\e(B)
1392 (#x3d2 . ?\e,DR\e(B)
1393 (#x3d3 . ?\e,DS\e(B)
1394 (#x3d9 . ?\e,DY\e(B)
1395 (#x3dd . ?\e,D]\e(B)
1396 (#x3de . ?\e,D^\e(B)
1397 (#x3e0 . ?\e,D`\e(B)
1398 (#x3e7 . ?\e,Dg\e(B)
1399 (#x3ec . ?\e,Dl\e(B)
1400 (#x3ef . ?\e,Do\e(B)
1401 (#x3f1 . ?\e,Dq\e(B)
1402 (#x3f2 . ?\e,Dr\e(B)
1403 (#x3f3 . ?\e,Ds\e(B)
1404 (#x3f9 . ?\e,Dy\e(B)
1405 (#x3fd . ?\e,D}\e(B)
1406 (#x3fe . ?\e,D~\e(B)
1407 ;; Kana: Fixme: needs conversion to Japanese charset -- seems
1408 ;; to require jisx0213, for which the Unicode translation
1409 ;; isn't clear.
1410 (#x47e . ?\e(J~\e(B)
1411 (#x4a1 . ?\e$A!#\e(B)
1412 (#x4a2 . ?\\e$A!8\e(B)
1413 (#x4a3 . ?\\e$A!9\e(B)
1414 (#x4a4 . ?\e$A!"\e(B)
1415 (#x4a5 . ?\e$A!$\e(B)
1416 (#x4a6 . ?\e$A%r\e(B)
1417 (#x4a7 . ?\e$A%!\e(B)
1418 (#x4a8 . ?\e$A%#\e(B)
1419 (#x4a9 . ?\e$A%%\e(B)
1420 (#x4aa . ?\e$A%'\e(B)
1421 (#x4ab . ?\e$A%)\e(B)
1422 (#x4ac . ?\e$A%c\e(B)
1423 (#x4ad . ?\e$A%e\e(B)
1424 (#x4ae . ?\e$A%g\e(B)
1425 (#x4af . ?\e$A%C\e(B)
1426 (#x4b0 . ?\e$B!<\e(B)
1427 (#x4b1 . ?\e$A%"\e(B)
1428 (#x4b2 . ?\e$A%$\e(B)
1429 (#x4b3 . ?\e$A%&\e(B)
1430 (#x4b4 . ?\e$A%(\e(B)
1431 (#x4b5 . ?\e$A%*\e(B)
1432 (#x4b6 . ?\e$A%+\e(B)
1433 (#x4b7 . ?\e$A%-\e(B)
1434 (#x4b8 . ?\e$A%/\e(B)
1435 (#x4b9 . ?\e$A%1\e(B)
1436 (#x4ba . ?\e$A%3\e(B)
1437 (#x4bb . ?\e$A%5\e(B)
1438 (#x4bc . ?\e$A%7\e(B)
1439 (#x4bd . ?\e$A%9\e(B)
1440 (#x4be . ?\e$A%;\e(B)
1441 (#x4bf . ?\e$A%=\e(B)
1442 (#x4c0 . ?\e$A%?\e(B)
1443 (#x4c1 . ?\e$A%A\e(B)
1444 (#x4c2 . ?\e$A%D\e(B)
1445 (#x4c3 . ?\e$A%F\e(B)
1446 (#x4c4 . ?\e$A%H\e(B)
1447 (#x4c5 . ?\e$A%J\e(B)
1448 (#x4c6 . ?\e$A%K\e(B)
1449 (#x4c7 . ?\e$A%L\e(B)
1450 (#x4c8 . ?\e$A%M\e(B)
1451 (#x4c9 . ?\e$A%N\e(B)
1452 (#x4ca . ?\e$A%O\e(B)
1453 (#x4cb . ?\e$A%R\e(B)
1454 (#x4cc . ?\e$A%U\e(B)
1455 (#x4cd . ?\e$A%X\e(B)
1456 (#x4ce . ?\e$A%[\e(B)
1457 (#x4cf . ?\e$A%^\e(B)
1458 (#x4d0 . ?\e$A%_\e(B)
1459 (#x4d1 . ?\e$A%`\e(B)
1460 (#x4d2 . ?\e$A%a\e(B)
1461 (#x4d3 . ?\e$A%b\e(B)
1462 (#x4d4 . ?\e$A%d\e(B)
1463 (#x4d5 . ?\e$A%f\e(B)
1464 (#x4d6 . ?\e$A%h\e(B)
1465 (#x4d7 . ?\e$A%i\e(B)
1466 (#x4d8 . ?\e$A%j\e(B)
1467 (#x4d9 . ?\e$A%k\e(B)
1468 (#x4da . ?\e$A%l\e(B)
1469 (#x4db . ?\e$A%m\e(B)
1470 (#x4dc . ?\e$A%o\e(B)
1471 (#x4dd . ?\e$A%s\e(B)
1472 (#x4de . ?\e$B!+\e(B)
1473 (#x4df . ?\e$B!,\e(B)
1474 ;; Arabic
1475 (#x5ac . ?\e,G,\e(B)
1476 (#x5bb . ?\e,G;\e(B)
1477 (#x5bf . ?\e,G?\e(B)
1478 (#x5c1 . ?\e,GA\e(B)
1479 (#x5c2 . ?\e,GB\e(B)
1480 (#x5c3 . ?\e,GC\e(B)
1481 (#x5c4 . ?\e,GD\e(B)
1482 (#x5c5 . ?\e,GE\e(B)
1483 (#x5c6 . ?\e,GF\e(B)
1484 (#x5c7 . ?\e,GG\e(B)
1485 (#x5c8 . ?\e,GH\e(B)
1486 (#x5c9 . ?\e,GI\e(B)
1487 (#x5ca . ?\e,GJ\e(B)
1488 (#x5cb . ?\e,GK\e(B)
1489 (#x5cc . ?\e,GL\e(B)
1490 (#x5cd . ?\e,GM\e(B)
1491 (#x5ce . ?\e,GN\e(B)
1492 (#x5cf . ?\e,GO\e(B)
1493 (#x5d0 . ?\e,GP\e(B)
1494 (#x5d1 . ?\e,GQ\e(B)
1495 (#x5d2 . ?\e,GR\e(B)
1496 (#x5d3 . ?\e,GS\e(B)
1497 (#x5d4 . ?\e,GT\e(B)
1498 (#x5d5 . ?\e,GU\e(B)
1499 (#x5d6 . ?\e,GV\e(B)
1500 (#x5d7 . ?\e,GW\e(B)
1501 (#x5d8 . ?\e,GX\e(B)
1502 (#x5d9 . ?\e,GY\e(B)
1503 (#x5da . ?\e,GZ\e(B)
1504 (#x5e0 . ?\e,G`\e(B)
1505 (#x5e1 . ?\e,Ga\e(B)
1506 (#x5e2 . ?\e,Gb\e(B)
1507 (#x5e3 . ?\e,Gc\e(B)
1508 (#x5e4 . ?\e,Gd\e(B)
1509 (#x5e5 . ?\e,Ge\e(B)
1510 (#x5e6 . ?\e,Gf\e(B)
1511 (#x5e7 . ?\e,Gg\e(B)
1512 (#x5e8 . ?\e,Gh\e(B)
1513 (#x5e9 . ?\e,Gi\e(B)
1514 (#x5ea . ?\e,Gj\e(B)
1515 (#x5eb . ?\e,Gk\e(B)
1516 (#x5ec . ?\e,Gl\e(B)
1517 (#x5ed . ?\e,Gm\e(B)
1518 (#x5ee . ?\e,Gn\e(B)
1519 (#x5ef . ?\e,Go\e(B)
1520 (#x5f0 . ?\e,Gp\e(B)
1521 (#x5f1 . ?\e,Gq\e(B)
1522 (#x5f2 . ?\e,Gr\e(B)
1523 ;; Cyrillic
1524 (#x680 . ?\e$,1)R\e(B)
1525 (#x681 . ?\e$,1)V\e(B)
1526 (#x682 . ?\e$,1)Z\e(B)
1527 (#x683 . ?\e$,1)\\e(B)
1528 (#x684 . ?\e$,1)b\e(B)
1529 (#x685 . ?\e$,1)n\e(B)
1530 (#x686 . ?\e$,1)p\e(B)
1531 (#x687 . ?\e$,1)r\e(B)
1532 (#x688 . ?\e$,1)v\e(B)
1533 (#x689 . ?\e$,1)x\e(B)
1534 (#x68a . ?\e$,1)z\e(B)
1535 (#x68c . ?\e$,1*8\e(B)
1536 (#x68d . ?\e$,1*B\e(B)
1537 (#x68e . ?\e$,1*H\e(B)
1538 (#x68f . ?\e$,1*N\e(B)
1539 (#x690 . ?\e$,1)S\e(B)
1540 (#x691 . ?\e$,1)W\e(B)
1541 (#x692 . ?\e$,1)[\e(B)
1542 (#x693 . ?\e$,1)]\e(B)
1543 (#x694 . ?\e$,1)c\e(B)
1544 (#x695 . ?\e$,1)o\e(B)
1545 (#x696 . ?\e$,1)q\e(B)
1546 (#x697 . ?\e$,1)s\e(B)
1547 (#x698 . ?\e$,1)w\e(B)
1548 (#x699 . ?\e$,1)y\e(B)
1549 (#x69a . ?\e$,1){\e(B)
1550 (#x69c . ?\e$,1*9\e(B)
1551 (#x69d . ?\e$,1*C\e(B)
1552 (#x69e . ?\e$,1*I\e(B)
1553 (#x69f . ?\e$,1*O\e(B)
1554 (#x6a1 . ?\e,Lr\e(B)
1555 (#x6a2 . ?\e,Ls\e(B)
1556 (#x6a3 . ?\e,Lq\e(B)
1557 (#x6a4 . ?\e,Lt\e(B)
1558 (#x6a5 . ?\e,Lu\e(B)
1559 (#x6a6 . ?\e,Lv\e(B)
1560 (#x6a7 . ?\e,Lw\e(B)
1561 (#x6a8 . ?\e,Lx\e(B)
1562 (#x6a9 . ?\e,Ly\e(B)
1563 (#x6aa . ?\e,Lz\e(B)
1564 (#x6ab . ?\e,L{\e(B)
1565 (#x6ac . ?\e,L|\e(B)
1566 (#x6ae . ?\e,L~\e(B)
1567 (#x6af . ?\e,L\x7f\e(B)
1568 (#x6b0 . ?\e,Lp\e(B)
1569 (#x6b1 . ?\e,L"\e(B)
1570 (#x6b2 . ?\e,L#\e(B)
1571 (#x6b3 . ?\e,L!\e(B)
1572 (#x6b4 . ?\e,L$\e(B)
1573 (#x6b5 . ?\e,L%\e(B)
1574 (#x6b6 . ?\e,L&\e(B)
1575 (#x6b7 . ?\e,L'\e(B)
1576 (#x6b8 . ?\e,L(\e(B)
1577 (#x6b9 . ?\e,L)\e(B)
1578 (#x6ba . ?\e,L*\e(B)
1579 (#x6bb . ?\e,L+\e(B)
1580 (#x6bc . ?\e,L,\e(B)
1581 (#x6be . ?\e,L.\e(B)
1582 (#x6bf . ?\e,L/\e(B)
1583 (#x6c0 . ?\e,Ln\e(B)
1584 (#x6c1 . ?\e,LP\e(B)
1585 (#x6c2 . ?\e,LQ\e(B)
1586 (#x6c3 . ?\e,Lf\e(B)
1587 (#x6c4 . ?\e,LT\e(B)
1588 (#x6c5 . ?\e,LU\e(B)
1589 (#x6c6 . ?\e,Ld\e(B)
1590 (#x6c7 . ?\e,LS\e(B)
1591 (#x6c8 . ?\e,Le\e(B)
1592 (#x6c9 . ?\e,LX\e(B)
1593 (#x6ca . ?\e,LY\e(B)
1594 (#x6cb . ?\e,LZ\e(B)
1595 (#x6cc . ?\e,L[\e(B)
1596 (#x6cd . ?\e,L\\e(B)
1597 (#x6ce . ?\e,L]\e(B)
1598 (#x6cf . ?\e,L^\e(B)
1599 (#x6d0 . ?\e,L_\e(B)
1600 (#x6d1 . ?\e,Lo\e(B)
1601 (#x6d2 . ?\e,L`\e(B)
1602 (#x6d3 . ?\e,La\e(B)
1603 (#x6d4 . ?\e,Lb\e(B)
1604 (#x6d5 . ?\e,Lc\e(B)
1605 (#x6d6 . ?\e,LV\e(B)
1606 (#x6d7 . ?\e,LR\e(B)
1607 (#x6d8 . ?\e,Ll\e(B)
1608 (#x6d9 . ?\e,Lk\e(B)
1609 (#x6da . ?\e,LW\e(B)
1610 (#x6db . ?\e,Lh\e(B)
1611 (#x6dc . ?\e,Lm\e(B)
1612 (#x6dd . ?\e,Li\e(B)
1613 (#x6de . ?\e,Lg\e(B)
1614 (#x6df . ?\e,Lj\e(B)
1615 (#x6e0 . ?\e,LN\e(B)
1616 (#x6e1 . ?\e,L0\e(B)
1617 (#x6e2 . ?\e,L1\e(B)
1618 (#x6e3 . ?\e,LF\e(B)
1619 (#x6e4 . ?\e,L4\e(B)
1620 (#x6e5 . ?\e,L5\e(B)
1621 (#x6e6 . ?\e,LD\e(B)
1622 (#x6e7 . ?\e,L3\e(B)
1623 (#x6e8 . ?\e,LE\e(B)
1624 (#x6e9 . ?\e,L8\e(B)
1625 (#x6ea . ?\e,L9\e(B)
1626 (#x6eb . ?\e,L:\e(B)
1627 (#x6ec . ?\e,L;\e(B)
1628 (#x6ed . ?\e,L<\e(B)
1629 (#x6ee . ?\e,L=\e(B)
1630 (#x6ef . ?\e,L>\e(B)
1631 (#x6f0 . ?\e,L?\e(B)
1632 (#x6f1 . ?\e,LO\e(B)
1633 (#x6f2 . ?\e,L@\e(B)
1634 (#x6f3 . ?\e,LA\e(B)
1635 (#x6f4 . ?\e,LB\e(B)
1636 (#x6f5 . ?\e,LC\e(B)
1637 (#x6f6 . ?\e,L6\e(B)
1638 (#x6f7 . ?\e,L2\e(B)
1639 (#x6f8 . ?\e,LL\e(B)
1640 (#x6f9 . ?\e,LK\e(B)
1641 (#x6fa . ?\e,L7\e(B)
1642 (#x6fb . ?\e,LH\e(B)
1643 (#x6fc . ?\e,LM\e(B)
1644 (#x6fd . ?\e,LI\e(B)
1645 (#x6fe . ?\e,LG\e(B)
1646 (#x6ff . ?\e,LJ\e(B)
1647 ;; Greek
1648 (#x7a1 . ?\e,F6\e(B)
1649 (#x7a2 . ?\e,F8\e(B)
1650 (#x7a3 . ?\e,F9\e(B)
1651 (#x7a4 . ?\e,F:\e(B)
1652 (#x7a5 . ?\e,FZ\e(B)
1653 (#x7a7 . ?\e,F<\e(B)
1654 (#x7a8 . ?\e,F>\e(B)
1655 (#x7a9 . ?\e,F[\e(B)
1656 (#x7ab . ?\e,F?\e(B)
1657 (#x7ae . ?\e,F5\e(B)
1658 (#x7af . ?\e,F/\e(B)
1659 (#x7b1 . ?\e,F\\e(B)
1660 (#x7b2 . ?\e,F]\e(B)
1661 (#x7b3 . ?\e,F^\e(B)
1662 (#x7b4 . ?\e,F_\e(B)
1663 (#x7b5 . ?\e,Fz\e(B)
1664 (#x7b6 . ?\e,F@\e(B)
1665 (#x7b7 . ?\e,F|\e(B)
1666 (#x7b8 . ?\e,F}\e(B)
1667 (#x7b9 . ?\e,F{\e(B)
1668 (#x7ba . ?\e,F`\e(B)
1669 (#x7bb . ?\e,F~\e(B)
1670 (#x7c1 . ?\e,FA\e(B)
1671 (#x7c2 . ?\e,FB\e(B)
1672 (#x7c3 . ?\e,FC\e(B)
1673 (#x7c4 . ?\e,FD\e(B)
1674 (#x7c5 . ?\e,FE\e(B)
1675 (#x7c6 . ?\e,FF\e(B)
1676 (#x7c7 . ?\e,FG\e(B)
1677 (#x7c8 . ?\e,FH\e(B)
1678 (#x7c9 . ?\e,FI\e(B)
1679 (#x7ca . ?\e,FJ\e(B)
1680 (#x7cb . ?\e,FK\e(B)
1681 (#x7cc . ?\e,FL\e(B)
1682 (#x7cd . ?\e,FM\e(B)
1683 (#x7ce . ?\e,FN\e(B)
1684 (#x7cf . ?\e,FO\e(B)
1685 (#x7d0 . ?\e,FP\e(B)
1686 (#x7d1 . ?\e,FQ\e(B)
1687 (#x7d2 . ?\e,FS\e(B)
1688 (#x7d4 . ?\e,FT\e(B)
1689 (#x7d5 . ?\e,FU\e(B)
1690 (#x7d6 . ?\e,FV\e(B)
1691 (#x7d7 . ?\e,FW\e(B)
1692 (#x7d8 . ?\e,FX\e(B)
1693 (#x7d9 . ?\e,FY\e(B)
1694 (#x7e1 . ?\e,Fa\e(B)
1695 (#x7e2 . ?\e,Fb\e(B)
1696 (#x7e3 . ?\e,Fc\e(B)
1697 (#x7e4 . ?\e,Fd\e(B)
1698 (#x7e5 . ?\e,Fe\e(B)
1699 (#x7e6 . ?\e,Ff\e(B)
1700 (#x7e7 . ?\e,Fg\e(B)
1701 (#x7e8 . ?\e,Fh\e(B)
1702 (#x7e9 . ?\e,Fi\e(B)
1703 (#x7ea . ?\e,Fj\e(B)
1704 (#x7eb . ?\e,Fk\e(B)
1705 (#x7ec . ?\e,Fl\e(B)
1706 (#x7ed . ?\e,Fm\e(B)
1707 (#x7ee . ?\e,Fn\e(B)
1708 (#x7ef . ?\e,Fo\e(B)
1709 (#x7f0 . ?\e,Fp\e(B)
1710 (#x7f1 . ?\e,Fq\e(B)
1711 (#x7f2 . ?\e,Fs\e(B)
1712 (#x7f3 . ?\e,Fr\e(B)
1713 (#x7f4 . ?\e,Ft\e(B)
1714 (#x7f5 . ?\e,Fu\e(B)
1715 (#x7f6 . ?\e,Fv\e(B)
1716 (#x7f7 . ?\e,Fw\e(B)
1717 (#x7f8 . ?\e,Fx\e(B)
1718 (#x7f9 . ?\e,Fy\e(B)
1719 ;; Technical
1720 (#x8a1 . ?\e$,1|W\e(B)
1721 (#x8a2 . ?\e$A)0\e(B)
1722 (#x8a3 . ?\e$A)$\e(B)
1723 (#x8a4 . ?\e$,1{ \e(B)
1724 (#x8a5 . ?\e$,1{!\e(B)
1725 (#x8a6 . ?\e$A)&\e(B)
1726 (#x8a7 . ?\e$,1|A\e(B)
1727 (#x8a8 . ?\e$,1|C\e(B)
1728 (#x8a9 . ?\e$,1|D\e(B)
1729 (#x8aa . ?\e$,1|F\e(B)
1730 (#x8ab . ?\e$,1|;\e(B)
1731 (#x8ac . ?\e$,1|=\e(B)
1732 (#x8ad . ?\e$,1|>\e(B)
1733 (#x8ae . ?\e$,1|@\e(B)
1734 (#x8af . ?\e$,1|H\e(B)
1735 (#x8b0 . ?\e$,1|L\e(B)
1736 (#x8bc . ?\e$A!\\e(B)
1737 (#x8bd . ?\e$A!Y\e(B)
1738 (#x8be . ?\e$A!]\e(B)
1739 (#x8bf . ?\e$A!R\e(B)
1740 (#x8c0 . ?\e$A!`\e(B)
1741 (#x8c1 . ?\e$A!X\e(B)
1742 (#x8c2 . ?\e$A!^\e(B)
1743 (#x8c5 . ?\e$B"`\e(B)
1744 (#x8c8 . ?\e$(G"D\e(B)
1745 (#x8c9 . ?\e$(O"l\e(B)
1746 (#x8cd . ?\e$B"N\e(B)
1747 (#x8ce . ?\e$B"M\e(B)
1748 (#x8cf . ?\e$A!T\e(B)
1749 (#x8d6 . ?\e$A!L\e(B)
1750 (#x8da . ?\e$B">\e(B)
1751 (#x8db . ?\e$B"?\e(B)
1752 (#x8dc . ?\e$A!I\e(B)
1753 (#x8dd . ?\e$A!H\e(B)
1754 (#x8de . ?\e$A!D\e(B)
1755 (#x8df . ?\e$A!E\e(B)
1756 (#x8ef . ?\e$B"_\e(B)
1757 (#x8f6 . ?\e$,1!R\e(B)
1758 (#x8fb . ?\e$A!{\e(B)
1759 (#x8fc . ?\e$A!|\e(B)
1760 (#x8fd . ?\e$A!z\e(B)
1761 (#x8fe . ?\e$A!}\e(B)
1762 ;; Special
1763 (#x9e0 . ?\e$A!t\e(B)
1764 (#x9e1 . ?\e$(C"F\e(B)
1765 (#x9e2 . ?\e$(GB*\e(B)
1766 (#x9e3 . ?\e$(GB-\e(B)
1767 (#x9e4 . ?\e$(GB.\e(B)
1768 (#x9e5 . ?\e$(GB+\e(B)
1769 (#x9e8 . ?\e$,1}d\e(B)
1770 (#x9e9 . ?\e$(GB,\e(B)
1771 (#x9ea . ?\e$A)<\e(B)
1772 (#x9eb . ?\e$A)4\e(B)
1773 (#x9ec . ?\e$A)0\e(B)
1774 (#x9ed . ?\e$A)8\e(B)
1775 (#x9ee . ?\e$A)`\e(B)
1776 (#x9ef . ?\e$,1|Z\e(B)
1777 (#x9f0 . ?\e$,1|[\e(B)
1778 (#x9f1 . ?\e$A)$\e(B)
1779 (#x9f2 . ?\e$,1|\\e(B)
1780 (#x9f3 . ?\e$,1|]\e(B)
1781 (#x9f4 . ?\e$A)@\e(B)
1782 (#x9f5 . ?\e$A)H\e(B)
1783 (#x9f6 . ?\e$A)X\e(B)
1784 (#x9f7 . ?\e$A)P\e(B)
1785 (#x9f8 . ?\e$A)&\e(B)
1786 ;; Publishing
1787 (#xaa1 . ?\e$,1rc\e(B)
1788 (#xaa2 . ?\e$,1rb\e(B)
1789 (#xaa3 . ?\e$,1rd\e(B)
1790 (#xaa4 . ?\e$,1re\e(B)
1791 (#xaa5 . ?\e$,1rg\e(B)
1792 (#xaa6 . ?\e$,1rh\e(B)
1793 (#xaa7 . ?\e$,1ri\e(B)
1794 (#xaa8 . ?\e$,1rj\e(B)
1795 (#xaa9 . ?\e$(G!7\e(B)
1796 (#xaaa . ?\e$(G!9\e(B)
1797 (#xaae . ?\e$A!-\e(B)
1798 (#xaaf . ?\e$(G!-\e(B)
1799 (#xab0 . ?\e$(O'x\e(B)
1800 (#xab1 . ?\e$(O'y\e(B)
1801 (#xab2 . ?\e$(O'z\e(B)
1802 (#xab3 . ?\e$,1v6\e(B)
1803 (#xab4 . ?\e$,1v7\e(B)
1804 (#xab5 . ?\e$,1v8\e(B)
1805 (#xab6 . ?\e$,1v9\e(B)
1806 (#xab7 . ?\e$,1v:\e(B)
1807 (#xab8 . ?\e$(G""\e(B)
1808 (#xabb . ?\e$,1rr\e(B)
1809 (#xabc . ?\e$,1{)\e(B)
1810 (#xabe . ?\e$,1{*\e(B)
1811 (#xac3 . ?\e$(C({\e(B)
1812 (#xac4 . ?\e$(C(|\e(B)
1813 (#xac5 . ?\e$(C(}\e(B)
1814 (#xac6 . ?\e$(C(~\e(B)
1815 (#xac9 . ?\e$(D"o\e(B)
1816 (#xaca . ?\e$,2"s\e(B)
1817 (#xacc . ?\e$(O##\e(B)
1818 (#xacd . ?\e$(O#!\e(B)
1819 (#xace . ?\e$A!p\e(B)
1820 (#xacf . ?\e$,2!o\e(B)
1821 (#xad0 . ?\e,F!\e(B)
1822 (#xad1 . ?\e,F"\e(B)
1823 (#xad2 . ?\e,Y4\e(B)
1824 (#xad3 . ?\e,Y!\e(B)
1825 (#xad4 . ?\e$,1u^\e(B)
1826 (#xad6 . ?\e$A!d\e(B)
1827 (#xad7 . ?\e$A!e\e(B)
1828 (#xad9 . ?\e$,2%]\e(B)
1829 (#xadb . ?\e$,2!l\e(B)
1830 (#xadc . ?\e$(O#$\e(B)
1831 (#xadd . ?\e$(O#"\e(B)
1832 (#xade . ?\e$A!q\e(B)
1833 (#xadf . ?\e$,2!n\e(B)
1834 (#xae0 . ?\e$(O#?\e(B)
1835 (#xae1 . ?\e$,2!k\e(B)
1836 (#xae2 . ?\e$,2!m\e(B)
1837 (#xae3 . ?\e$A!w\e(B)
1838 (#xae4 . ?\e$(G!}\e(B)
1839 (#xae5 . ?\e$A!n\e(B)
1840 (#xae6 . ?\e$(O#@\e(B)
1841 (#xae7 . ?\e$,2!j\e(B)
1842 (#xae8 . ?\e$A!x\e(B)
1843 (#xae9 . ?\e$(G!~\e(B)
1844 (#xaea . ?\e$(C"P\e(B)
1845 (#xaeb . ?\e$(O-~\e(B)
1846 (#xaec . ?\e$(O&@\e(B)
1847 (#xaed . ?\e$(O&<\e(B)
1848 (#xaee . ?\e$(O&>\e(B)
1849 (#xaf0 . ?\e$,2%`\e(B)
1850 (#xaf1 . ?\e$B"w\e(B)
1851 (#xaf2 . ?\e$B"x\e(B)
1852 (#xaf3 . ?\e$(O'{\e(B)
1853 (#xaf4 . ?\e$,2%W\e(B)
1854 (#xaf5 . ?\e$B"t\e(B)
1855 (#xaf6 . ?\e$B"u\e(B)
1856 (#xaf7 . ?\e$A!a\e(B)
1857 (#xaf8 . ?\e$A!b\e(B)
1858 (#xaf9 . ?\e$(O&g\e(B)
1859 (#xafa . ?\e$,1zu\e(B)
1860 (#xafb . ?\e$,1uW\e(B)
1861 (#xafc . ?\e$,1s8\e(B)
1862 (#xafd . ?\e$,1rz\e(B)
1863 (#xafe . ?\e,Y%\e(B)
1864 ;; APL
1865 (#xba3 . ?<)
1866 (#xba6 . ?>)
1867 (#xba8 . ?\e$A!E\e(B)
1868 (#xba9 . ?\e$A!D\e(B)
1869 (#xbc0 . ?\e,A/\e(B)
1870 (#xbc2 . ?\e$A!M\e(B)
1871 (#xbc3 . ?\e$A!I\e(B)
1872 (#xbc4 . ?\e$,1zj\e(B)
1873 (#xbc6 . ?_)
1874 (#xbca . ?\e$,1x8\e(B)
1875 (#xbcc . ?\e$,1|5\e(B)
1876 (#xbce . ?\e$,1yd\e(B)
1877 (#xbcf . ?\e$A!p\e(B)
1878 (#xbd3 . ?\e$,1zh\e(B)
1879 (#xbd6 . ?\e$A!H\e(B)
1880 (#xbd8 . ?\e$B"?\e(B)
1881 (#xbda . ?\e$B">\e(B)
1882 (#xbdc . ?\e$,1yb\e(B)
1883 (#xbfc . ?\e$,1yc\e(B)
1884 ;; Hebrew
1885 (#xcdf . ?\e,H_\e(B)
1886 (#xce0 . ?\e,H`\e(B)
1887 (#xce1 . ?\e,Ha\e(B)
1888 (#xce2 . ?\e,Hb\e(B)
1889 (#xce3 . ?\e,Hc\e(B)
1890 (#xce4 . ?\e,Hd\e(B)
1891 (#xce5 . ?\e,He\e(B)
1892 (#xce6 . ?\e,Hf\e(B)
1893 (#xce7 . ?\e,Hg\e(B)
1894 (#xce8 . ?\e,Hh\e(B)
1895 (#xce9 . ?\e,Hi\e(B)
1896 (#xcea . ?\e,Hj\e(B)
1897 (#xceb . ?\e,Hk\e(B)
1898 (#xcec . ?\e,Hl\e(B)
1899 (#xced . ?\e,Hm\e(B)
1900 (#xcee . ?\e,Hn\e(B)
1901 (#xcef . ?\e,Ho\e(B)
1902 (#xcf0 . ?\e,Hp\e(B)
1903 (#xcf1 . ?\e,Hq\e(B)
1904 (#xcf2 . ?\e,Hr\e(B)
1905 (#xcf3 . ?\e,Hs\e(B)
1906 (#xcf4 . ?\e,Ht\e(B)
1907 (#xcf5 . ?\e,Hu\e(B)
1908 (#xcf6 . ?\e,Hv\e(B)
1909 (#xcf7 . ?\e,Hw\e(B)
1910 (#xcf8 . ?\e,Hx\e(B)
1911 (#xcf9 . ?\e,Hy\e(B)
1912 (#xcfa . ?\e,Hz\e(B)
1913 ;; Thai
1914 (#xda1 . ?\e,T!\e(B)
1915 (#xda2 . ?\e,T"\e(B)
1916 (#xda3 . ?\e,T#\e(B)
1917 (#xda4 . ?\e,T$\e(B)
1918 (#xda5 . ?\e,T%\e(B)
1919 (#xda6 . ?\e,T&\e(B)
1920 (#xda7 . ?\e,T'\e(B)
1921 (#xda8 . ?\e,T(\e(B)
1922 (#xda9 . ?\e,T)\e(B)
1923 (#xdaa . ?\e,T*\e(B)
1924 (#xdab . ?\e,T+\e(B)
1925 (#xdac . ?\e,T,\e(B)
1926 (#xdad . ?\e,T-\e(B)
1927 (#xdae . ?\e,T.\e(B)
1928 (#xdaf . ?\e,T/\e(B)
1929 (#xdb0 . ?\e,T0\e(B)
1930 (#xdb1 . ?\e,T1\e(B)
1931 (#xdb2 . ?\e,T2\e(B)
1932 (#xdb3 . ?\e,T3\e(B)
1933 (#xdb4 . ?\e,T4\e(B)
1934 (#xdb5 . ?\e,T5\e(B)
1935 (#xdb6 . ?\e,T6\e(B)
1936 (#xdb7 . ?\e,T7\e(B)
1937 (#xdb8 . ?\e,T8\e(B)
1938 (#xdb9 . ?\e,T9\e(B)
1939 (#xdba . ?\e,T:\e(B)
1940 (#xdbb . ?\e,T;\e(B)
1941 (#xdbc . ?\e,T<\e(B)
1942 (#xdbd . ?\e,T=\e(B)
1943 (#xdbe . ?\e,T>\e(B)
1944 (#xdbf . ?\e,T?\e(B)
1945 (#xdc0 . ?\e,T@\e(B)
1946 (#xdc1 . ?\e,TA\e(B)
1947 (#xdc2 . ?\e,TB\e(B)
1948 (#xdc3 . ?\e,TC\e(B)
1949 (#xdc4 . ?\e,TD\e(B)
1950 (#xdc5 . ?\e,TE\e(B)
1951 (#xdc6 . ?\e,TF\e(B)
1952 (#xdc7 . ?\e,TG\e(B)
1953 (#xdc8 . ?\e,TH\e(B)
1954 (#xdc9 . ?\e,TI\e(B)
1955 (#xdca . ?\e,TJ\e(B)
1956 (#xdcb . ?\e,TK\e(B)
1957 (#xdcc . ?\e,TL\e(B)
1958 (#xdcd . ?\e,TM\e(B)
1959 (#xdce . ?\e,TN\e(B)
1960 (#xdcf . ?\e,TO\e(B)
1961 (#xdd0 . ?\e,TP\e(B)
1962 (#xdd1 . ?\e,TQ\e(B)
1963 (#xdd2 . ?\e,TR\e(B)
1964 (#xdd3 . ?\e,TS\e(B)
1965 (#xdd4 . ?\e,TT\e(B)
1966 (#xdd5 . ?\e,TU\e(B)
1967 (#xdd6 . ?\e,TV\e(B)
1968 (#xdd7 . ?\e,TW\e(B)
1969 (#xdd8 . ?\e,TX\e(B)
1970 (#xdd9 . ?\e,TY\e(B)
1971 (#xdda . ?\e,TZ\e(B)
1972 (#xddf . ?\e,T_\e(B)
1973 (#xde0 . ?\e,T`\e(B)
1974 (#xde1 . ?\e,Ta\e(B)
1975 (#xde2 . ?\e,Tb\e(B)
1976 (#xde3 . ?\e,Tc\e(B)
1977 (#xde4 . ?\e,Td\e(B)
1978 (#xde5 . ?\e,Te\e(B)
1979 (#xde6 . ?\e,Tf\e(B)
1980 (#xde7 . ?\e,Tg\e(B)
1981 (#xde8 . ?\e,Th\e(B)
1982 (#xde9 . ?\e,Ti\e(B)
1983 (#xdea . ?\e,Tj\e(B)
1984 (#xdeb . ?\e,Tk\e(B)
1985 (#xdec . ?\e,Tl\e(B)
1986 (#xded . ?\e,Tm\e(B)
1987 (#xdf0 . ?\e,Tp\e(B)
1988 (#xdf1 . ?\e,Tq\e(B)
1989 (#xdf2 . ?\e,Tr\e(B)
1990 (#xdf3 . ?\e,Ts\e(B)
1991 (#xdf4 . ?\e,Tt\e(B)
1992 (#xdf5 . ?\e,Tu\e(B)
1993 (#xdf6 . ?\e,Tv\e(B)
1994 (#xdf7 . ?\e,Tw\e(B)
1995 (#xdf8 . ?\e,Tx\e(B)
1996 (#xdf9 . ?\e,Ty\e(B)
1997 ;; Korean
1998 (#xea1 . ?\e$(C$!\e(B)
1999 (#xea2 . ?\e$(C$"\e(B)
2000 (#xea3 . ?\e$(C$#\e(B)
2001 (#xea4 . ?\e$(C$$\e(B)
2002 (#xea5 . ?\e$(C$%\e(B)
2003 (#xea6 . ?\e$(C$&\e(B)
2004 (#xea7 . ?\e$(C$'\e(B)
2005 (#xea8 . ?\e$(C$(\e(B)
2006 (#xea9 . ?\e$(C$)\e(B)
2007 (#xeaa . ?\e$(C$*\e(B)
2008 (#xeab . ?\e$(C$+\e(B)
2009 (#xeac . ?\e$(C$,\e(B)
2010 (#xead . ?\e$(C$-\e(B)
2011 (#xeae . ?\e$(C$.\e(B)
2012 (#xeaf . ?\e$(C$/\e(B)
2013 (#xeb0 . ?\e$(C$0\e(B)
2014 (#xeb1 . ?\e$(C$1\e(B)
2015 (#xeb2 . ?\e$(C$2\e(B)
2016 (#xeb3 . ?\e$(C$3\e(B)
2017 (#xeb4 . ?\e$(C$4\e(B)
2018 (#xeb5 . ?\e$(C$5\e(B)
2019 (#xeb6 . ?\e$(C$6\e(B)
2020 (#xeb7 . ?\e$(C$7\e(B)
2021 (#xeb8 . ?\e$(C$8\e(B)
2022 (#xeb9 . ?\e$(C$9\e(B)
2023 (#xeba . ?\e$(C$:\e(B)
2024 (#xebb . ?\e$(C$;\e(B)
2025 (#xebc . ?\e$(C$<\e(B)
2026 (#xebd . ?\e$(C$=\e(B)
2027 (#xebe . ?\e$(C$>\e(B)
2028 (#xebf . ?\e$(C$?\e(B)
2029 (#xec0 . ?\e$(C$@\e(B)
2030 (#xec1 . ?\e$(C$A\e(B)
2031 (#xec2 . ?\e$(C$B\e(B)
2032 (#xec3 . ?\e$(C$C\e(B)
2033 (#xec4 . ?\e$(C$D\e(B)
2034 (#xec5 . ?\e$(C$E\e(B)
2035 (#xec6 . ?\e$(C$F\e(B)
2036 (#xec7 . ?\e$(C$G\e(B)
2037 (#xec8 . ?\e$(C$H\e(B)
2038 (#xec9 . ?\e$(C$I\e(B)
2039 (#xeca . ?\e$(C$J\e(B)
2040 (#xecb . ?\e$(C$K\e(B)
2041 (#xecc . ?\e$(C$L\e(B)
2042 (#xecd . ?\e$(C$M\e(B)
2043 (#xece . ?\e$(C$N\e(B)
2044 (#xecf . ?\e$(C$O\e(B)
2045 (#xed0 . ?\e$(C$P\e(B)
2046 (#xed1 . ?\e$(C$Q\e(B)
2047 (#xed2 . ?\e$(C$R\e(B)
2048 (#xed3 . ?\e$(C$S\e(B)
2049 (#xed4 . ?\e$,1LH\e(B)
2050 (#xed5 . ?\e$,1LI\e(B)
2051 (#xed6 . ?\e$,1LJ\e(B)
2052 (#xed7 . ?\e$,1LK\e(B)
2053 (#xed8 . ?\e$,1LL\e(B)
2054 (#xed9 . ?\e$,1LM\e(B)
2055 (#xeda . ?\e$,1LN\e(B)
2056 (#xedb . ?\e$,1LO\e(B)
2057 (#xedc . ?\e$,1LP\e(B)
2058 (#xedd . ?\e$,1LQ\e(B)
2059 (#xede . ?\e$,1LR\e(B)
2060 (#xedf . ?\e$,1LS\e(B)
2061 (#xee0 . ?\e$,1LT\e(B)
2062 (#xee1 . ?\e$,1LU\e(B)
2063 (#xee2 . ?\e$,1LV\e(B)
2064 (#xee3 . ?\e$,1LW\e(B)
2065 (#xee4 . ?\e$,1LX\e(B)
2066 (#xee5 . ?\e$,1LY\e(B)
2067 (#xee6 . ?\e$,1LZ\e(B)
2068 (#xee7 . ?\e$,1L[\e(B)
2069 (#xee8 . ?\e$,1L\\e(B)
2070 (#xee9 . ?\e$,1L]\e(B)
2071 (#xeea . ?\e$,1L^\e(B)
2072 (#xeeb . ?\e$,1L_\e(B)
2073 (#xeec . ?\e$,1L`\e(B)
2074 (#xeed . ?\e$,1La\e(B)
2075 (#xeee . ?\e$,1Lb\e(B)
2076 (#xeef . ?\e$(C$]\e(B)
2077 (#xef0 . ?\e$(C$a\e(B)
2078 (#xef1 . ?\e$(C$h\e(B)
2079 (#xef2 . ?\e$(C$o\e(B)
2080 (#xef3 . ?\e$(C$q\e(B)
2081 (#xef4 . ?\e$(C$t\e(B)
2082 (#xef5 . ?\e$(C$v\e(B)
2083 (#xef6 . ?\e$(C$}\e(B)
2084 (#xef7 . ?\e$(C$~\e(B)
2085 (#xef8 . ?\e$,1M+\e(B)
2086 (#xef9 . ?\e$,1M0\e(B)
2087 (#xefa . ?\e$,1M9\e(B)
2088 (#xeff . ?\e$,1tI\e(B)
2089 ;; Latin-5
2090 ;; Latin-6
2091 ;; Latin-7
2092 ;; Latin-8
2093 ;; Latin-9
2094 (#x13bc . ?\e,b<\e(B)
2095 (#x13bd . ?\e,b=\e(B)
2096 (#x13be . ?\e,_/\e(B)
2097 ;; Currency
2098 (#x20a0 . ?\e$,1t@\e(B)
2099 (#x20a1 . ?\e$,1tA\e(B)
2100 (#x20a2 . ?\e$,1tB\e(B)
2101 (#x20a3 . ?\e$,1tC\e(B)
2102 (#x20a4 . ?\e$,1tD\e(B)
2103 (#x20a5 . ?\e$,1tE\e(B)
2104 (#x20a6 . ?\e$,1tF\e(B)
2105 (#x20a7 . ?\e$,1tG\e(B)
2106 (#x20a8 . ?\e$,1tH\e(B)
2107 (#x20aa . ?\e$,1tJ\e(B)
2108 (#x20ab . ?\e$,1tK\e(B)
2109 (#x20ac . ?\e,b$\e(B)))
2110 (puthash (car pair) (cdr pair) x-keysym-table))
2112 ;; The following keysym codes for graphics are listed in the document
2113 ;; as not having unicodes available:
2115 ;; #x08b1 TOP LEFT SUMMATION Technical
2116 ;; #x08b2 BOTTOM LEFT SUMMATION Technical
2117 ;; #x08b3 TOP VERTICAL SUMMATION CONNECTOR Technical
2118 ;; #x08b4 BOTTOM VERTICAL SUMMATION CONNECTOR Technical
2119 ;; #x08b5 TOP RIGHT SUMMATION Technical
2120 ;; #x08b6 BOTTOM RIGHT SUMMATION Technical
2121 ;; #x08b7 RIGHT MIDDLE SUMMATION Technical
2122 ;; #x0aac SIGNIFICANT BLANK SYMBOL Publish
2123 ;; #x0abd DECIMAL POINT Publish
2124 ;; #x0abf MARKER Publish
2125 ;; #x0acb TRADEMARK SIGN IN CIRCLE Publish
2126 ;; #x0ada HEXAGRAM Publish
2127 ;; #x0aff CURSOR Publish
2128 ;; #x0dde THAI MAIHANAKAT Thai
2131 ;;;; Selections and cut buffers
2133 ;; We keep track of the last text selected here, so we can check the
2134 ;; current selection against it, and avoid passing back our own text
2135 ;; from x-cut-buffer-or-selection-value. We track all three
2136 ;; seperately in case another X application only sets one of them
2137 ;; (say the cut buffer) we aren't fooled by the PRIMARY or
2138 ;; CLIPBOARD selection staying the same.
2139 (defvar x-last-selected-text-clipboard nil
2140 "The value of the CLIPBOARD X selection last time we selected or
2141 pasted text.")
2142 (defvar x-last-selected-text-primary nil
2143 "The value of the PRIMARY X selection last time we selected or
2144 pasted text.")
2145 (defvar x-last-selected-text-cut nil
2146 "The value of the X cut buffer last time we selected or pasted text.
2147 The actual text stored in the X cut buffer is what encoded from this value.")
2148 (defvar x-last-selected-text-cut-encoded nil
2149 "The value of the X cut buffer last time we selected or pasted text.
2150 This is the actual text stored in the X cut buffer.")
2151 (defvar x-last-cut-buffer-coding 'iso-latin-1
2152 "The coding we last used to encode/decode the text from the X cut buffer")
2154 (defvar x-cut-buffer-max 20000 ; Note this value is overridden below.
2155 "Max number of characters to put in the cut buffer.
2156 It is said that overlarge strings are slow to put into the cut buffer.")
2158 (defcustom x-select-enable-clipboard nil
2159 "Non-nil means cutting and pasting uses the clipboard.
2160 This is in addition to, but in preference to, the primary selection."
2161 :type 'boolean
2162 :group 'killing)
2164 (defcustom x-select-enable-primary t
2165 "Non-nil means cutting and pasting uses the primary selection."
2166 :type 'boolean
2167 :group 'killing)
2169 (defun x-select-text (text &optional push)
2170 "Make TEXT, a string, the primary X selection.
2171 Also, set the value of X cut buffer 0, for backward compatibility
2172 with older X applications.
2173 gildea@stop.mail-abuse.org says it's not desirable to put kills
2174 in the clipboard."
2175 ;; With multi-tty, this function may be called from a tty frame.
2176 (when (eq (framep (selected-frame)) 'x)
2177 ;; Don't send the cut buffer too much text.
2178 ;; It becomes slow, and if really big it causes errors.
2179 (cond ((>= (length text) x-cut-buffer-max)
2180 (x-set-cut-buffer "" push)
2181 (setq x-last-selected-text-cut ""
2182 x-last-selected-text-cut-encoded ""))
2184 (setq x-last-selected-text-cut text
2185 x-last-cut-buffer-coding 'iso-latin-1
2186 x-last-selected-text-cut-encoded
2187 ;; ICCCM says cut buffer always contain ISO-Latin-1
2188 (encode-coding-string text 'iso-latin-1))
2189 (x-set-cut-buffer x-last-selected-text-cut-encoded push)))
2190 (when x-select-enable-primary
2191 (x-set-selection 'PRIMARY text)
2192 (setq x-last-selected-text-primary text))
2193 (when x-select-enable-clipboard
2194 (x-set-selection 'CLIPBOARD text)
2195 (setq x-last-selected-text-clipboard text))))
2197 (defvar x-select-request-type nil
2198 "*Data type request for X selection.
2199 The value is one of the following data types, a list of them, or nil:
2200 `COMPOUND_TEXT', `UTF8_STRING', `STRING', `TEXT'
2202 If the value is one of the above symbols, try only the specified
2203 type.
2205 If the value is a list of them, try each of them in the specified
2206 order until succeed.
2208 The value nil is the same as this list:
2209 \(UTF8_STRING COMPOUND_TEXT STRING)
2212 ;; Get a selection value of type TYPE by calling x-get-selection with
2213 ;; an appropiate DATA-TYPE argument decided by `x-select-request-type'.
2214 ;; The return value is already decoded. If x-get-selection causes an
2215 ;; error, this function return nil.
2217 (defun x-selection-value (type)
2218 (let ((request-type (or x-select-request-type
2219 '(UTF8_STRING COMPOUND_TEXT STRING)))
2220 text)
2221 (if (consp request-type)
2222 (while (and request-type (not text))
2223 (condition-case nil
2224 (setq text (x-get-selection type (car request-type)))
2225 (error nil))
2226 (setq request-type (cdr request-type)))
2227 (condition-case nil
2228 (setq text (x-get-selection type request-type))
2229 (error nil)))
2230 (if text
2231 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
2232 text))
2234 ;; Return the value of the current X selection.
2235 ;; Consult the selection, and the cut buffer. Treat empty strings
2236 ;; as if they were unset.
2237 ;; If this function is called twice and finds the same text,
2238 ;; it returns nil the second time. This is so that a single
2239 ;; selection won't be added to the kill ring over and over.
2240 (defun x-cut-buffer-or-selection-value ()
2241 ;; With multi-tty, this function may be called from a tty frame.
2242 (when (eq (framep (selected-frame)) 'x)
2243 (let (clip-text primary-text cut-text)
2244 (when x-select-enable-clipboard
2245 (setq clip-text (x-selection-value 'CLIPBOARD))
2246 (if (string= clip-text "") (setq clip-text nil))
2248 ;; Check the CLIPBOARD selection for 'newness', is it different
2249 ;; from what we remebered them to be last time we did a
2250 ;; cut/paste operation.
2251 (setq clip-text
2252 (cond ;; check clipboard
2253 ((or (not clip-text) (string= clip-text ""))
2254 (setq x-last-selected-text-clipboard nil))
2255 ((eq clip-text x-last-selected-text-clipboard) nil)
2256 ((string= clip-text x-last-selected-text-clipboard)
2257 ;; Record the newer string,
2258 ;; so subsequent calls can use the `eq' test.
2259 (setq x-last-selected-text-clipboard clip-text)
2260 nil)
2261 (t (setq x-last-selected-text-clipboard clip-text)))))
2263 (when x-select-enable-primary
2264 (setq primary-text (x-selection-value 'PRIMARY))
2265 ;; Check the PRIMARY selection for 'newness', is it different
2266 ;; from what we remebered them to be last time we did a
2267 ;; cut/paste operation.
2268 (setq primary-text
2269 (cond ;; check primary selection
2270 ((or (not primary-text) (string= primary-text ""))
2271 (setq x-last-selected-text-primary nil))
2272 ((eq primary-text x-last-selected-text-primary) nil)
2273 ((string= primary-text x-last-selected-text-primary)
2274 ;; Record the newer string,
2275 ;; so subsequent calls can use the `eq' test.
2276 (setq x-last-selected-text-primary primary-text)
2277 nil)
2279 (setq x-last-selected-text-primary primary-text)))))
2281 (setq cut-text (x-get-cut-buffer 0))
2283 ;; Check the x cut buffer for 'newness', is it different
2284 ;; from what we remebered them to be last time we did a
2285 ;; cut/paste operation.
2286 (setq cut-text
2287 (let ((next-coding (or next-selection-coding-system 'iso-latin-1)))
2288 (cond ;; check cut buffer
2289 ((or (not cut-text) (string= cut-text ""))
2290 (setq x-last-selected-text-cut nil))
2291 ;; This short cut doesn't work because x-get-cut-buffer
2292 ;; always returns a newly created string.
2293 ;; ((eq cut-text x-last-selected-text-cut) nil)
2294 ((and (string= cut-text x-last-selected-text-cut-encoded)
2295 (eq x-last-cut-buffer-coding next-coding))
2296 ;; See the comment above. No need of this recording.
2297 ;; Record the newer string,
2298 ;; so subsequent calls can use the `eq' test.
2299 ;; (setq x-last-selected-text-cut cut-text)
2300 nil)
2302 (setq x-last-selected-text-cut-encoded cut-text
2303 x-last-cut-buffer-coding next-coding
2304 x-last-selected-text-cut
2305 ;; ICCCM says cut buffer always contain ISO-Latin-1, but
2306 ;; use next-selection-coding-system if not nil.
2307 (decode-coding-string
2308 cut-text next-coding))))))
2310 ;; As we have done one selection, clear this now.
2311 (setq next-selection-coding-system nil)
2313 ;; At this point we have recorded the current values for the
2314 ;; selection from clipboard (if we are supposed to) primary,
2315 ;; and cut buffer. So return the first one that has changed
2316 ;; (which is the first non-null one).
2318 ;; NOTE: There will be cases where more than one of these has
2319 ;; changed and the new values differ. This indicates that
2320 ;; something like the following has happened since the last time
2321 ;; we looked at the selections: Application X set all the
2322 ;; selections, then Application Y set only one or two of them (say
2323 ;; just the cut-buffer). In this case since we don't have
2324 ;; timestamps there is no way to know what the 'correct' value to
2325 ;; return is. The nice thing to do would be to tell the user we
2326 ;; saw multiple possible selections and ask the user which was the
2327 ;; one they wanted.
2328 ;; This code is still a big improvement because now the user can
2329 ;; futz with the current selection and get emacs to pay attention
2330 ;; to the cut buffer again (previously as soon as clipboard or
2331 ;; primary had been set the cut buffer would essentially never be
2332 ;; checked again).
2333 (or clip-text primary-text cut-text)
2336 ;; Arrange for the kill and yank functions to set and check the clipboard.
2337 (setq interprogram-cut-function 'x-select-text)
2338 (setq interprogram-paste-function 'x-cut-buffer-or-selection-value)
2340 (defun x-clipboard-yank ()
2341 "Insert the clipboard contents, or the last stretch of killed text."
2342 (interactive "*")
2343 (let ((clipboard-text (x-selection-value 'CLIPBOARD))
2344 (x-select-enable-clipboard t))
2345 (if (and clipboard-text (> (length clipboard-text) 0))
2346 (kill-new clipboard-text))
2347 (yank)))
2349 (defun x-menu-bar-open (&optional frame)
2350 "Open the menu bar if `menu-bar-mode' is on. otherwise call `tmm-menubar'."
2351 (interactive "i")
2352 (if menu-bar-mode (accelerate-menu frame)
2353 (tmm-menubar)))
2356 ;;; Window system initialization.
2358 (defun x-win-suspend-error ()
2359 (error "Suspending an Emacs running under X makes no sense"))
2361 (defvar x-initialized nil
2362 "Non-nil if the X window system has been initialized.")
2364 (defun x-initialize-window-system ()
2365 "Initialize Emacs for X frames and open the first connection to an X server."
2366 ;; Make sure we have a valid resource name.
2367 (or (stringp x-resource-name)
2368 (let (i)
2369 (setq x-resource-name (invocation-name))
2371 ;; Change any . or * characters in x-resource-name to hyphens,
2372 ;; so as not to choke when we use it in X resource queries.
2373 (while (setq i (string-match "[.*]" x-resource-name))
2374 (aset x-resource-name i ?-))))
2376 (x-open-connection (or x-display-name
2377 (setq x-display-name (or (getenv "DISPLAY" (selected-frame))
2378 (getenv "DISPLAY"))))
2379 x-command-line-resources
2380 ;; Exit Emacs with fatal error if this fails and we
2381 ;; are the initial display.
2382 (eq initial-window-system 'x))
2384 (setq x-cut-buffer-max (min (- (/ (x-server-max-request-size) 2) 100)
2385 x-cut-buffer-max))
2387 ;; Setup the default fontset.
2388 (setup-default-fontset)
2390 ;; Create the standard fontset.
2391 (create-fontset-from-fontset-spec standard-fontset-spec t)
2393 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
2394 (create-fontset-from-x-resource)
2396 ;; Set scroll bar mode to right if set by X resources. Default is left.
2397 (if (equal (x-get-resource "verticalScrollBars" "ScrollBars") "right")
2398 (customize-set-variable 'scroll-bar-mode 'right))
2400 ;; Apply a geometry resource to the initial frame. Put it at the end
2401 ;; of the alist, so that anything specified on the command line takes
2402 ;; precedence.
2403 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
2404 parsed)
2405 (if res-geometry
2406 (progn
2407 (setq parsed (x-parse-geometry res-geometry))
2408 ;; If the resource specifies a position,
2409 ;; call the position and size "user-specified".
2410 (if (or (assq 'top parsed) (assq 'left parsed))
2411 (setq parsed (cons '(user-position . t)
2412 (cons '(user-size . t) parsed))))
2413 ;; All geometry parms apply to the initial frame.
2414 (setq initial-frame-alist (append initial-frame-alist parsed))
2415 ;; The size parms apply to all frames. Don't set it if there are
2416 ;; sizes there already (from command line).
2417 (if (and (assq 'height parsed)
2418 (not (assq 'height default-frame-alist)))
2419 (setq default-frame-alist
2420 (cons (cons 'height (cdr (assq 'height parsed)))
2421 default-frame-alist)))
2422 (if (and (assq 'width parsed)
2423 (not (assq 'width default-frame-alist)))
2424 (setq default-frame-alist
2425 (cons (cons 'width (cdr (assq 'width parsed)))
2426 default-frame-alist))))))
2428 ;; Check the reverseVideo resource.
2429 (let ((case-fold-search t))
2430 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
2431 (if (and rv
2432 (string-match "^\\(true\\|yes\\|on\\)$" rv))
2433 (setq default-frame-alist
2434 (cons '(reverse . t) default-frame-alist)))))
2436 ;; Set x-selection-timeout, measured in milliseconds.
2437 (let ((res-selection-timeout
2438 (x-get-resource "selectionTimeout" "SelectionTimeout")))
2439 (setq x-selection-timeout 20000)
2440 (if res-selection-timeout
2441 (setq x-selection-timeout (string-to-number res-selection-timeout))))
2443 ;; Don't let Emacs suspend under X.
2444 (add-hook 'suspend-hook 'x-win-suspend-error)
2446 ;; Turn off window-splitting optimization; X is usually fast enough
2447 ;; that this is only annoying.
2448 (setq split-window-keep-point t)
2450 ;; Motif direct handling of f10 wasn't working right,
2451 ;; So temporarily we've turned it off in lwlib-Xm.c
2452 ;; and turned the Emacs f10 back on.
2453 ;; ;; Motif normally handles f10 itself, so don't try to handle it a second time.
2454 ;; (if (featurep 'motif)
2455 ;; (global-set-key [f10] 'ignore))
2457 ;; Turn on support for mouse wheels.
2458 (mouse-wheel-mode 1)
2460 ;; Enable CLIPBOARD copy/paste through menu bar commands.
2461 (menu-bar-enable-clipboard)
2463 ;; Override Paste so it looks at CLIPBOARD first.
2464 (define-key menu-bar-edit-menu [paste]
2465 (append '(menu-item "Paste" x-clipboard-yank
2466 :enable (not buffer-read-only)
2467 :help "Paste (yank) text most recently cut/copied")
2468 nil))
2470 (setq x-initialized t))
2472 (add-to-list 'handle-args-function-alist '(x . x-handle-args))
2473 (add-to-list 'frame-creation-function-alist '(x . x-create-frame-with-faces))
2474 (add-to-list 'window-system-initialization-alist '(x . x-initialize-window-system))
2476 ;; Initiate drag and drop
2477 (add-hook 'after-make-frame-functions 'x-dnd-init-frame)
2478 (define-key special-event-map [drag-n-drop] 'x-dnd-handle-drag-n-drop-event)
2480 (defcustom x-gtk-stock-map
2482 ("etc/images/new" . "gtk-new")
2483 ("etc/images/open" . "gtk-open")
2484 ("etc/images/diropen" . "n:system-file-manager")
2485 ("etc/images/close" . "gtk-close")
2486 ("etc/images/save" . "gtk-save")
2487 ("etc/images/saveas" . "gtk-save-as")
2488 ("etc/images/undo" . "gtk-undo")
2489 ("etc/images/cut" . "gtk-cut")
2490 ("etc/images/copy" . "gtk-copy")
2491 ("etc/images/paste" . "gtk-paste")
2492 ("etc/images/search" . "gtk-find")
2493 ("etc/images/print" . "gtk-print")
2494 ("etc/images/preferences" . "gtk-preferences")
2495 ("etc/images/help" . "gtk-help")
2496 ("etc/images/left-arrow" . "gtk-go-back")
2497 ("etc/images/right-arrow" . "gtk-go-forward")
2498 ("etc/images/home" . "gtk-home")
2499 ("etc/images/jump-to" . "gtk-jump-to")
2500 ("etc/images/index" . "gtk-index")
2501 ("etc/images/search" . "gtk-find")
2502 ("etc/images/exit" . "gtk-quit")
2503 ("etc/images/cancel" . "gtk-cancel")
2504 ("etc/images/bookmark_add" . "n:bookmark_add")
2505 ;; Used in Gnus and/or MH-E:
2506 ("etc/images/attach" . "gtk-attach")
2507 ("etc/images/connect" . "gtk-connect")
2508 ("etc/images/contact" . "gtk-contact")
2509 ("etc/images/delete" . "gtk-delete")
2510 ("etc/images/describe" . "gtk-properties")
2511 ("etc/images/disconnect" . "gtk-disconnect")
2512 ;; ("etc/images/exit" . "gtk-exit")
2513 ("etc/images/lock-broken" . "gtk-lock_broken")
2514 ("etc/images/lock-ok" . "gtk-lock_ok")
2515 ("etc/images/lock" . "gtk-lock")
2516 ("etc/images/next-page" . "gtk-next-page")
2517 ("etc/images/refresh" . "gtk-refresh")
2518 ("etc/images/sort-ascending" . "gtk-sort-ascending")
2519 ("etc/images/sort-column-ascending" . "gtk-sort-column-ascending")
2520 ("etc/images/sort-criteria" . "gtk-sort-criteria")
2521 ("etc/images/sort-descending" . "gtk-sort-descending")
2522 ("etc/images/sort-row-ascending" . "gtk-sort-row-ascending")
2523 ("images/gnus/toggle-subscription" . "gtk-task-recurring")
2524 ("images/mail/compose" . "gtk-mail-compose")
2525 ("images/mail/copy" . "gtk-mail-copy")
2526 ("images/mail/forward" . "gtk-mail-forward")
2527 ("images/mail/inbox" . "gtk-inbox")
2528 ("images/mail/move" . "gtk-mail-move")
2529 ("images/mail/not-spam" . "gtk-not-spam")
2530 ("images/mail/outbox" . "gtk-outbox")
2531 ("images/mail/reply-all" . "gtk-mail-reply-to-all")
2532 ("images/mail/reply" . "gtk-mail-reply")
2533 ("images/mail/save-draft" . "gtk-mail-handling")
2534 ("images/mail/send" . "gtk-mail-send")
2535 ("images/mail/spam" . "gtk-spam")
2536 ;; No themed versions available:
2537 ;; mail/preview (combining stock_mail and stock_zoom)
2538 ;; mail/save (combining stock_mail, stock_save and stock_convert)
2540 "How icons for tool bars are mapped to Gtk+ stock items.
2541 Emacs must be compiled with the Gtk+ toolkit for this to have any effect.
2542 A value that begins with n: denotes a named icon instead of a stock icon."
2543 :version "22.2"
2544 :type '(choice (repeat (choice symbol
2545 (cons (string :tag "Emacs icon")
2546 (string :tag "Stock/named")))))
2547 :group 'x)
2549 (defcustom icon-map-list '(x-gtk-stock-map)
2550 "A list of alists that maps icon file names to stock/named icons.
2551 The alists are searched in the order they appear. The first match is used.
2552 The keys in the alists are file names without extension and with two directory
2553 components. For example, to map /usr/share/emacs/22.1.1/etc/images/open.xpm
2554 to stock item gtk-open, use:
2556 (\"etc/images/open\" . \"gtk-open\")
2558 Themes also have named icons. To map to one of those, use n: before the name:
2560 (\"etc/images/diropen\" . \"n:system-file-manager\")
2562 The list elements are either the symbol name for the alist or the
2563 alist itself.
2565 If you don't want stock icons, set the variable to nil."
2566 :version "22.2"
2567 :type '(choice (const :tag "Don't use stock icons" nil)
2568 (repeat (choice symbol
2569 (cons (string :tag "Emacs icon")
2570 (string :tag "Stock/named")))))
2571 :group 'x)
2573 (defun x-gtk-map-stock (file)
2574 "Map icon with file name FILE to a Gtk+ stock name, using `x-gtk-stock-map'."
2575 (if (stringp file)
2576 (let* ((file-sans (file-name-sans-extension file))
2577 (key (and (string-match "/\\([^/]+/[^/]+/[^/]+$\\)" file-sans)
2578 (match-string 1 file-sans)))
2579 (value))
2580 (mapc (lambda (elem)
2581 (let ((assoc (if (symbolp elem) (symbol-value elem) elem)))
2582 (or value (setq value (assoc-string (or key file-sans)
2583 assoc)))))
2584 icon-map-list)
2585 (and value (cdr value)))
2586 nil))
2588 (provide 'x-win)
2590 ;; arch-tag: f1501302-db8b-4d95-88e3-116697d89f78
2591 ;;; x-win.el ends here