]> code.delx.au - gnu-emacs/blob - lisp/term/mac-win.el
Merged from miles@gnu.org--gnu-2005 (patch 469)
[gnu-emacs] / lisp / term / mac-win.el
1 ;;; mac-win.el --- parse switches controlling interface with Mac window system -*-coding: iso-2022-7bit;-*-
2
3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2005
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Andrew Choi <akochoi@mac.com>
7 ;; Keywords: terminals
8
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
13 ;; the Free Software Foundation; either version 2, or (at your option)
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
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; Mac-win.el: this file is loaded from ../lisp/startup.el when it recognizes
29 ;; that Mac windows are to be used. Command line switches are parsed and those
30 ;; pertaining to Mac are processed and removed from the command line. The
31 ;; Mac display is opened and hooks are set for popping up the initial window.
32
33 ;; startup.el will then examine startup files, and eventually call the hooks
34 ;; which create the first window(s).
35
36 ;;; Code:
37 \f
38 ;; These are the standard X switches from the Xt Initialize.c file of
39 ;; Release 4.
40
41 ;; Command line Resource Manager string
42
43 ;; +rv *reverseVideo
44 ;; +synchronous *synchronous
45 ;; -background *background
46 ;; -bd *borderColor
47 ;; -bg *background
48 ;; -bordercolor *borderColor
49 ;; -borderwidth .borderWidth
50 ;; -bw .borderWidth
51 ;; -display .display
52 ;; -fg *foreground
53 ;; -fn *font
54 ;; -font *font
55 ;; -foreground *foreground
56 ;; -geometry .geometry
57 ;; -i .iconType
58 ;; -itype .iconType
59 ;; -iconic .iconic
60 ;; -name .name
61 ;; -reverse *reverseVideo
62 ;; -rv *reverseVideo
63 ;; -selectionTimeout .selectionTimeout
64 ;; -synchronous *synchronous
65 ;; -xrm
66
67 ;; An alist of X options and the function which handles them. See
68 ;; ../startup.el.
69
70 (if (not (eq window-system 'mac))
71 (error "%s: Loading mac-win.el but not compiled for Mac" (invocation-name)))
72
73 (require 'frame)
74 (require 'mouse)
75 (require 'scroll-bar)
76 (require 'faces)
77 (require 'select)
78 (require 'menu-bar)
79 (require 'fontset)
80 (require 'dnd)
81
82 (defvar x-invocation-args)
83
84 (defvar x-command-line-resources nil)
85
86 ;; Handler for switches of the form "-switch value" or "-switch".
87 (defun x-handle-switch (switch)
88 (let ((aelt (assoc switch command-line-x-option-alist)))
89 (if aelt
90 (let ((param (nth 3 aelt))
91 (value (nth 4 aelt)))
92 (if value
93 (setq default-frame-alist
94 (cons (cons param value)
95 default-frame-alist))
96 (setq default-frame-alist
97 (cons (cons param
98 (car x-invocation-args))
99 default-frame-alist)
100 x-invocation-args (cdr x-invocation-args)))))))
101
102 ;; Handler for switches of the form "-switch n"
103 (defun x-handle-numeric-switch (switch)
104 (let ((aelt (assoc switch command-line-x-option-alist)))
105 (if aelt
106 (let ((param (nth 3 aelt)))
107 (setq default-frame-alist
108 (cons (cons param
109 (string-to-number (car x-invocation-args)))
110 default-frame-alist)
111 x-invocation-args
112 (cdr x-invocation-args))))))
113
114 ;; Handle options that apply to initial frame only
115 (defun x-handle-initial-switch (switch)
116 (let ((aelt (assoc switch command-line-x-option-alist)))
117 (if aelt
118 (let ((param (nth 3 aelt))
119 (value (nth 4 aelt)))
120 (if value
121 (setq initial-frame-alist
122 (cons (cons param value)
123 initial-frame-alist))
124 (setq initial-frame-alist
125 (cons (cons param
126 (car x-invocation-args))
127 initial-frame-alist)
128 x-invocation-args (cdr x-invocation-args)))))))
129
130 ;; Make -iconic apply only to the initial frame!
131 (defun x-handle-iconic (switch)
132 (setq initial-frame-alist
133 (cons '(visibility . icon) initial-frame-alist)))
134
135 ;; Handle the -xrm option.
136 (defun x-handle-xrm-switch (switch)
137 (unless (consp x-invocation-args)
138 (error "%s: missing argument to `%s' option" (invocation-name) switch))
139 (setq x-command-line-resources
140 (if (null x-command-line-resources)
141 (car x-invocation-args)
142 (concat x-command-line-resources "\n" (car x-invocation-args))))
143 (setq x-invocation-args (cdr x-invocation-args)))
144
145 ;; Handle the geometry option
146 (defun x-handle-geometry (switch)
147 (let* ((geo (x-parse-geometry (car x-invocation-args)))
148 (left (assq 'left geo))
149 (top (assq 'top geo))
150 (height (assq 'height geo))
151 (width (assq 'width geo)))
152 (if (or height width)
153 (setq default-frame-alist
154 (append default-frame-alist
155 '((user-size . t))
156 (if height (list height))
157 (if width (list width)))
158 initial-frame-alist
159 (append initial-frame-alist
160 '((user-size . t))
161 (if height (list height))
162 (if width (list width)))))
163 (if (or left top)
164 (setq initial-frame-alist
165 (append initial-frame-alist
166 '((user-position . t))
167 (if left (list left))
168 (if top (list top)))))
169 (setq x-invocation-args (cdr x-invocation-args))))
170
171 ;; Handle the -name option. Set the variable x-resource-name
172 ;; to the option's operand; set the name of
173 ;; the initial frame, too.
174 (defun x-handle-name-switch (switch)
175 (or (consp x-invocation-args)
176 (error "%s: missing argument to `%s' option" (invocation-name) switch))
177 (setq x-resource-name (car x-invocation-args)
178 x-invocation-args (cdr x-invocation-args))
179 (setq initial-frame-alist (cons (cons 'name x-resource-name)
180 initial-frame-alist)))
181
182 (defvar x-display-name nil
183 "The display name specifying server and frame.")
184
185 (defun x-handle-display (switch)
186 (setq x-display-name (car x-invocation-args)
187 x-invocation-args (cdr x-invocation-args)))
188
189 (defun x-handle-args (args)
190 "Process the X-related command line options in ARGS.
191 This is done before the user's startup file is loaded. They are copied to
192 `x-invocation-args', from which the X-related things are extracted, first
193 the switch (e.g., \"-fg\") in the following code, and possible values
194 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
195 This function returns ARGS minus the arguments that have been processed."
196 ;; We use ARGS to accumulate the args that we don't handle here, to return.
197 (setq x-invocation-args args
198 args nil)
199 (while (and x-invocation-args
200 (not (equal (car x-invocation-args) "--")))
201 (let* ((this-switch (car x-invocation-args))
202 (orig-this-switch this-switch)
203 completion argval aelt handler)
204 (setq x-invocation-args (cdr x-invocation-args))
205 ;; Check for long options with attached arguments
206 ;; and separate out the attached option argument into argval.
207 (if (string-match "^--[^=]*=" this-switch)
208 (setq argval (substring this-switch (match-end 0))
209 this-switch (substring this-switch 0 (1- (match-end 0)))))
210 ;; Complete names of long options.
211 (if (string-match "^--" this-switch)
212 (progn
213 (setq completion (try-completion this-switch command-line-x-option-alist))
214 (if (eq completion t)
215 ;; Exact match for long option.
216 nil
217 (if (stringp completion)
218 (let ((elt (assoc completion command-line-x-option-alist)))
219 ;; Check for abbreviated long option.
220 (or elt
221 (error "Option `%s' is ambiguous" this-switch))
222 (setq this-switch completion))))))
223 (setq aelt (assoc this-switch command-line-x-option-alist))
224 (if aelt (setq handler (nth 2 aelt)))
225 (if handler
226 (if argval
227 (let ((x-invocation-args
228 (cons argval x-invocation-args)))
229 (funcall handler this-switch))
230 (funcall handler this-switch))
231 (setq args (cons orig-this-switch args)))))
232 (nconc (nreverse args) x-invocation-args))
233
234 \f
235 ;;
236 ;; Standard Mac cursor shapes
237 ;;
238
239 (defconst mac-pointer-arrow 0)
240 (defconst mac-pointer-copy-arrow 1)
241 (defconst mac-pointer-alias-arrow 2)
242 (defconst mac-pointer-contextual-menu-arrow 3)
243 (defconst mac-pointer-I-beam 4)
244 (defconst mac-pointer-cross 5)
245 (defconst mac-pointer-plus 6)
246 (defconst mac-pointer-watch 7)
247 (defconst mac-pointer-closed-hand 8)
248 (defconst mac-pointer-open-hand 9)
249 (defconst mac-pointer-pointing-hand 10)
250 (defconst mac-pointer-counting-up-hand 11)
251 (defconst mac-pointer-counting-down-hand 12)
252 (defconst mac-pointer-counting-up-and-down-hand 13)
253 (defconst mac-pointer-spinning 14)
254 (defconst mac-pointer-resize-left 15)
255 (defconst mac-pointer-resize-right 16)
256 (defconst mac-pointer-resize-left-right 17)
257 ;; Mac OS X 10.2 and later
258 (defconst mac-pointer-not-allowed 18)
259 ;; Mac OS X 10.3 and later
260 (defconst mac-pointer-resize-up 19)
261 (defconst mac-pointer-resize-down 20)
262 (defconst mac-pointer-resize-up-down 21)
263 (defconst mac-pointer-poof 22)
264
265 ;;
266 ;; Standard X cursor shapes that have Mac counterparts
267 ;;
268
269 (defconst x-pointer-left-ptr mac-pointer-arrow)
270 (defconst x-pointer-xterm mac-pointer-I-beam)
271 (defconst x-pointer-crosshair mac-pointer-cross)
272 (defconst x-pointer-plus mac-pointer-plus)
273 (defconst x-pointer-watch mac-pointer-watch)
274 (defconst x-pointer-hand2 mac-pointer-pointing-hand)
275 (defconst x-pointer-left-side mac-pointer-resize-left)
276 (defconst x-pointer-right-side mac-pointer-resize-right)
277 (defconst x-pointer-sb-h-double-arrow mac-pointer-resize-left-right)
278 (defconst x-pointer-top-side mac-pointer-resize-up)
279 (defconst x-pointer-bottom-side mac-pointer-resize-down)
280 (defconst x-pointer-sb-v-double-arrow mac-pointer-resize-up-down)
281
282 \f
283 ;;
284 ;; Available colors
285 ;;
286
287 (defvar x-colors '("LightGreen"
288 "light green"
289 "DarkRed"
290 "dark red"
291 "DarkMagenta"
292 "dark magenta"
293 "DarkCyan"
294 "dark cyan"
295 "DarkBlue"
296 "dark blue"
297 "DarkGray"
298 "dark gray"
299 "DarkGrey"
300 "dark grey"
301 "grey100"
302 "gray100"
303 "grey99"
304 "gray99"
305 "grey98"
306 "gray98"
307 "grey97"
308 "gray97"
309 "grey96"
310 "gray96"
311 "grey95"
312 "gray95"
313 "grey94"
314 "gray94"
315 "grey93"
316 "gray93"
317 "grey92"
318 "gray92"
319 "grey91"
320 "gray91"
321 "grey90"
322 "gray90"
323 "grey89"
324 "gray89"
325 "grey88"
326 "gray88"
327 "grey87"
328 "gray87"
329 "grey86"
330 "gray86"
331 "grey85"
332 "gray85"
333 "grey84"
334 "gray84"
335 "grey83"
336 "gray83"
337 "grey82"
338 "gray82"
339 "grey81"
340 "gray81"
341 "grey80"
342 "gray80"
343 "grey79"
344 "gray79"
345 "grey78"
346 "gray78"
347 "grey77"
348 "gray77"
349 "grey76"
350 "gray76"
351 "grey75"
352 "gray75"
353 "grey74"
354 "gray74"
355 "grey73"
356 "gray73"
357 "grey72"
358 "gray72"
359 "grey71"
360 "gray71"
361 "grey70"
362 "gray70"
363 "grey69"
364 "gray69"
365 "grey68"
366 "gray68"
367 "grey67"
368 "gray67"
369 "grey66"
370 "gray66"
371 "grey65"
372 "gray65"
373 "grey64"
374 "gray64"
375 "grey63"
376 "gray63"
377 "grey62"
378 "gray62"
379 "grey61"
380 "gray61"
381 "grey60"
382 "gray60"
383 "grey59"
384 "gray59"
385 "grey58"
386 "gray58"
387 "grey57"
388 "gray57"
389 "grey56"
390 "gray56"
391 "grey55"
392 "gray55"
393 "grey54"
394 "gray54"
395 "grey53"
396 "gray53"
397 "grey52"
398 "gray52"
399 "grey51"
400 "gray51"
401 "grey50"
402 "gray50"
403 "grey49"
404 "gray49"
405 "grey48"
406 "gray48"
407 "grey47"
408 "gray47"
409 "grey46"
410 "gray46"
411 "grey45"
412 "gray45"
413 "grey44"
414 "gray44"
415 "grey43"
416 "gray43"
417 "grey42"
418 "gray42"
419 "grey41"
420 "gray41"
421 "grey40"
422 "gray40"
423 "grey39"
424 "gray39"
425 "grey38"
426 "gray38"
427 "grey37"
428 "gray37"
429 "grey36"
430 "gray36"
431 "grey35"
432 "gray35"
433 "grey34"
434 "gray34"
435 "grey33"
436 "gray33"
437 "grey32"
438 "gray32"
439 "grey31"
440 "gray31"
441 "grey30"
442 "gray30"
443 "grey29"
444 "gray29"
445 "grey28"
446 "gray28"
447 "grey27"
448 "gray27"
449 "grey26"
450 "gray26"
451 "grey25"
452 "gray25"
453 "grey24"
454 "gray24"
455 "grey23"
456 "gray23"
457 "grey22"
458 "gray22"
459 "grey21"
460 "gray21"
461 "grey20"
462 "gray20"
463 "grey19"
464 "gray19"
465 "grey18"
466 "gray18"
467 "grey17"
468 "gray17"
469 "grey16"
470 "gray16"
471 "grey15"
472 "gray15"
473 "grey14"
474 "gray14"
475 "grey13"
476 "gray13"
477 "grey12"
478 "gray12"
479 "grey11"
480 "gray11"
481 "grey10"
482 "gray10"
483 "grey9"
484 "gray9"
485 "grey8"
486 "gray8"
487 "grey7"
488 "gray7"
489 "grey6"
490 "gray6"
491 "grey5"
492 "gray5"
493 "grey4"
494 "gray4"
495 "grey3"
496 "gray3"
497 "grey2"
498 "gray2"
499 "grey1"
500 "gray1"
501 "grey0"
502 "gray0"
503 "thistle4"
504 "thistle3"
505 "thistle2"
506 "thistle1"
507 "MediumPurple4"
508 "MediumPurple3"
509 "MediumPurple2"
510 "MediumPurple1"
511 "purple4"
512 "purple3"
513 "purple2"
514 "purple1"
515 "DarkOrchid4"
516 "DarkOrchid3"
517 "DarkOrchid2"
518 "DarkOrchid1"
519 "MediumOrchid4"
520 "MediumOrchid3"
521 "MediumOrchid2"
522 "MediumOrchid1"
523 "plum4"
524 "plum3"
525 "plum2"
526 "plum1"
527 "orchid4"
528 "orchid3"
529 "orchid2"
530 "orchid1"
531 "magenta4"
532 "magenta3"
533 "magenta2"
534 "magenta1"
535 "VioletRed4"
536 "VioletRed3"
537 "VioletRed2"
538 "VioletRed1"
539 "maroon4"
540 "maroon3"
541 "maroon2"
542 "maroon1"
543 "PaleVioletRed4"
544 "PaleVioletRed3"
545 "PaleVioletRed2"
546 "PaleVioletRed1"
547 "LightPink4"
548 "LightPink3"
549 "LightPink2"
550 "LightPink1"
551 "pink4"
552 "pink3"
553 "pink2"
554 "pink1"
555 "HotPink4"
556 "HotPink3"
557 "HotPink2"
558 "HotPink1"
559 "DeepPink4"
560 "DeepPink3"
561 "DeepPink2"
562 "DeepPink1"
563 "red4"
564 "red3"
565 "red2"
566 "red1"
567 "OrangeRed4"
568 "OrangeRed3"
569 "OrangeRed2"
570 "OrangeRed1"
571 "tomato4"
572 "tomato3"
573 "tomato2"
574 "tomato1"
575 "coral4"
576 "coral3"
577 "coral2"
578 "coral1"
579 "DarkOrange4"
580 "DarkOrange3"
581 "DarkOrange2"
582 "DarkOrange1"
583 "orange4"
584 "orange3"
585 "orange2"
586 "orange1"
587 "LightSalmon4"
588 "LightSalmon3"
589 "LightSalmon2"
590 "LightSalmon1"
591 "salmon4"
592 "salmon3"
593 "salmon2"
594 "salmon1"
595 "brown4"
596 "brown3"
597 "brown2"
598 "brown1"
599 "firebrick4"
600 "firebrick3"
601 "firebrick2"
602 "firebrick1"
603 "chocolate4"
604 "chocolate3"
605 "chocolate2"
606 "chocolate1"
607 "tan4"
608 "tan3"
609 "tan2"
610 "tan1"
611 "wheat4"
612 "wheat3"
613 "wheat2"
614 "wheat1"
615 "burlywood4"
616 "burlywood3"
617 "burlywood2"
618 "burlywood1"
619 "sienna4"
620 "sienna3"
621 "sienna2"
622 "sienna1"
623 "IndianRed4"
624 "IndianRed3"
625 "IndianRed2"
626 "IndianRed1"
627 "RosyBrown4"
628 "RosyBrown3"
629 "RosyBrown2"
630 "RosyBrown1"
631 "DarkGoldenrod4"
632 "DarkGoldenrod3"
633 "DarkGoldenrod2"
634 "DarkGoldenrod1"
635 "goldenrod4"
636 "goldenrod3"
637 "goldenrod2"
638 "goldenrod1"
639 "gold4"
640 "gold3"
641 "gold2"
642 "gold1"
643 "yellow4"
644 "yellow3"
645 "yellow2"
646 "yellow1"
647 "LightYellow4"
648 "LightYellow3"
649 "LightYellow2"
650 "LightYellow1"
651 "LightGoldenrod4"
652 "LightGoldenrod3"
653 "LightGoldenrod2"
654 "LightGoldenrod1"
655 "khaki4"
656 "khaki3"
657 "khaki2"
658 "khaki1"
659 "DarkOliveGreen4"
660 "DarkOliveGreen3"
661 "DarkOliveGreen2"
662 "DarkOliveGreen1"
663 "OliveDrab4"
664 "OliveDrab3"
665 "OliveDrab2"
666 "OliveDrab1"
667 "chartreuse4"
668 "chartreuse3"
669 "chartreuse2"
670 "chartreuse1"
671 "green4"
672 "green3"
673 "green2"
674 "green1"
675 "SpringGreen4"
676 "SpringGreen3"
677 "SpringGreen2"
678 "SpringGreen1"
679 "PaleGreen4"
680 "PaleGreen3"
681 "PaleGreen2"
682 "PaleGreen1"
683 "SeaGreen4"
684 "SeaGreen3"
685 "SeaGreen2"
686 "SeaGreen1"
687 "DarkSeaGreen4"
688 "DarkSeaGreen3"
689 "DarkSeaGreen2"
690 "DarkSeaGreen1"
691 "aquamarine4"
692 "aquamarine3"
693 "aquamarine2"
694 "aquamarine1"
695 "DarkSlateGray4"
696 "DarkSlateGray3"
697 "DarkSlateGray2"
698 "DarkSlateGray1"
699 "cyan4"
700 "cyan3"
701 "cyan2"
702 "cyan1"
703 "turquoise4"
704 "turquoise3"
705 "turquoise2"
706 "turquoise1"
707 "CadetBlue4"
708 "CadetBlue3"
709 "CadetBlue2"
710 "CadetBlue1"
711 "PaleTurquoise4"
712 "PaleTurquoise3"
713 "PaleTurquoise2"
714 "PaleTurquoise1"
715 "LightCyan4"
716 "LightCyan3"
717 "LightCyan2"
718 "LightCyan1"
719 "LightBlue4"
720 "LightBlue3"
721 "LightBlue2"
722 "LightBlue1"
723 "LightSteelBlue4"
724 "LightSteelBlue3"
725 "LightSteelBlue2"
726 "LightSteelBlue1"
727 "SlateGray4"
728 "SlateGray3"
729 "SlateGray2"
730 "SlateGray1"
731 "LightSkyBlue4"
732 "LightSkyBlue3"
733 "LightSkyBlue2"
734 "LightSkyBlue1"
735 "SkyBlue4"
736 "SkyBlue3"
737 "SkyBlue2"
738 "SkyBlue1"
739 "DeepSkyBlue4"
740 "DeepSkyBlue3"
741 "DeepSkyBlue2"
742 "DeepSkyBlue1"
743 "SteelBlue4"
744 "SteelBlue3"
745 "SteelBlue2"
746 "SteelBlue1"
747 "DodgerBlue4"
748 "DodgerBlue3"
749 "DodgerBlue2"
750 "DodgerBlue1"
751 "blue4"
752 "blue3"
753 "blue2"
754 "blue1"
755 "RoyalBlue4"
756 "RoyalBlue3"
757 "RoyalBlue2"
758 "RoyalBlue1"
759 "SlateBlue4"
760 "SlateBlue3"
761 "SlateBlue2"
762 "SlateBlue1"
763 "azure4"
764 "azure3"
765 "azure2"
766 "azure1"
767 "MistyRose4"
768 "MistyRose3"
769 "MistyRose2"
770 "MistyRose1"
771 "LavenderBlush4"
772 "LavenderBlush3"
773 "LavenderBlush2"
774 "LavenderBlush1"
775 "honeydew4"
776 "honeydew3"
777 "honeydew2"
778 "honeydew1"
779 "ivory4"
780 "ivory3"
781 "ivory2"
782 "ivory1"
783 "cornsilk4"
784 "cornsilk3"
785 "cornsilk2"
786 "cornsilk1"
787 "LemonChiffon4"
788 "LemonChiffon3"
789 "LemonChiffon2"
790 "LemonChiffon1"
791 "NavajoWhite4"
792 "NavajoWhite3"
793 "NavajoWhite2"
794 "NavajoWhite1"
795 "PeachPuff4"
796 "PeachPuff3"
797 "PeachPuff2"
798 "PeachPuff1"
799 "bisque4"
800 "bisque3"
801 "bisque2"
802 "bisque1"
803 "AntiqueWhite4"
804 "AntiqueWhite3"
805 "AntiqueWhite2"
806 "AntiqueWhite1"
807 "seashell4"
808 "seashell3"
809 "seashell2"
810 "seashell1"
811 "snow4"
812 "snow3"
813 "snow2"
814 "snow1"
815 "thistle"
816 "MediumPurple"
817 "medium purple"
818 "purple"
819 "BlueViolet"
820 "blue violet"
821 "DarkViolet"
822 "dark violet"
823 "DarkOrchid"
824 "dark orchid"
825 "MediumOrchid"
826 "medium orchid"
827 "orchid"
828 "plum"
829 "violet"
830 "magenta"
831 "VioletRed"
832 "violet red"
833 "MediumVioletRed"
834 "medium violet red"
835 "maroon"
836 "PaleVioletRed"
837 "pale violet red"
838 "LightPink"
839 "light pink"
840 "pink"
841 "DeepPink"
842 "deep pink"
843 "HotPink"
844 "hot pink"
845 "red"
846 "OrangeRed"
847 "orange red"
848 "tomato"
849 "LightCoral"
850 "light coral"
851 "coral"
852 "DarkOrange"
853 "dark orange"
854 "orange"
855 "LightSalmon"
856 "light salmon"
857 "salmon"
858 "DarkSalmon"
859 "dark salmon"
860 "brown"
861 "firebrick"
862 "chocolate"
863 "tan"
864 "SandyBrown"
865 "sandy brown"
866 "wheat"
867 "beige"
868 "burlywood"
869 "peru"
870 "sienna"
871 "SaddleBrown"
872 "saddle brown"
873 "IndianRed"
874 "indian red"
875 "RosyBrown"
876 "rosy brown"
877 "DarkGoldenrod"
878 "dark goldenrod"
879 "goldenrod"
880 "LightGoldenrod"
881 "light goldenrod"
882 "gold"
883 "yellow"
884 "LightYellow"
885 "light yellow"
886 "LightGoldenrodYellow"
887 "light goldenrod yellow"
888 "PaleGoldenrod"
889 "pale goldenrod"
890 "khaki"
891 "DarkKhaki"
892 "dark khaki"
893 "OliveDrab"
894 "olive drab"
895 "ForestGreen"
896 "forest green"
897 "YellowGreen"
898 "yellow green"
899 "LimeGreen"
900 "lime green"
901 "GreenYellow"
902 "green yellow"
903 "MediumSpringGreen"
904 "medium spring green"
905 "chartreuse"
906 "green"
907 "LawnGreen"
908 "lawn green"
909 "SpringGreen"
910 "spring green"
911 "PaleGreen"
912 "pale green"
913 "LightSeaGreen"
914 "light sea green"
915 "MediumSeaGreen"
916 "medium sea green"
917 "SeaGreen"
918 "sea green"
919 "DarkSeaGreen"
920 "dark sea green"
921 "DarkOliveGreen"
922 "dark olive green"
923 "DarkGreen"
924 "dark green"
925 "aquamarine"
926 "MediumAquamarine"
927 "medium aquamarine"
928 "CadetBlue"
929 "cadet blue"
930 "LightCyan"
931 "light cyan"
932 "cyan"
933 "turquoise"
934 "MediumTurquoise"
935 "medium turquoise"
936 "DarkTurquoise"
937 "dark turquoise"
938 "PaleTurquoise"
939 "pale turquoise"
940 "PowderBlue"
941 "powder blue"
942 "LightBlue"
943 "light blue"
944 "LightSteelBlue"
945 "light steel blue"
946 "SteelBlue"
947 "steel blue"
948 "LightSkyBlue"
949 "light sky blue"
950 "SkyBlue"
951 "sky blue"
952 "DeepSkyBlue"
953 "deep sky blue"
954 "DodgerBlue"
955 "dodger blue"
956 "blue"
957 "RoyalBlue"
958 "royal blue"
959 "MediumBlue"
960 "medium blue"
961 "LightSlateBlue"
962 "light slate blue"
963 "MediumSlateBlue"
964 "medium slate blue"
965 "SlateBlue"
966 "slate blue"
967 "DarkSlateBlue"
968 "dark slate blue"
969 "CornflowerBlue"
970 "cornflower blue"
971 "NavyBlue"
972 "navy blue"
973 "navy"
974 "MidnightBlue"
975 "midnight blue"
976 "LightGray"
977 "light gray"
978 "LightGrey"
979 "light grey"
980 "grey"
981 "gray"
982 "LightSlateGrey"
983 "light slate grey"
984 "LightSlateGray"
985 "light slate gray"
986 "SlateGrey"
987 "slate grey"
988 "SlateGray"
989 "slate gray"
990 "DimGrey"
991 "dim grey"
992 "DimGray"
993 "dim gray"
994 "DarkSlateGrey"
995 "dark slate grey"
996 "DarkSlateGray"
997 "dark slate gray"
998 "black"
999 "white"
1000 "MistyRose"
1001 "misty rose"
1002 "LavenderBlush"
1003 "lavender blush"
1004 "lavender"
1005 "AliceBlue"
1006 "alice blue"
1007 "azure"
1008 "MintCream"
1009 "mint cream"
1010 "honeydew"
1011 "seashell"
1012 "LemonChiffon"
1013 "lemon chiffon"
1014 "ivory"
1015 "cornsilk"
1016 "moccasin"
1017 "NavajoWhite"
1018 "navajo white"
1019 "PeachPuff"
1020 "peach puff"
1021 "bisque"
1022 "BlanchedAlmond"
1023 "blanched almond"
1024 "PapayaWhip"
1025 "papaya whip"
1026 "AntiqueWhite"
1027 "antique white"
1028 "linen"
1029 "OldLace"
1030 "old lace"
1031 "FloralWhite"
1032 "floral white"
1033 "gainsboro"
1034 "WhiteSmoke"
1035 "white smoke"
1036 "GhostWhite"
1037 "ghost white"
1038 "snow")
1039 "The list of X colors from the `rgb.txt' file.
1040 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1041
1042 (defun xw-defined-colors (&optional frame)
1043 "Internal function called by `defined-colors', which see."
1044 (or frame (setq frame (selected-frame)))
1045 (let ((all-colors x-colors)
1046 (this-color nil)
1047 (defined-colors nil))
1048 (while all-colors
1049 (setq this-color (car all-colors)
1050 all-colors (cdr all-colors))
1051 (and (color-supported-p this-color frame t)
1052 (setq defined-colors (cons this-color defined-colors))))
1053 defined-colors))
1054 \f
1055 ;;;; Function keys
1056
1057 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
1058 global-map)
1059
1060 ;; Map certain keypad keys into ASCII characters
1061 ;; that people usually expect.
1062 (let ((m (terminal-local-value 'function-key-map nil)))
1063 (define-key m [backspace] [?\d])
1064 (define-key m [delete] [?\d])
1065 (define-key m [tab] [?\t])
1066 (define-key m [linefeed] [?\n])
1067 (define-key m [clear] [?\C-l])
1068 (define-key m [return] [?\C-m])
1069 (define-key m [escape] [?\e])
1070 (define-key m [M-backspace] [?\M-\d])
1071 (define-key m [M-delete] [?\M-\d])
1072 (define-key m [M-tab] [?\M-\t])
1073 (define-key m [M-linefeed] [?\M-\n])
1074 (define-key m [M-clear] [?\M-\C-l])
1075 (define-key m [M-return] [?\M-\C-m])
1076 (define-key m [M-escape] [?\M-\e]))
1077
1078 ;; These tell read-char how to convert
1079 ;; these special chars to ASCII.
1080 (put 'backspace 'ascii-character ?\d)
1081 (put 'delete 'ascii-character ?\d)
1082 (put 'tab 'ascii-character ?\t)
1083 (put 'linefeed 'ascii-character ?\n)
1084 (put 'clear 'ascii-character ?\C-l)
1085 (put 'return 'ascii-character ?\C-m)
1086 (put 'escape 'ascii-character ?\e)
1087
1088 \f
1089 ;;;; Script codes and coding systems
1090 (defconst mac-script-code-coding-systems
1091 '((0 . mac-roman) ; smRoman
1092 (1 . japanese-shift-jis) ; smJapanese
1093 (2 . chinese-big5) ; smTradChinese
1094 (3 . korean-iso-8bit) ; smKorean
1095 (7 . mac-cyrillic) ; smCyrillic
1096 (25 . chinese-iso-8bit) ; smSimpChinese
1097 (29 . mac-centraleurroman) ; smCentralEuroRoman
1098 )
1099 "Alist of Mac script codes vs Emacs coding systems.")
1100
1101 (defconst mac-system-coding-system
1102 (let ((base (or (cdr (assq mac-system-script-code
1103 mac-script-code-coding-systems))
1104 'mac-roman)))
1105 (if (eq system-type 'darwin)
1106 base
1107 (coding-system-change-eol-conversion base 'mac)))
1108 "Coding system derived from the system script code.")
1109
1110 (defun mac-add-charset-info (xlfd-charset mac-text-encoding)
1111 "Function to add character sets to display with Mac fonts.
1112 Creates entries in `mac-charset-info-alist'.
1113 XLFD-CHARSET is a string which will appear in the XLFD font name
1114 to identify the character set. MAC-TEXT-ENCODING is the
1115 correspoinding TextEncodingBase value."
1116 (add-to-list 'mac-charset-info-alist
1117 (list xlfd-charset mac-text-encoding
1118 (cdr (assq mac-text-encoding
1119 mac-script-code-coding-systems)))))
1120
1121 (setq mac-charset-info-alist nil)
1122 (mac-add-charset-info "mac-roman" 0)
1123 (mac-add-charset-info "jisx0208.1983-sjis" 1)
1124 (mac-add-charset-info "jisx0201.1976-0" 1)
1125 (mac-add-charset-info "big5-0" 2)
1126 (mac-add-charset-info "ksc5601.1989-0" 3)
1127 (mac-add-charset-info "mac-cyrillic" 7)
1128 (mac-add-charset-info "gb2312.1980-0" 25)
1129 (mac-add-charset-info "mac-centraleurroman" 29)
1130 (mac-add-charset-info "mac-symbol" 33)
1131 (mac-add-charset-info "adobe-fontspecific" 33) ; for X-Symbol
1132 (mac-add-charset-info "mac-dingbats" 34)
1133
1134 \f
1135 ;;;; Keyboard layout/language change events
1136 (defun mac-handle-language-change (event)
1137 (interactive "e")
1138 (let ((coding-system
1139 (cdr (assq (car (cadr event)) mac-script-code-coding-systems))))
1140 (set-keyboard-coding-system (or coding-system 'mac-roman))
1141 ;; MacJapanese maps reverse solidus to ?\x80.
1142 (if (eq coding-system 'japanese-shift-jis)
1143 (define-key global-key-translation-map [?\x80] "\\"))))
1144
1145 (define-key special-event-map [language-change] 'mac-handle-language-change)
1146 \f
1147 ;;;; Selections and Services menu
1148
1149 ;; Setup to use the Mac clipboard.
1150 (set-selection-coding-system mac-system-coding-system)
1151
1152 ;;; We keep track of the last text selected here, so we can check the
1153 ;;; current selection against it, and avoid passing back our own text
1154 ;;; from x-get-selection-value.
1155 (defvar x-last-selected-text-clipboard nil
1156 "The value of the CLIPBOARD selection last time we selected or
1157 pasted text.")
1158 (defvar x-last-selected-text-primary nil
1159 "The value of the PRIMARY X selection last time we selected or
1160 pasted text.")
1161
1162 (defcustom x-select-enable-clipboard t
1163 "*Non-nil means cutting and pasting uses the clipboard.
1164 This is in addition to the primary selection."
1165 :type 'boolean
1166 :group 'killing)
1167
1168 ;;; Make TEXT, a string, the primary X selection.
1169 (defun x-select-text (text &optional push)
1170 (x-set-selection 'PRIMARY text)
1171 (setq x-last-selected-text-primary text)
1172 (if (not x-select-enable-clipboard)
1173 (setq x-last-selected-text-clipboard nil)
1174 (x-set-selection 'CLIPBOARD text)
1175 (setq x-last-selected-text-clipboard text))
1176 )
1177
1178 (defun x-get-selection (&optional type data-type)
1179 "Return the value of a selection.
1180 The argument TYPE (default `PRIMARY') says which selection,
1181 and the argument DATA-TYPE (default `STRING') says
1182 how to convert the data.
1183
1184 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
1185 only a few symbols are commonly used. They conventionally have
1186 all upper-case names. The most often used ones, in addition to
1187 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
1188
1189 DATA-TYPE is usually `STRING', but can also be one of the symbols
1190 in `selection-converter-alist', which see."
1191 (let ((data (x-get-selection-internal (or type 'PRIMARY)
1192 (or data-type 'STRING)))
1193 (coding (or next-selection-coding-system
1194 selection-coding-system)))
1195 (when (and (stringp data)
1196 (setq data-type (get-text-property 0 'foreign-selection data)))
1197 (cond ((eq data-type 'public.utf16-plain-text)
1198 (let ((encoded (and (fboundp 'mac-code-convert-string)
1199 (mac-code-convert-string data
1200 'utf-16 coding))))
1201 (if encoded
1202 (let ((coding-save last-coding-system-used))
1203 (setq data (decode-coding-string encoded coding))
1204 (setq last-coding-system-used coding-save))
1205 (setq data
1206 (decode-coding-string data 'utf-16)))))
1207 ((eq data-type 'com.apple.traditional-mac-plain-text)
1208 (setq data (decode-coding-string data coding)))
1209 ((eq data-type 'public.file-url)
1210 (setq data (decode-coding-string data 'utf-8))
1211 ;; Remove a trailing nul character.
1212 (let ((len (length data)))
1213 (if (and (> len 0) (= (aref data (1- len)) ?\0))
1214 (setq data (substring data 0 (1- len)))))))
1215 (put-text-property 0 (length data) 'foreign-selection data-type data))
1216 data))
1217
1218 (defun x-selection-value (type)
1219 (let ((data-types '(public.utf16-plain-text
1220 com.apple.traditional-mac-plain-text
1221 public.file-url))
1222 text tiff-image)
1223 (while (and (null text) data-types)
1224 (setq text (condition-case nil
1225 (x-get-selection type (car data-types))
1226 (error nil)))
1227 (setq data-types (cdr data-types)))
1228 (if text
1229 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
1230 (setq tiff-image (condition-case nil
1231 (x-get-selection type 'public.tiff)
1232 (error nil)))
1233 (when tiff-image
1234 (remove-text-properties 0 (length tiff-image)
1235 '(foreign-selection nil) tiff-image)
1236 (setq tiff-image (create-image tiff-image 'tiff t))
1237 (or text (setq text " "))
1238 (put-text-property 0 (length text) 'display tiff-image text))
1239 text))
1240
1241 ;;; Return the value of the current selection.
1242 ;;; Treat empty strings as if they were unset.
1243 ;;; If this function is called twice and finds the same text,
1244 ;;; it returns nil the second time. This is so that a single
1245 ;;; selection won't be added to the kill ring over and over.
1246 (defun x-get-selection-value ()
1247 (let (clip-text primary-text)
1248 (if (not x-select-enable-clipboard)
1249 (setq x-last-selected-text-clipboard nil)
1250 (setq clip-text (x-selection-value 'CLIPBOARD))
1251 (if (string= clip-text "") (setq clip-text nil))
1252
1253 ;; Check the CLIPBOARD selection for 'newness', is it different
1254 ;; from what we remebered them to be last time we did a
1255 ;; cut/paste operation.
1256 (setq clip-text
1257 (cond;; check clipboard
1258 ((or (not clip-text) (string= clip-text ""))
1259 (setq x-last-selected-text-clipboard nil))
1260 ((eq clip-text x-last-selected-text-clipboard) nil)
1261 ((string= clip-text x-last-selected-text-clipboard)
1262 ;; Record the newer string,
1263 ;; so subsequent calls can use the `eq' test.
1264 (setq x-last-selected-text-clipboard clip-text)
1265 nil)
1266 (t
1267 (setq x-last-selected-text-clipboard clip-text))))
1268 )
1269
1270 (setq primary-text (x-selection-value 'PRIMARY))
1271 ;; Check the PRIMARY selection for 'newness', is it different
1272 ;; from what we remebered them to be last time we did a
1273 ;; cut/paste operation.
1274 (setq primary-text
1275 (cond;; check primary selection
1276 ((or (not primary-text) (string= primary-text ""))
1277 (setq x-last-selected-text-primary nil))
1278 ((eq primary-text x-last-selected-text-primary) nil)
1279 ((string= primary-text x-last-selected-text-primary)
1280 ;; Record the newer string,
1281 ;; so subsequent calls can use the `eq' test.
1282 (setq x-last-selected-text-primary primary-text)
1283 nil)
1284 (t
1285 (setq x-last-selected-text-primary primary-text))))
1286
1287 ;; As we have done one selection, clear this now.
1288 (setq next-selection-coding-system nil)
1289
1290 ;; At this point we have recorded the current values for the
1291 ;; selection from clipboard (if we are supposed to) and primary,
1292 ;; So return the first one that has changed (which is the first
1293 ;; non-null one).
1294 (or clip-text primary-text)
1295 ))
1296
1297 (put 'CLIPBOARD 'mac-scrap-name "com.apple.scrap.clipboard")
1298 (when (eq system-type 'darwin)
1299 (put 'FIND 'mac-scrap-name "com.apple.scrap.find")
1300 (put 'PRIMARY 'mac-scrap-name
1301 (format "org.gnu.Emacs.%d.selection.PRIMARY" (emacs-pid))))
1302 (put 'com.apple.traditional-mac-plain-text 'mac-ostype "TEXT")
1303 (put 'public.utf16-plain-text 'mac-ostype "utxt")
1304 (put 'public.tiff 'mac-ostype "TIFF")
1305 (put 'public.file-url 'mac-ostype "furl")
1306
1307 (defun mac-select-convert-to-string (selection type value)
1308 (let ((str (cdr (xselect-convert-to-string selection nil value)))
1309 coding)
1310 (setq coding (or next-selection-coding-system selection-coding-system))
1311 (if coding
1312 (setq coding (coding-system-base coding))
1313 (setq coding 'raw-text))
1314 (when str
1315 ;; If TYPE is nil, this is a local request, thus return STR as
1316 ;; is. Otherwise, encode STR.
1317 (if (not type)
1318 str
1319 (let ((inhibit-read-only t))
1320 (remove-text-properties 0 (length str) '(composition nil) str)
1321 (cond
1322 ((eq type 'public.utf16-plain-text)
1323 (let (s)
1324 (when (and (fboundp 'mac-code-convert-string)
1325 (memq coding (find-coding-systems-string str)))
1326 (setq coding (coding-system-change-eol-conversion coding 'mac))
1327 (setq s (mac-code-convert-string
1328 (encode-coding-string str coding)
1329 coding 'utf-16)))
1330 (setq str (or s (encode-coding-string str 'utf-16-mac)))))
1331 ((eq type 'com.apple.traditional-mac-plain-text)
1332 (let ((encodables (find-coding-systems-string str))
1333 (rest mac-script-code-coding-systems))
1334 (unless (memq coding encodables)
1335 (while (and rest (not (memq (cdar rest) encodables)))
1336 (setq rest (cdr rest)))
1337 (if rest
1338 (setq coding (cdar rest)))))
1339 (setq coding (coding-system-change-eol-conversion coding 'mac))
1340 (setq str (encode-coding-string str coding)))
1341 (t
1342 (error "Unknown selection type: %S" type))
1343 )))
1344
1345 (setq next-selection-coding-system nil)
1346 (cons type str))))
1347
1348 (defun mac-select-convert-to-file-url (selection type value)
1349 (let ((filename (xselect-convert-to-filename selection type value))
1350 (coding (or file-name-coding-system default-file-name-coding-system)))
1351 (if (and filename coding)
1352 (setq filename (encode-coding-string filename coding)))
1353 (and filename
1354 (concat "file://localhost"
1355 (mapconcat 'url-hexify-string
1356 (split-string filename "/") "/")))))
1357
1358 (setq selection-converter-alist
1359 (nconc
1360 '((public.utf16-plain-text . mac-select-convert-to-string)
1361 (com.apple.traditional-mac-plain-text . mac-select-convert-to-string)
1362 ;; This is not enabled by default because the `Import Image'
1363 ;; menu makes Emacs crash or hang for unknown reasons.
1364 ;; (public.tiff . nil)
1365 (public.file-url . mac-select-convert-to-file-url)
1366 )
1367 selection-converter-alist))
1368
1369 (defun mac-services-open-file ()
1370 (interactive)
1371 (find-file-existing (x-selection-value mac-services-selection)))
1372
1373 (defun mac-services-open-selection ()
1374 (interactive)
1375 (switch-to-buffer (generate-new-buffer "*untitled*"))
1376 (insert (x-selection-value mac-services-selection))
1377 (sit-for 0)
1378 (save-buffer) ; It pops up the save dialog.
1379 )
1380
1381 (defun mac-services-insert-text ()
1382 (interactive)
1383 (let ((text (x-selection-value mac-services-selection)))
1384 (if (not buffer-read-only)
1385 (insert text)
1386 (kill-new text)
1387 (message
1388 (substitute-command-keys
1389 "The text from the Services menu can be accessed with \\[yank]")))))
1390
1391 (defvar mac-application-menu-map (make-sparse-keymap))
1392 (define-key mac-application-menu-map [quit] 'save-buffers-kill-emacs)
1393 (define-key mac-application-menu-map [services perform open-file]
1394 'mac-services-open-file)
1395 (define-key mac-application-menu-map [services perform open-selection]
1396 'mac-services-open-selection)
1397 (define-key mac-application-menu-map [services paste]
1398 'mac-services-insert-text)
1399 (define-key mac-application-menu-map [preferences] 'customize)
1400 (define-key mac-application-menu-map [about] 'display-splash-screen)
1401 (global-set-key [menu-bar application] mac-application-menu-map)
1402 \f
1403 ;;; Do the actual Windows setup here; the above code just defines
1404 ;;; functions and variables that we use now.
1405
1406 (setq command-line-args (x-handle-args command-line-args))
1407
1408 ;;; Make sure we have a valid resource name.
1409 (or (stringp x-resource-name)
1410 (let (i)
1411 (setq x-resource-name (invocation-name))
1412
1413 ;; Change any . or * characters in x-resource-name to hyphens,
1414 ;; so as not to choke when we use it in X resource queries.
1415 (while (setq i (string-match "[.*]" x-resource-name))
1416 (aset x-resource-name i ?-))))
1417
1418 (if (x-display-list)
1419 ;; On Mac OS 8/9, Most coding systems used in code conversion for
1420 ;; font names are not ready at the time when the terminal frame is
1421 ;; created. So we reconstruct font name table for the initial
1422 ;; frame.
1423 (mac-clear-font-name-table)
1424 (x-open-connection "Mac"
1425 x-command-line-resources
1426 ;; Exit Emacs with fatal error if this fails.
1427 t))
1428
1429 (setq frame-creation-function 'x-create-frame-with-faces)
1430
1431 (cp-make-coding-system
1432 mac-centraleurroman
1433 [?\\e,AD\e(B ?\\e$,1 \e(B ?\\e$,1 !\e(B ?\\e,AI\e(B ?\\e$,1 $\e(B ?\\e,AV\e(B ?\\e,A\\e(B ?\\e,Aa\e(B ?\\e$,1 %\e(B ?\\e$,1 ,\e(B ?\\e,Ad\e(B ?\\e$,1 -\e(B ?\\e$,1 &\e(B ?\\e$,1 '\e(B ?\\e,Ai\e(B ?\\e$,1!9\e(B
1434 ?\\e$,1!:\e(B ?\\e$,1 .\e(B ?\\e,Am\e(B ?\\e$,1 /\e(B ?\\e$,1 2\e(B ?\\e$,1 3\e(B ?\\e$,1 6\e(B ?\\e,As\e(B ?\\e$,1 7\e(B ?\\e,At\e(B ?\\e,Av\e(B ?\\e,Au\e(B ?\\e,Az\e(B ?\\e$,1 :\e(B ?\\e$,1 ;\e(B ?\\e,A|\e(B
1435 ?\\e$,1s \e(B ?\\e,A0\e(B ?\\e$,1 8\e(B ?\\e,A#\e(B ?\\e,A'\e(B ?\\e$,1s"\e(B ?\\e,A6\e(B ?\\e,A_\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1 9\e(B ?\\e,A(\e(B ?\\e$,1y \e(B ?\\e$,1 C\e(B ?\\e$,1 N\e(B
1436 ?\\e$,1 O\e(B ?\\e$,1 J\e(B ?\\e$,1y$\e(B ?\\e$,1y%\e(B ?\\e$,1 K\e(B ?\\e$,1 V\e(B ?\\e$,1x"\e(B ?\\e$,1x1\e(B ?\\e$,1 b\e(B ?\\e$,1 [\e(B ?\\e$,1 \\e(B ?\\e$,1 ]\e(B ?\\e$,1 ^\e(B ?\\e$,1 Y\e(B ?\\e$,1 Z\e(B ?\\e$,1 e\e(B
1437 ?\\e$,1 f\e(B ?\\e$,1 c\e(B ?\\e,A,\e(B ?\\e$,1x:\e(B ?\\e$,1 d\e(B ?\\e$,1 g\e(B ?\\e$,1x&\e(B ?\\e,A+\e(B ?\\e,A;\e(B ?\\e$,1s&\e(B ?\\e,A \e(B ?\\e$,1 h\e(B ?\\e$,1 p\e(B ?\\e,AU\e(B ?\\e$,1 q\e(B ?\\e$,1 l\e(B
1438 ?\\e$,1rs\e(B ?\\e$,1rt\e(B ?\\e$,1r|\e(B ?\\e$,1r}\e(B ?\\e$,1rx\e(B ?\\e$,1ry\e(B ?\\e,Aw\e(B ?\\e$,2"*\e(B ?\\e$,1 m\e(B ?\\e$,1 t\e(B ?\\e$,1 u\e(B ?\\e$,1 x\e(B ?\\e$,1s9\e(B ?\\e$,1s:\e(B ?\\e$,1 y\e(B ?\\e$,1 v\e(B
1439 ?\\e$,1 w\e(B ?\\e$,1! \e(B ?\\e$,1rz\e(B ?\\e$,1r~\e(B ?\\e$,1!!\e(B ?\\e$,1 z\e(B ?\\e$,1 {\e(B ?\\e,AA\e(B ?\\e$,1!$\e(B ?\\e$,1!%\e(B ?\\e,AM\e(B ?\\e$,1!=\e(B ?\\e$,1!>\e(B ?\\e$,1!*\e(B ?\\e,AS\e(B ?\\e,AT\e(B
1440 ?\\e$,1!+\e(B ?\\e$,1!.\e(B ?\\e,AZ\e(B ?\\e$,1!/\e(B ?\\e$,1!0\e(B ?\\e$,1!1\e(B ?\\e$,1!2\e(B ?\\e$,1!3\e(B ?\\e,A]\e(B ?\\e,A}\e(B ?\\e$,1 W\e(B ?\\e$,1!;\e(B ?\\e$,1 a\e(B ?\\e$,1!<\e(B ?\\e$,1 B\e(B ?\\e$,1$g\e(B]
1441 "Mac Central European Roman Encoding (MIME:x-mac-centraleurroman).")
1442 (coding-system-put 'mac-centraleurroman 'mime-charset 'x-mac-centraleurroman)
1443
1444 (cp-make-coding-system
1445 mac-cyrillic
1446 [?\\e$,1(0\e(B ?\\e$,1(1\e(B ?\\e$,1(2\e(B ?\\e$,1(3\e(B ?\\e$,1(4\e(B ?\\e$,1(5\e(B ?\\e$,1(6\e(B ?\\e$,1(7\e(B ?\\e$,1(8\e(B ?\\e$,1(9\e(B ?\\e$,1(:\e(B ?\\e$,1(;\e(B ?\\e$,1(<\e(B ?\\e$,1(=\e(B ?\\e$,1(>\e(B ?\\e$,1(?\e(B
1447 ?\\e$,1(@\e(B ?\\e$,1(A\e(B ?\\e$,1(B\e(B ?\\e$,1(C\e(B ?\\e$,1(D\e(B ?\\e$,1(E\e(B ?\\e$,1(F\e(B ?\\e$,1(G\e(B ?\\e$,1(H\e(B ?\\e$,1(I\e(B ?\\e$,1(J\e(B ?\\e$,1(K\e(B ?\\e$,1(L\e(B ?\\e$,1(M\e(B ?\\e$,1(N\e(B ?\\e$,1(O\e(B
1448 ?\\e$,1s \e(B ?\\e,A0\e(B ?\\e$,1)P\e(B ?\\e,A#\e(B ?\\e,A'\e(B ?\\e$,1s"\e(B ?\\e,A6\e(B ?\\e$,1(&\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1("\e(B ?\\e$,1(r\e(B ?\\e$,1y \e(B ?\\e$,1(#\e(B ?\\e$,1(s\e(B
1449 ?\\e$,1x>\e(B ?\\e,A1\e(B ?\\e$,1y$\e(B ?\\e$,1y%\e(B ?\\e$,1(v\e(B ?\\e,A5\e(B ?\\e$,1)Q\e(B ?\\e$,1((\e(B ?\\e$,1($\e(B ?\\e$,1(t\e(B ?\\e$,1('\e(B ?\\e$,1(w\e(B ?\\e$,1()\e(B ?\\e$,1(y\e(B ?\\e$,1(*\e(B ?\\e$,1(z\e(B
1450 ?\\e$,1(x\e(B ?\\e$,1(%\e(B ?\\e,A,\e(B ?\\e$,1x:\e(B ?\\e$,1!R\e(B ?\\e$,1xh\e(B ?\\e$,1x&\e(B ?\\e,A+\e(B ?\\e,A;\e(B ?\\e$,1s&\e(B ?\\e,A \e(B ?\\e$,1(+\e(B ?\\e$,1({\e(B ?\\e$,1(,\e(B ?\\e$,1(|\e(B ?\\e$,1(u\e(B
1451 ?\\e$,1rs\e(B ?\\e$,1rt\e(B ?\\e$,1r|\e(B ?\\e$,1r}\e(B ?\\e$,1rx\e(B ?\\e$,1ry\e(B ?\\e,Aw\e(B ?\\e$,1r~\e(B ?\\e$,1(.\e(B ?\\e$,1(~\e(B ?\\e$,1(/\e(B ?\\e$,1(\7f\e(B ?\\e$,1uV\e(B ?\\e$,1(!\e(B ?\\e$,1(q\e(B ?\\e$,1(o\e(B
1452 ?\\e$,1(P\e(B ?\\e$,1(Q\e(B ?\\e$,1(R\e(B ?\\e$,1(S\e(B ?\\e$,1(T\e(B ?\\e$,1(U\e(B ?\\e$,1(V\e(B ?\\e$,1(W\e(B ?\\e$,1(X\e(B ?\\e$,1(Y\e(B ?\\e$,1(Z\e(B ?\\e$,1([\e(B ?\\e$,1(\\e(B ?\\e$,1(]\e(B ?\\e$,1(^\e(B ?\\e$,1(_\e(B
1453 ?\\e$,1(`\e(B ?\\e$,1(a\e(B ?\\e$,1(b\e(B ?\\e$,1(c\e(B ?\\e$,1(d\e(B ?\\e$,1(e\e(B ?\\e$,1(f\e(B ?\\e$,1(g\e(B ?\\e$,1(h\e(B ?\\e$,1(i\e(B ?\\e$,1(j\e(B ?\\e$,1(k\e(B ?\\e$,1(l\e(B ?\\e$,1(m\e(B ?\\e$,1(n\e(B ?\\e$,1tL\e(B]
1454 "Mac Cyrillic Encoding (MIME:x-mac-cyrillic).")
1455 (coding-system-put 'mac-cyrillic 'mime-charset 'x-mac-cyrillic)
1456
1457 (let
1458 ((encoding-vector
1459 (vconcat
1460 (make-vector 32 nil)
1461 ;; mac-symbol (32..126) -> emacs-mule mapping
1462 [?\ ?\! ?\\e$,1x \e(B ?\# ?\\e$,1x#\e(B ?\% ?\& ?\\e$,1x-\e(B ?\( ?\) ?\\e$,1x7\e(B ?\+ ?\, ?\\e$,1x2\e(B ?\. ?\/
1463 ?\0 ?\1 ?\2 ?\3 ?\4 ?\5 ?\6 ?\7 ?\8 ?\9 ?\: ?\; ?\< ?\= ?\> ?\?
1464 ?\\e$,1xe\e(B ?\\e$,1&q\e(B ?\\e$,1&r\e(B ?\\e$,1''\e(B ?\\e$,1&t\e(B ?\\e$,1&u\e(B ?\\e$,1'&\e(B ?\\e$,1&s\e(B ?\\e$,1&w\e(B ?\\e$,1&y\e(B ?\\e$,1'Q\e(B ?\\e$,1&z\e(B ?\\e$,1&{\e(B ?\\e$,1&|\e(B ?\\e$,1&}\e(B ?\\e$,1&\7f\e(B
1465 ?\\e$,1' \e(B ?\\e$,1&x\e(B ?\\e$,1'!\e(B ?\\e$,1'#\e(B ?\\e$,1'$\e(B ?\\e$,1'%\e(B ?\\e$,1'B\e(B ?\\e$,1')\e(B ?\\e$,1&~\e(B ?\\e$,1'(\e(B ?\\e$,1&v\e(B ?\[ ?\\e$,1xT\e(B ?\] ?\\e$,1ye\e(B ?\_
1466 ?\\e$,3bE\e(B ?\\e$,1'1\e(B ?\\e$,1'2\e(B ?\\e$,1'G\e(B ?\\e$,1'4\e(B ?\\e$,1'5\e(B ?\\e$,1'F\e(B ?\\e$,1'3\e(B ?\\e$,1'7\e(B ?\\e$,1'9\e(B ?\\e$,1'U\e(B ?\\e$,1':\e(B ?\\e$,1';\e(B ?\\e$,1'<\e(B ?\\e$,1'=\e(B ?\\e$,1'?\e(B
1467 ?\\e$,1'@\e(B ?\\e$,1'8\e(B ?\\e$,1'A\e(B ?\\e$,1'C\e(B ?\\e$,1'D\e(B ?\\e$,1'E\e(B ?\\e$,1'V\e(B ?\\e$,1'I\e(B ?\\e$,1'>\e(B ?\\e$,1'H\e(B ?\\e$,1'6\e(B ?\{ ?\| ?\} ?\\e$,1x\\e(B]
1468 (make-vector (- 160 127) nil)
1469 ;; mac-symbol (160..254) -> emacs-mule mapping
1470 ;; Mapping of the following characters are changed from the
1471 ;; original one:
1472 ;; 0xE2 0x00AE+0xF87F -> 0x00AE # REGISTERED SIGN, alternate: sans serif
1473 ;; 0xE3 0x00A9+0xF87F -> 0x00A9 # COPYRIGHT SIGN, alternate: sans serif
1474 ;; 0xE4 0x2122+0xF87F -> 0x2122 # TRADE MARK SIGN, alternate: sans serif
1475 [?\\e$,1tL\e(B ?\\e$,1'R\e(B ?\\e$,1s2\e(B ?\\e$,1y$\e(B ?\\e$,1sD\e(B ?\\e$,1x>\e(B ?\\e$,1!R\e(B ?\\e$,2#c\e(B ?\\e$,2#f\e(B ?\\e$,2#e\e(B ?\\e$,2#`\e(B ?\\e$,1vt\e(B ?\\e$,1vp\e(B ?\\e$,1vq\e(B ?\\e$,1vr\e(B ?\\e$,1vs\e(B
1476 ?\\e,A0\e(B ?\\e,A1\e(B ?\\e$,1s3\e(B ?\\e$,1y%\e(B ?\\e,AW\e(B ?\\e$,1x=\e(B ?\\e$,1x"\e(B ?\\e$,1s"\e(B ?\\e,Aw\e(B ?\\e$,1y \e(B ?\\e$,1y!\e(B ?\\e$,1xh\e(B ?\\e$,1s&\e(B ?\\e$,1|p\e(B ?\\e$,1|O\e(B ?\\e$,1w5\e(B
1477 ?\\e$,1uu\e(B ?\\e$,1uQ\e(B ?\\e$,1u\\e(B ?\\e$,1uX\e(B ?\\e$,1yW\e(B ?\\e$,1yU\e(B ?\\e$,1x%\e(B ?\\e$,1xI\e(B ?\\e$,1xJ\e(B ?\\e$,1yC\e(B ?\\e$,1yG\e(B ?\\e$,1yD\e(B ?\\e$,1yB\e(B ?\\e$,1yF\e(B ?\\e$,1x(\e(B ?\\e$,1x)\e(B
1478 ?\\e$,1x@\e(B ?\\e$,1x'\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1x/\e(B ?\\e$,1x:\e(B ?\\e$,1z%\e(B ?\\e,A,\e(B ?\\e$,1xG\e(B ?\\e$,1xH\e(B ?\\e$,1wT\e(B ?\\e$,1wP\e(B ?\\e$,1wQ\e(B ?\\e$,1wR\e(B ?\\e$,1wS\e(B
1479 ?\\e$,2"*\e(B ?\\e$,2=H\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1x1\e(B ?\\e$,1|;\e(B ?\\e$,1|<\e(B ?\\e$,1|=\e(B ?\\e$,1|A\e(B ?\\e$,1|B\e(B ?\\e$,1|C\e(B ?\\e$,1|G\e(B ?\\e$,1|H\e(B ?\\e$,1|I\e(B ?\\e$,1|J\e(B
1480 ?\\e$,3b_\e(B ?\\e$,2=I\e(B ?\\e$,1xK\e(B ?\\e$,1{ \e(B ?\\e$,1|N\e(B ?\\e$,1{!\e(B ?\\e$,1|>\e(B ?\\e$,1|?\e(B ?\\e$,1|@\e(B ?\\e$,1|D\e(B ?\\e$,1|E\e(B ?\\e$,1|F\e(B ?\\e$,1|K\e(B ?\\e$,1|L\e(B ?\\e$,1|M\e(B
1481 nil]))
1482 translation-table)
1483 (setq translation-table
1484 (make-translation-table-from-vector encoding-vector))
1485 ;; (define-translation-table 'mac-symbol-decoder translation-table)
1486 (define-translation-table 'mac-symbol-encoder
1487 (char-table-extra-slot translation-table 0)))
1488
1489 (let
1490 ((encoding-vector
1491 (vconcat
1492 (make-vector 32 nil)
1493 ;; mac-dingbats (32..126) -> emacs-mule mapping
1494 [?\ ?\\e$,2%A\e(B ?\\e$,2%B\e(B ?\\e$,2%C\e(B ?\\e$,2%D\e(B ?\\e$,2"n\e(B ?\\e$,2%F\e(B ?\\e$,2%G\e(B ?\\e$,2%H\e(B ?\\e$,2%I\e(B ?\\e$,2"{\e(B ?\\e$,2"~\e(B ?\\e$,2%L\e(B ?\\e$,2%M\e(B ?\\e$,2%N\e(B ?\\e$,2%O\e(B
1495 ?\\e$,2%P\e(B ?\\e$,2%Q\e(B ?\\e$,2%R\e(B ?\\e$,2%S\e(B ?\\e$,2%T\e(B ?\\e$,2%U\e(B ?\\e$,2%V\e(B ?\\e$,2%W\e(B ?\\e$,2%X\e(B ?\\e$,2%Y\e(B ?\\e$,2%Z\e(B ?\\e$,2%[\e(B ?\\e$,2%\\e(B ?\\e$,2%]\e(B ?\\e$,2%^\e(B ?\\e$,2%_\e(B
1496 ?\\e$,2%`\e(B ?\\e$,2%a\e(B ?\\e$,2%b\e(B ?\\e$,2%c\e(B ?\\e$,2%d\e(B ?\\e$,2%e\e(B ?\\e$,2%f\e(B ?\\e$,2%g\e(B ?\\e$,2"e\e(B ?\\e$,2%i\e(B ?\\e$,2%j\e(B ?\\e$,2%k\e(B ?\\e$,2%l\e(B ?\\e$,2%m\e(B ?\\e$,2%n\e(B ?\\e$,2%o\e(B
1497 ?\\e$,2%p\e(B ?\\e$,2%q\e(B ?\\e$,2%r\e(B ?\\e$,2%s\e(B ?\\e$,2%t\e(B ?\\e$,2%u\e(B ?\\e$,2%v\e(B ?\\e$,2%w\e(B ?\\e$,2%x\e(B ?\\e$,2%y\e(B ?\\e$,2%z\e(B ?\\e$,2%{\e(B ?\\e$,2%|\e(B ?\\e$,2%}\e(B ?\\e$,2%~\e(B ?\\e$,2%\7f\e(B
1498 ?\\e$,2& \e(B ?\\e$,2&!\e(B ?\\e$,2&"\e(B ?\\e$,2&#\e(B ?\\e$,2&$\e(B ?\\e$,2&%\e(B ?\\e$,2&&\e(B ?\\e$,2&'\e(B ?\\e$,2&(\e(B ?\\e$,2&)\e(B ?\\e$,2&*\e(B ?\\e$,2&+\e(B ?\\e$,2"/\e(B ?\\e$,2&-\e(B ?\\e$,2!`\e(B ?\\e$,2&/\e(B
1499 ?\\e$,2&0\e(B ?\\e$,2&1\e(B ?\\e$,2&2\e(B ?\\e$,2!r\e(B ?\\e$,2!|\e(B ?\\e$,2"&\e(B ?\\e$,2&6\e(B ?\\e$,2"7\e(B ?\\e$,2&8\e(B ?\\e$,2&9\e(B ?\\e$,2&:\e(B ?\\e$,2&;\e(B ?\\e$,2&<\e(B ?\\e$,2&=\e(B ?\\e$,2&>\e(B
1500 nil
1501 ;; mac-dingbats (128..141) -> emacs-mule mapping
1502 ?\\e$,2&H\e(B ?\\e$,2&I\e(B ?\\e$,2&J\e(B ?\\e$,2&K\e(B ?\\e$,2&L\e(B ?\\e$,2&M\e(B ?\\e$,2&N\e(B ?\\e$,2&O\e(B ?\\e$,2&P\e(B ?\\e$,2&Q\e(B ?\\e$,2&R\e(B ?\\e$,2&S\e(B ?\\e$,2&T\e(B ?\\e$,2&U\e(B]
1503 (make-vector (- 161 142) nil)
1504 ;; mac-dingbats (161..239) -> emacs-mule mapping
1505 [?\\e$,2&A\e(B ?\\e$,2&B\e(B ?\\e$,2&C\e(B ?\\e$,2&D\e(B ?\\e$,2&E\e(B ?\\e$,2&F\e(B ?\\e$,2&G\e(B ?\\e$,2#c\e(B ?\\e$,2#f\e(B ?\\e$,2#e\e(B ?\\e$,2#`\e(B ?\\e$,1~@\e(B ?\\e$,1~A\e(B ?\\e$,1~B\e(B ?\\e$,1~C\e(B
1506 ?\\e$,1~D\e(B ?\\e$,1~E\e(B ?\\e$,1~F\e(B ?\\e$,1~G\e(B ?\\e$,1~H\e(B ?\\e$,1~I\e(B ?\\e$,2&V\e(B ?\\e$,2&W\e(B ?\\e$,2&X\e(B ?\\e$,2&Y\e(B ?\\e$,2&Z\e(B ?\\e$,2&[\e(B ?\\e$,2&\\e(B ?\\e$,2&]\e(B ?\\e$,2&^\e(B ?\\e$,2&_\e(B
1507 ?\\e$,2&`\e(B ?\\e$,2&a\e(B ?\\e$,2&b\e(B ?\\e$,2&c\e(B ?\\e$,2&d\e(B ?\\e$,2&e\e(B ?\\e$,2&f\e(B ?\\e$,2&g\e(B ?\\e$,2&h\e(B ?\\e$,2&i\e(B ?\\e$,2&j\e(B ?\\e$,2&k\e(B ?\\e$,2&l\e(B ?\\e$,2&m\e(B ?\\e$,2&n\e(B ?\\e$,2&o\e(B
1508 ?\\e$,2&p\e(B ?\\e$,2&q\e(B ?\\e$,2&r\e(B ?\\e$,2&s\e(B ?\\e$,2&t\e(B ?\\e$,1vr\e(B ?\\e$,1vt\e(B ?\\e$,1vu\e(B ?\\e$,2&x\e(B ?\\e$,2&y\e(B ?\\e$,2&z\e(B ?\\e$,2&{\e(B ?\\e$,2&|\e(B ?\\e$,2&}\e(B ?\\e$,2&~\e(B ?\\e$,2&\7f\e(B
1509 ?\\e$,2' \e(B ?\\e$,2'!\e(B ?\\e$,2'"\e(B ?\\e$,2'#\e(B ?\\e$,2'$\e(B ?\\e$,2'%\e(B ?\\e$,2'&\e(B ?\\e$,2''\e(B ?\\e$,2'(\e(B ?\\e$,2')\e(B ?\\e$,2'*\e(B ?\\e$,2'+\e(B ?\\e$,2',\e(B ?\\e$,2'-\e(B ?\\e$,2'.\e(B ?\\e$,2'/\e(B
1510 nil
1511 ;; mac-dingbats (241..254) -> emacs-mule mapping
1512 ?\\e$,2'1\e(B ?\\e$,2'2\e(B ?\\e$,2'3\e(B ?\\e$,2'4\e(B ?\\e$,2'5\e(B ?\\e$,2'6\e(B ?\\e$,2'7\e(B ?\\e$,2'8\e(B ?\\e$,2'9\e(B ?\\e$,2':\e(B ?\\e$,2';\e(B ?\\e$,2'<\e(B ?\\e$,2'=\e(B ?\\e$,2'>\e(B
1513 nil]))
1514 translation-table)
1515 (setq translation-table
1516 (make-translation-table-from-vector encoding-vector))
1517 ;; (define-translation-table 'mac-dingbats-decoder translation-table)
1518 (define-translation-table 'mac-dingbats-encoder
1519 (char-table-extra-slot translation-table 0)))
1520
1521 (defvar mac-font-encoder-list
1522 '(("mac-roman" mac-roman-encoder
1523 ccl-encode-mac-roman-font "%s")
1524 ("mac-centraleurroman" encode-mac-centraleurroman
1525 ccl-encode-mac-centraleurroman-font "%s ce")
1526 ("mac-cyrillic" encode-mac-cyrillic
1527 ccl-encode-mac-cyrillic-font "%s cy")
1528 ("mac-symbol" mac-symbol-encoder
1529 ccl-encode-mac-symbol-font "symbol")
1530 ("mac-dingbats" mac-dingbats-encoder
1531 ccl-encode-mac-dingbats-font "zapf dingbats")))
1532
1533 (let ((encoder-list
1534 (mapcar (lambda (lst) (nth 1 lst)) mac-font-encoder-list))
1535 (charset-list
1536 '(latin-iso8859-2
1537 latin-iso8859-3 latin-iso8859-4
1538 cyrillic-iso8859-5 greek-iso8859-7 hebrew-iso8859-8
1539 latin-iso8859-9 latin-iso8859-14 latin-iso8859-15)))
1540 (dolist (encoder encoder-list)
1541 (let ((table (get encoder 'translation-table)))
1542 (dolist (charset charset-list)
1543 (dotimes (i 96)
1544 (let* ((c (make-char charset (+ i 32)))
1545 (mu (aref ucs-mule-to-mule-unicode c))
1546 (mac-encoded (and mu (aref table mu))))
1547 (if mac-encoded
1548 (aset table c mac-encoded))))))))
1549
1550 (define-ccl-program ccl-encode-mac-roman-font
1551 `(0
1552 (if (r0 != ,(charset-id 'ascii))
1553 (if (r0 <= ?\x8f)
1554 (translate-character mac-roman-encoder r0 r1)
1555 ((r1 <<= 7)
1556 (r1 |= r2)
1557 (translate-character mac-roman-encoder r0 r1)))))
1558 "CCL program for Mac Roman font")
1559
1560 (define-ccl-program ccl-encode-mac-centraleurroman-font
1561 `(0
1562 (if (r0 != ,(charset-id 'ascii))
1563 (if (r0 <= ?\x8f)
1564 (translate-character encode-mac-centraleurroman r0 r1)
1565 ((r1 <<= 7)
1566 (r1 |= r2)
1567 (translate-character encode-mac-centraleurroman r0 r1)))))
1568 "CCL program for Mac Central European Roman font")
1569
1570 (define-ccl-program ccl-encode-mac-cyrillic-font
1571 `(0
1572 (if (r0 != ,(charset-id 'ascii))
1573 (if (r0 <= ?\x8f)
1574 (translate-character encode-mac-cyrillic r0 r1)
1575 ((r1 <<= 7)
1576 (r1 |= r2)
1577 (translate-character encode-mac-cyrillic r0 r1)))))
1578 "CCL program for Mac Cyrillic font")
1579
1580 (define-ccl-program ccl-encode-mac-symbol-font
1581 `(0
1582 (if (r0 != ,(charset-id 'ascii))
1583 (if (r0 <= ?\x8f)
1584 (translate-character mac-symbol-encoder r0 r1)
1585 ((r1 <<= 7)
1586 (r1 |= r2)
1587 (translate-character mac-symbol-encoder r0 r1)))))
1588 "CCL program for Mac Symbol font")
1589
1590 (define-ccl-program ccl-encode-mac-dingbats-font
1591 `(0
1592 (if (r0 != ,(charset-id 'ascii))
1593 (if (r0 <= ?\x8f)
1594 (translate-character mac-dingbats-encoder r0 r1)
1595 ((r1 <<= 7)
1596 (r1 |= r2)
1597 (translate-character mac-dingbats-encoder r0 r1)))))
1598 "CCL program for Mac Dingbats font")
1599
1600
1601 (setq font-ccl-encoder-alist
1602 (nconc
1603 (mapcar (lambda (lst) (cons (nth 0 lst) (nth 2 lst)))
1604 mac-font-encoder-list)
1605 font-ccl-encoder-alist))
1606
1607 (defun fontset-add-mac-fonts (fontset &optional base-family)
1608 (if base-family
1609 (setq base-family (downcase base-family))
1610 (let ((ascii-font
1611 (downcase (x-resolve-font-name
1612 (fontset-font fontset (charset-id 'ascii))))))
1613 (setq base-family (aref (x-decompose-font-name ascii-font)
1614 xlfd-regexp-family-subnum))))
1615 ;; (if (not (string-match "^fontset-" fontset))
1616 ;; (setq fontset
1617 ;; (concat "fontset-" (aref (x-decompose-font-name fontset)
1618 ;; xlfd-regexp-encoding-subnum))))
1619 (dolist
1620 (font-encoder
1621 (nreverse
1622 (mapcar (lambda (lst)
1623 (cons (cons (format (nth 3 lst) base-family) (nth 0 lst))
1624 (nth 1 lst)))
1625 mac-font-encoder-list)))
1626 (let ((font (car font-encoder))
1627 (encoder (cdr font-encoder)))
1628 (map-char-table
1629 (lambda (key val)
1630 (or (null val)
1631 (generic-char-p key)
1632 (memq (char-charset key)
1633 '(ascii eight-bit-control eight-bit-graphic))
1634 (set-fontset-font fontset key font)))
1635 (get encoder 'translation-table)))))
1636
1637 (defun create-fontset-from-mac-roman-font (font &optional resolved-font
1638 fontset-name)
1639 "Create a fontset from a Mac roman font FONT.
1640
1641 Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If
1642 omitted, `x-resolve-font-name' is called to get the resolved name. At
1643 this time, if FONT is not available, error is signaled.
1644
1645 Optional 2nd arg FONTSET-NAME is a string to be used in
1646 `<CHARSET_ENCODING>' fields of a new fontset name. If it is omitted,
1647 an appropriate name is generated automatically.
1648
1649 It returns a name of the created fontset."
1650 (let ((fontset
1651 (create-fontset-from-ascii-font font resolved-font fontset-name)))
1652 (fontset-add-mac-fonts fontset)
1653 fontset))
1654
1655 ;; Setup the default fontset.
1656 (setup-default-fontset)
1657
1658 ;; Create a fontset that uses mac-roman font. With this fontset,
1659 ;; characters decoded from mac-roman encoding (ascii, latin-iso8859-1,
1660 ;; and mule-unicode-xxxx-yyyy) are displayed by a mac-roman font.
1661 (create-fontset-from-fontset-spec
1662 "-etl-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-mac,
1663 ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman")
1664 (fontset-add-mac-fonts "fontset-mac")
1665
1666 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
1667 (create-fontset-from-x-resource)
1668
1669 ;; Try to create a fontset from a font specification which comes
1670 ;; from initial-frame-alist, default-frame-alist, or X resource.
1671 ;; A font specification in command line argument (i.e. -fn XXXX)
1672 ;; should be already in default-frame-alist as a `font'
1673 ;; parameter. However, any font specifications in site-start
1674 ;; library, user's init file (.emacs), and default.el are not
1675 ;; yet handled here.
1676
1677 (let ((font (or (cdr (assq 'font initial-frame-alist))
1678 (cdr (assq 'font default-frame-alist))
1679 (x-get-resource "font" "Font")))
1680 xlfd-fields resolved-name)
1681 (if (and font
1682 (not (query-fontset font))
1683 (setq resolved-name (x-resolve-font-name font))
1684 (setq xlfd-fields (x-decompose-font-name font)))
1685 (if (string= "fontset" (aref xlfd-fields xlfd-regexp-registry-subnum))
1686 (new-fontset font (x-complement-fontset-spec xlfd-fields nil))
1687 ;; Create a fontset from FONT. The fontset name is
1688 ;; generated from FONT.
1689 (if (and (string= "mac" (aref xlfd-fields xlfd-regexp-registry-subnum))
1690 (string= "roman" (aref xlfd-fields xlfd-regexp-encoding-subnum)))
1691 (create-fontset-from-mac-roman-font font resolved-name "startup")
1692 (create-fontset-from-ascii-font font resolved-name "startup")))))
1693
1694 ;; Apply a geometry resource to the initial frame. Put it at the end
1695 ;; of the alist, so that anything specified on the command line takes
1696 ;; precedence.
1697 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
1698 parsed)
1699 (if res-geometry
1700 (progn
1701 (setq parsed (x-parse-geometry res-geometry))
1702 ;; If the resource specifies a position,
1703 ;; call the position and size "user-specified".
1704 (if (or (assq 'top parsed) (assq 'left parsed))
1705 (setq parsed (cons '(user-position . t)
1706 (cons '(user-size . t) parsed))))
1707 ;; All geometry parms apply to the initial frame.
1708 (setq initial-frame-alist (append initial-frame-alist parsed))
1709 ;; The size parms apply to all frames.
1710 (if (assq 'height parsed)
1711 (setq default-frame-alist
1712 (cons (cons 'height (cdr (assq 'height parsed)))
1713 default-frame-alist)))
1714 (if (assq 'width parsed)
1715 (setq default-frame-alist
1716 (cons (cons 'width (cdr (assq 'width parsed)))
1717 default-frame-alist))))))
1718
1719 ;; Check the reverseVideo resource.
1720 (let ((case-fold-search t))
1721 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
1722 (if (and rv
1723 (string-match "^\\(true\\|yes\\|on\\)$" rv))
1724 (setq default-frame-alist
1725 (cons '(reverse . t) default-frame-alist)))))
1726
1727 (defun x-win-suspend-error ()
1728 (error "Suspending an Emacs running under Mac makes no sense"))
1729 (add-hook 'suspend-hook 'x-win-suspend-error)
1730
1731 ;;; Arrange for the kill and yank functions to set and check the clipboard.
1732 (setq interprogram-cut-function 'x-select-text)
1733 (setq interprogram-paste-function 'x-get-selection-value)
1734
1735 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
1736
1737 ;;; Turn off window-splitting optimization; Mac is usually fast enough
1738 ;;; that this is only annoying.
1739 (setq split-window-keep-point t)
1740
1741 ;; Don't show the frame name; that's redundant.
1742 (setq-default mode-line-frame-identification " ")
1743
1744 ;; Turn on support for mouse wheels.
1745 (mouse-wheel-mode 1)
1746
1747
1748 ;; Enable CLIPBOARD copy/paste through menu bar commands.
1749 (menu-bar-enable-clipboard)
1750
1751 (defun mac-drag-n-drop (event)
1752 "Edit the files listed in the drag-n-drop EVENT.
1753 Switch to a buffer editing the last file dropped."
1754 (interactive "e")
1755 ;; Make sure the drop target has positive co-ords
1756 ;; before setting the selected frame - otherwise it
1757 ;; won't work. <skx@tardis.ed.ac.uk>
1758 (let* ((window (posn-window (event-start event)))
1759 (coords (posn-x-y (event-start event)))
1760 (x (car coords))
1761 (y (cdr coords)))
1762 (if (and (> x 0) (> y 0))
1763 (set-frame-selected-window nil window))
1764 (mapcar (lambda (file-name)
1765 (if (listp file-name)
1766 (let ((line (car file-name))
1767 (start (car (cdr file-name)))
1768 (end (car (cdr (cdr file-name)))))
1769 (if (> line 0)
1770 (goto-line line)
1771 (if (and (> start 0) (> end 0))
1772 (progn (set-mark start)
1773 (goto-char end)))))
1774 (dnd-handle-one-url window 'private
1775 (concat "file:" file-name))))
1776 (car (cdr (cdr event)))))
1777 (raise-frame))
1778
1779 (global-set-key [drag-n-drop] 'mac-drag-n-drop)
1780
1781 ;; By checking whether the variable mac-ready-for-drag-n-drop has been
1782 ;; defined, the event loop in macterm.c can be informed that it can
1783 ;; now receive Finder drag and drop events. Files dropped onto the
1784 ;; Emacs application icon can only be processed when the initial frame
1785 ;; has been created: this is where the files should be opened.
1786 (add-hook 'after-init-hook
1787 '(lambda ()
1788 (defvar mac-ready-for-drag-n-drop t)))
1789 \f
1790 ;;;; Non-toolkit Scroll bars
1791
1792 (unless x-toolkit-scroll-bars
1793
1794 ;; for debugging
1795 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
1796
1797 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
1798
1799 (global-set-key
1800 [vertical-scroll-bar down-mouse-1]
1801 'mac-handle-scroll-bar-event)
1802
1803 (global-unset-key [vertical-scroll-bar drag-mouse-1])
1804 (global-unset-key [vertical-scroll-bar mouse-1])
1805
1806 (defun mac-handle-scroll-bar-event (event)
1807 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
1808 (interactive "e")
1809 (let* ((position (event-start event))
1810 (window (nth 0 position))
1811 (bar-part (nth 4 position)))
1812 (select-window window)
1813 (cond
1814 ((eq bar-part 'up)
1815 (goto-char (window-start window))
1816 (mac-scroll-down-line))
1817 ((eq bar-part 'above-handle)
1818 (mac-scroll-down))
1819 ((eq bar-part 'handle)
1820 (scroll-bar-drag event))
1821 ((eq bar-part 'below-handle)
1822 (mac-scroll-up))
1823 ((eq bar-part 'down)
1824 (goto-char (window-start window))
1825 (mac-scroll-up-line)))))
1826
1827 (defun mac-scroll-ignore-events ()
1828 ;; Ignore confusing non-mouse events
1829 (while (not (memq (car-safe (read-event))
1830 '(mouse-1 double-mouse-1 triple-mouse-1))) nil))
1831
1832 (defun mac-scroll-down ()
1833 (track-mouse
1834 (mac-scroll-ignore-events)
1835 (scroll-down)))
1836
1837 (defun mac-scroll-down-line ()
1838 (track-mouse
1839 (mac-scroll-ignore-events)
1840 (scroll-down 1)))
1841
1842 (defun mac-scroll-up ()
1843 (track-mouse
1844 (mac-scroll-ignore-events)
1845 (scroll-up)))
1846
1847 (defun mac-scroll-up-line ()
1848 (track-mouse
1849 (mac-scroll-ignore-events)
1850 (scroll-up 1)))
1851
1852 )
1853 \f
1854 ;;;; Others
1855
1856 (unless (eq system-type 'darwin)
1857 ;; This variable specifies the Unix program to call (as a process) to
1858 ;; determine the amount of free space on a file system (defaults to
1859 ;; df). If it is not set to nil, ls-lisp will not work correctly
1860 ;; unless an external application df is implemented on the Mac.
1861 (setq directory-free-space-program nil)
1862
1863 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
1864 ;; expand filenames Note no subprocess for the shell is actually
1865 ;; started (see run_mac_command in sysdep.c).
1866 (setq shell-file-name "sh")
1867
1868 ;; Some system variables are encoded with the system script code.
1869 (dolist (v '(system-name
1870 emacs-build-system ; Mac OS 9 version cannot dump
1871 user-login-name user-real-login-name user-full-name))
1872 (set v (decode-coding-string (symbol-value v) mac-system-coding-system))))
1873
1874 ;; If Emacs is started from the Finder, change the default directory
1875 ;; to the user's home directory.
1876 (if (string= default-directory "/")
1877 (cd "~"))
1878
1879 ;; Darwin 6- pty breakage is now controlled from the C code so that
1880 ;; it applies to all builds on darwin. See s/darwin.h PTY_ITERATION.
1881 ;; (setq process-connection-type t)
1882
1883 ;; Assume that fonts are always scalable on the Mac. This sometimes
1884 ;; results in characters with jagged edges. However, without it,
1885 ;; fonts with both truetype and bitmap representations but no italic
1886 ;; or bold bitmap versions will not display these variants correctly.
1887 (setq scalable-fonts-allowed t)
1888
1889 ;; arch-tag: 71dfcd14-cde8-4d66-b05c-85ec94fb23a6
1890 ;;; mac-win.el ends here