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