]> code.delx.au - gnu-emacs/blob - lisp/term/mac-win.el
(mac-bytes-to-digits): Remove function.
[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, 2004,
4 ;; 2005, 2006 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 ;; -iconic .iconic
58 ;; -name .name
59 ;; -reverse *reverseVideo
60 ;; -rv *reverseVideo
61 ;; -selectionTimeout .selectionTimeout
62 ;; -synchronous *synchronous
63 ;; -xrm
64
65 ;; An alist of X options and the function which handles them. See
66 ;; ../startup.el.
67
68 (if (not (eq window-system 'mac))
69 (error "%s: Loading mac-win.el but not compiled for Mac" (invocation-name)))
70
71 (require 'frame)
72 (require 'mouse)
73 (require 'scroll-bar)
74 (require 'faces)
75 (require 'select)
76 (require 'menu-bar)
77 (require 'fontset)
78 (require 'dnd)
79 (eval-when-compile (require 'url))
80
81 (defvar mac-charset-info-alist)
82 (defvar mac-service-selection)
83 (defvar mac-system-script-code)
84 (defvar mac-apple-event-map)
85 (defvar mac-atsu-font-table)
86 (defvar mac-font-panel-mode)
87 (defvar x-invocation-args)
88
89 (defvar x-command-line-resources nil)
90
91 ;; Handler for switches of the form "-switch value" or "-switch".
92 (defun x-handle-switch (switch)
93 (let ((aelt (assoc switch command-line-x-option-alist)))
94 (if aelt
95 (let ((param (nth 3 aelt))
96 (value (nth 4 aelt)))
97 (if value
98 (setq default-frame-alist
99 (cons (cons param value)
100 default-frame-alist))
101 (setq default-frame-alist
102 (cons (cons param
103 (car x-invocation-args))
104 default-frame-alist)
105 x-invocation-args (cdr x-invocation-args)))))))
106
107 ;; Handler for switches of the form "-switch n"
108 (defun x-handle-numeric-switch (switch)
109 (let ((aelt (assoc switch command-line-x-option-alist)))
110 (if aelt
111 (let ((param (nth 3 aelt)))
112 (setq default-frame-alist
113 (cons (cons param
114 (string-to-number (car x-invocation-args)))
115 default-frame-alist)
116 x-invocation-args
117 (cdr x-invocation-args))))))
118
119 ;; Handle options that apply to initial frame only
120 (defun x-handle-initial-switch (switch)
121 (let ((aelt (assoc switch command-line-x-option-alist)))
122 (if aelt
123 (let ((param (nth 3 aelt))
124 (value (nth 4 aelt)))
125 (if value
126 (setq initial-frame-alist
127 (cons (cons param value)
128 initial-frame-alist))
129 (setq initial-frame-alist
130 (cons (cons param
131 (car x-invocation-args))
132 initial-frame-alist)
133 x-invocation-args (cdr x-invocation-args)))))))
134
135 ;; Make -iconic apply only to the initial frame!
136 (defun x-handle-iconic (switch)
137 (setq initial-frame-alist
138 (cons '(visibility . icon) initial-frame-alist)))
139
140 ;; Handle the -xrm option.
141 (defun x-handle-xrm-switch (switch)
142 (unless (consp x-invocation-args)
143 (error "%s: missing argument to `%s' option" (invocation-name) switch))
144 (setq x-command-line-resources
145 (if (null x-command-line-resources)
146 (car x-invocation-args)
147 (concat x-command-line-resources "\n" (car x-invocation-args))))
148 (setq x-invocation-args (cdr x-invocation-args)))
149
150 ;; Handle the geometry option
151 (defun x-handle-geometry (switch)
152 (let* ((geo (x-parse-geometry (car x-invocation-args)))
153 (left (assq 'left geo))
154 (top (assq 'top geo))
155 (height (assq 'height geo))
156 (width (assq 'width geo)))
157 (if (or height width)
158 (setq default-frame-alist
159 (append default-frame-alist
160 '((user-size . t))
161 (if height (list height))
162 (if width (list width)))
163 initial-frame-alist
164 (append initial-frame-alist
165 '((user-size . t))
166 (if height (list height))
167 (if width (list width)))))
168 (if (or left top)
169 (setq initial-frame-alist
170 (append initial-frame-alist
171 '((user-position . t))
172 (if left (list left))
173 (if top (list top)))))
174 (setq x-invocation-args (cdr x-invocation-args))))
175
176 ;; Handle the -name option. Set the variable x-resource-name
177 ;; to the option's operand; set the name of
178 ;; the initial frame, too.
179 (defun x-handle-name-switch (switch)
180 (or (consp x-invocation-args)
181 (error "%s: missing argument to `%s' option" (invocation-name) switch))
182 (setq x-resource-name (car x-invocation-args)
183 x-invocation-args (cdr x-invocation-args))
184 (setq initial-frame-alist (cons (cons 'name x-resource-name)
185 initial-frame-alist)))
186
187 (defvar x-display-name nil
188 "The display name specifying server and frame.")
189
190 (defun x-handle-display (switch)
191 (setq x-display-name (car x-invocation-args)
192 x-invocation-args (cdr x-invocation-args)))
193
194 (defun x-handle-args (args)
195 "Process the X-related command line options in ARGS.
196 This is done before the user's startup file is loaded. They are copied to
197 `x-invocation-args', from which the X-related things are extracted, first
198 the switch (e.g., \"-fg\") in the following code, and possible values
199 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
200 This function returns ARGS minus the arguments that have been processed."
201 ;; We use ARGS to accumulate the args that we don't handle here, to return.
202 (setq x-invocation-args args
203 args nil)
204 (while (and x-invocation-args
205 (not (equal (car x-invocation-args) "--")))
206 (let* ((this-switch (car x-invocation-args))
207 (orig-this-switch this-switch)
208 completion argval aelt handler)
209 (setq x-invocation-args (cdr x-invocation-args))
210 ;; Check for long options with attached arguments
211 ;; and separate out the attached option argument into argval.
212 (if (string-match "^--[^=]*=" this-switch)
213 (setq argval (substring this-switch (match-end 0))
214 this-switch (substring this-switch 0 (1- (match-end 0)))))
215 ;; Complete names of long options.
216 (if (string-match "^--" this-switch)
217 (progn
218 (setq completion (try-completion this-switch command-line-x-option-alist))
219 (if (eq completion t)
220 ;; Exact match for long option.
221 nil
222 (if (stringp completion)
223 (let ((elt (assoc completion command-line-x-option-alist)))
224 ;; Check for abbreviated long option.
225 (or elt
226 (error "Option `%s' is ambiguous" this-switch))
227 (setq this-switch completion))))))
228 (setq aelt (assoc this-switch command-line-x-option-alist))
229 (if aelt (setq handler (nth 2 aelt)))
230 (if handler
231 (if argval
232 (let ((x-invocation-args
233 (cons argval x-invocation-args)))
234 (funcall handler this-switch))
235 (funcall handler this-switch))
236 (setq args (cons orig-this-switch args)))))
237 (nconc (nreverse args) x-invocation-args))
238
239 \f
240 ;;
241 ;; Standard Mac cursor shapes
242 ;;
243
244 (defconst mac-pointer-arrow 0)
245 (defconst mac-pointer-copy-arrow 1)
246 (defconst mac-pointer-alias-arrow 2)
247 (defconst mac-pointer-contextual-menu-arrow 3)
248 (defconst mac-pointer-I-beam 4)
249 (defconst mac-pointer-cross 5)
250 (defconst mac-pointer-plus 6)
251 (defconst mac-pointer-watch 7)
252 (defconst mac-pointer-closed-hand 8)
253 (defconst mac-pointer-open-hand 9)
254 (defconst mac-pointer-pointing-hand 10)
255 (defconst mac-pointer-counting-up-hand 11)
256 (defconst mac-pointer-counting-down-hand 12)
257 (defconst mac-pointer-counting-up-and-down-hand 13)
258 (defconst mac-pointer-spinning 14)
259 (defconst mac-pointer-resize-left 15)
260 (defconst mac-pointer-resize-right 16)
261 (defconst mac-pointer-resize-left-right 17)
262 ;; Mac OS X 10.2 and later
263 (defconst mac-pointer-not-allowed 18)
264 ;; Mac OS X 10.3 and later
265 (defconst mac-pointer-resize-up 19)
266 (defconst mac-pointer-resize-down 20)
267 (defconst mac-pointer-resize-up-down 21)
268 (defconst mac-pointer-poof 22)
269
270 ;;
271 ;; Standard X cursor shapes that have Mac counterparts
272 ;;
273
274 (defconst x-pointer-left-ptr mac-pointer-arrow)
275 (defconst x-pointer-xterm mac-pointer-I-beam)
276 (defconst x-pointer-crosshair mac-pointer-cross)
277 (defconst x-pointer-plus mac-pointer-plus)
278 (defconst x-pointer-watch mac-pointer-watch)
279 (defconst x-pointer-hand2 mac-pointer-pointing-hand)
280 (defconst x-pointer-left-side mac-pointer-resize-left)
281 (defconst x-pointer-right-side mac-pointer-resize-right)
282 (defconst x-pointer-sb-h-double-arrow mac-pointer-resize-left-right)
283 (defconst x-pointer-top-side mac-pointer-resize-up)
284 (defconst x-pointer-bottom-side mac-pointer-resize-down)
285 (defconst x-pointer-sb-v-double-arrow mac-pointer-resize-up-down)
286
287 \f
288 ;;
289 ;; Available colors
290 ;;
291
292 (defvar x-colors '("LightGreen"
293 "light green"
294 "DarkRed"
295 "dark red"
296 "DarkMagenta"
297 "dark magenta"
298 "DarkCyan"
299 "dark cyan"
300 "DarkBlue"
301 "dark blue"
302 "DarkGray"
303 "dark gray"
304 "DarkGrey"
305 "dark grey"
306 "grey100"
307 "gray100"
308 "grey99"
309 "gray99"
310 "grey98"
311 "gray98"
312 "grey97"
313 "gray97"
314 "grey96"
315 "gray96"
316 "grey95"
317 "gray95"
318 "grey94"
319 "gray94"
320 "grey93"
321 "gray93"
322 "grey92"
323 "gray92"
324 "grey91"
325 "gray91"
326 "grey90"
327 "gray90"
328 "grey89"
329 "gray89"
330 "grey88"
331 "gray88"
332 "grey87"
333 "gray87"
334 "grey86"
335 "gray86"
336 "grey85"
337 "gray85"
338 "grey84"
339 "gray84"
340 "grey83"
341 "gray83"
342 "grey82"
343 "gray82"
344 "grey81"
345 "gray81"
346 "grey80"
347 "gray80"
348 "grey79"
349 "gray79"
350 "grey78"
351 "gray78"
352 "grey77"
353 "gray77"
354 "grey76"
355 "gray76"
356 "grey75"
357 "gray75"
358 "grey74"
359 "gray74"
360 "grey73"
361 "gray73"
362 "grey72"
363 "gray72"
364 "grey71"
365 "gray71"
366 "grey70"
367 "gray70"
368 "grey69"
369 "gray69"
370 "grey68"
371 "gray68"
372 "grey67"
373 "gray67"
374 "grey66"
375 "gray66"
376 "grey65"
377 "gray65"
378 "grey64"
379 "gray64"
380 "grey63"
381 "gray63"
382 "grey62"
383 "gray62"
384 "grey61"
385 "gray61"
386 "grey60"
387 "gray60"
388 "grey59"
389 "gray59"
390 "grey58"
391 "gray58"
392 "grey57"
393 "gray57"
394 "grey56"
395 "gray56"
396 "grey55"
397 "gray55"
398 "grey54"
399 "gray54"
400 "grey53"
401 "gray53"
402 "grey52"
403 "gray52"
404 "grey51"
405 "gray51"
406 "grey50"
407 "gray50"
408 "grey49"
409 "gray49"
410 "grey48"
411 "gray48"
412 "grey47"
413 "gray47"
414 "grey46"
415 "gray46"
416 "grey45"
417 "gray45"
418 "grey44"
419 "gray44"
420 "grey43"
421 "gray43"
422 "grey42"
423 "gray42"
424 "grey41"
425 "gray41"
426 "grey40"
427 "gray40"
428 "grey39"
429 "gray39"
430 "grey38"
431 "gray38"
432 "grey37"
433 "gray37"
434 "grey36"
435 "gray36"
436 "grey35"
437 "gray35"
438 "grey34"
439 "gray34"
440 "grey33"
441 "gray33"
442 "grey32"
443 "gray32"
444 "grey31"
445 "gray31"
446 "grey30"
447 "gray30"
448 "grey29"
449 "gray29"
450 "grey28"
451 "gray28"
452 "grey27"
453 "gray27"
454 "grey26"
455 "gray26"
456 "grey25"
457 "gray25"
458 "grey24"
459 "gray24"
460 "grey23"
461 "gray23"
462 "grey22"
463 "gray22"
464 "grey21"
465 "gray21"
466 "grey20"
467 "gray20"
468 "grey19"
469 "gray19"
470 "grey18"
471 "gray18"
472 "grey17"
473 "gray17"
474 "grey16"
475 "gray16"
476 "grey15"
477 "gray15"
478 "grey14"
479 "gray14"
480 "grey13"
481 "gray13"
482 "grey12"
483 "gray12"
484 "grey11"
485 "gray11"
486 "grey10"
487 "gray10"
488 "grey9"
489 "gray9"
490 "grey8"
491 "gray8"
492 "grey7"
493 "gray7"
494 "grey6"
495 "gray6"
496 "grey5"
497 "gray5"
498 "grey4"
499 "gray4"
500 "grey3"
501 "gray3"
502 "grey2"
503 "gray2"
504 "grey1"
505 "gray1"
506 "grey0"
507 "gray0"
508 "thistle4"
509 "thistle3"
510 "thistle2"
511 "thistle1"
512 "MediumPurple4"
513 "MediumPurple3"
514 "MediumPurple2"
515 "MediumPurple1"
516 "purple4"
517 "purple3"
518 "purple2"
519 "purple1"
520 "DarkOrchid4"
521 "DarkOrchid3"
522 "DarkOrchid2"
523 "DarkOrchid1"
524 "MediumOrchid4"
525 "MediumOrchid3"
526 "MediumOrchid2"
527 "MediumOrchid1"
528 "plum4"
529 "plum3"
530 "plum2"
531 "plum1"
532 "orchid4"
533 "orchid3"
534 "orchid2"
535 "orchid1"
536 "magenta4"
537 "magenta3"
538 "magenta2"
539 "magenta1"
540 "VioletRed4"
541 "VioletRed3"
542 "VioletRed2"
543 "VioletRed1"
544 "maroon4"
545 "maroon3"
546 "maroon2"
547 "maroon1"
548 "PaleVioletRed4"
549 "PaleVioletRed3"
550 "PaleVioletRed2"
551 "PaleVioletRed1"
552 "LightPink4"
553 "LightPink3"
554 "LightPink2"
555 "LightPink1"
556 "pink4"
557 "pink3"
558 "pink2"
559 "pink1"
560 "HotPink4"
561 "HotPink3"
562 "HotPink2"
563 "HotPink1"
564 "DeepPink4"
565 "DeepPink3"
566 "DeepPink2"
567 "DeepPink1"
568 "red4"
569 "red3"
570 "red2"
571 "red1"
572 "OrangeRed4"
573 "OrangeRed3"
574 "OrangeRed2"
575 "OrangeRed1"
576 "tomato4"
577 "tomato3"
578 "tomato2"
579 "tomato1"
580 "coral4"
581 "coral3"
582 "coral2"
583 "coral1"
584 "DarkOrange4"
585 "DarkOrange3"
586 "DarkOrange2"
587 "DarkOrange1"
588 "orange4"
589 "orange3"
590 "orange2"
591 "orange1"
592 "LightSalmon4"
593 "LightSalmon3"
594 "LightSalmon2"
595 "LightSalmon1"
596 "salmon4"
597 "salmon3"
598 "salmon2"
599 "salmon1"
600 "brown4"
601 "brown3"
602 "brown2"
603 "brown1"
604 "firebrick4"
605 "firebrick3"
606 "firebrick2"
607 "firebrick1"
608 "chocolate4"
609 "chocolate3"
610 "chocolate2"
611 "chocolate1"
612 "tan4"
613 "tan3"
614 "tan2"
615 "tan1"
616 "wheat4"
617 "wheat3"
618 "wheat2"
619 "wheat1"
620 "burlywood4"
621 "burlywood3"
622 "burlywood2"
623 "burlywood1"
624 "sienna4"
625 "sienna3"
626 "sienna2"
627 "sienna1"
628 "IndianRed4"
629 "IndianRed3"
630 "IndianRed2"
631 "IndianRed1"
632 "RosyBrown4"
633 "RosyBrown3"
634 "RosyBrown2"
635 "RosyBrown1"
636 "DarkGoldenrod4"
637 "DarkGoldenrod3"
638 "DarkGoldenrod2"
639 "DarkGoldenrod1"
640 "goldenrod4"
641 "goldenrod3"
642 "goldenrod2"
643 "goldenrod1"
644 "gold4"
645 "gold3"
646 "gold2"
647 "gold1"
648 "yellow4"
649 "yellow3"
650 "yellow2"
651 "yellow1"
652 "LightYellow4"
653 "LightYellow3"
654 "LightYellow2"
655 "LightYellow1"
656 "LightGoldenrod4"
657 "LightGoldenrod3"
658 "LightGoldenrod2"
659 "LightGoldenrod1"
660 "khaki4"
661 "khaki3"
662 "khaki2"
663 "khaki1"
664 "DarkOliveGreen4"
665 "DarkOliveGreen3"
666 "DarkOliveGreen2"
667 "DarkOliveGreen1"
668 "OliveDrab4"
669 "OliveDrab3"
670 "OliveDrab2"
671 "OliveDrab1"
672 "chartreuse4"
673 "chartreuse3"
674 "chartreuse2"
675 "chartreuse1"
676 "green4"
677 "green3"
678 "green2"
679 "green1"
680 "SpringGreen4"
681 "SpringGreen3"
682 "SpringGreen2"
683 "SpringGreen1"
684 "PaleGreen4"
685 "PaleGreen3"
686 "PaleGreen2"
687 "PaleGreen1"
688 "SeaGreen4"
689 "SeaGreen3"
690 "SeaGreen2"
691 "SeaGreen1"
692 "DarkSeaGreen4"
693 "DarkSeaGreen3"
694 "DarkSeaGreen2"
695 "DarkSeaGreen1"
696 "aquamarine4"
697 "aquamarine3"
698 "aquamarine2"
699 "aquamarine1"
700 "DarkSlateGray4"
701 "DarkSlateGray3"
702 "DarkSlateGray2"
703 "DarkSlateGray1"
704 "cyan4"
705 "cyan3"
706 "cyan2"
707 "cyan1"
708 "turquoise4"
709 "turquoise3"
710 "turquoise2"
711 "turquoise1"
712 "CadetBlue4"
713 "CadetBlue3"
714 "CadetBlue2"
715 "CadetBlue1"
716 "PaleTurquoise4"
717 "PaleTurquoise3"
718 "PaleTurquoise2"
719 "PaleTurquoise1"
720 "LightCyan4"
721 "LightCyan3"
722 "LightCyan2"
723 "LightCyan1"
724 "LightBlue4"
725 "LightBlue3"
726 "LightBlue2"
727 "LightBlue1"
728 "LightSteelBlue4"
729 "LightSteelBlue3"
730 "LightSteelBlue2"
731 "LightSteelBlue1"
732 "SlateGray4"
733 "SlateGray3"
734 "SlateGray2"
735 "SlateGray1"
736 "LightSkyBlue4"
737 "LightSkyBlue3"
738 "LightSkyBlue2"
739 "LightSkyBlue1"
740 "SkyBlue4"
741 "SkyBlue3"
742 "SkyBlue2"
743 "SkyBlue1"
744 "DeepSkyBlue4"
745 "DeepSkyBlue3"
746 "DeepSkyBlue2"
747 "DeepSkyBlue1"
748 "SteelBlue4"
749 "SteelBlue3"
750 "SteelBlue2"
751 "SteelBlue1"
752 "DodgerBlue4"
753 "DodgerBlue3"
754 "DodgerBlue2"
755 "DodgerBlue1"
756 "blue4"
757 "blue3"
758 "blue2"
759 "blue1"
760 "RoyalBlue4"
761 "RoyalBlue3"
762 "RoyalBlue2"
763 "RoyalBlue1"
764 "SlateBlue4"
765 "SlateBlue3"
766 "SlateBlue2"
767 "SlateBlue1"
768 "azure4"
769 "azure3"
770 "azure2"
771 "azure1"
772 "MistyRose4"
773 "MistyRose3"
774 "MistyRose2"
775 "MistyRose1"
776 "LavenderBlush4"
777 "LavenderBlush3"
778 "LavenderBlush2"
779 "LavenderBlush1"
780 "honeydew4"
781 "honeydew3"
782 "honeydew2"
783 "honeydew1"
784 "ivory4"
785 "ivory3"
786 "ivory2"
787 "ivory1"
788 "cornsilk4"
789 "cornsilk3"
790 "cornsilk2"
791 "cornsilk1"
792 "LemonChiffon4"
793 "LemonChiffon3"
794 "LemonChiffon2"
795 "LemonChiffon1"
796 "NavajoWhite4"
797 "NavajoWhite3"
798 "NavajoWhite2"
799 "NavajoWhite1"
800 "PeachPuff4"
801 "PeachPuff3"
802 "PeachPuff2"
803 "PeachPuff1"
804 "bisque4"
805 "bisque3"
806 "bisque2"
807 "bisque1"
808 "AntiqueWhite4"
809 "AntiqueWhite3"
810 "AntiqueWhite2"
811 "AntiqueWhite1"
812 "seashell4"
813 "seashell3"
814 "seashell2"
815 "seashell1"
816 "snow4"
817 "snow3"
818 "snow2"
819 "snow1"
820 "thistle"
821 "MediumPurple"
822 "medium purple"
823 "purple"
824 "BlueViolet"
825 "blue violet"
826 "DarkViolet"
827 "dark violet"
828 "DarkOrchid"
829 "dark orchid"
830 "MediumOrchid"
831 "medium orchid"
832 "orchid"
833 "plum"
834 "violet"
835 "magenta"
836 "VioletRed"
837 "violet red"
838 "MediumVioletRed"
839 "medium violet red"
840 "maroon"
841 "PaleVioletRed"
842 "pale violet red"
843 "LightPink"
844 "light pink"
845 "pink"
846 "DeepPink"
847 "deep pink"
848 "HotPink"
849 "hot pink"
850 "red"
851 "OrangeRed"
852 "orange red"
853 "tomato"
854 "LightCoral"
855 "light coral"
856 "coral"
857 "DarkOrange"
858 "dark orange"
859 "orange"
860 "LightSalmon"
861 "light salmon"
862 "salmon"
863 "DarkSalmon"
864 "dark salmon"
865 "brown"
866 "firebrick"
867 "chocolate"
868 "tan"
869 "SandyBrown"
870 "sandy brown"
871 "wheat"
872 "beige"
873 "burlywood"
874 "peru"
875 "sienna"
876 "SaddleBrown"
877 "saddle brown"
878 "IndianRed"
879 "indian red"
880 "RosyBrown"
881 "rosy brown"
882 "DarkGoldenrod"
883 "dark goldenrod"
884 "goldenrod"
885 "LightGoldenrod"
886 "light goldenrod"
887 "gold"
888 "yellow"
889 "LightYellow"
890 "light yellow"
891 "LightGoldenrodYellow"
892 "light goldenrod yellow"
893 "PaleGoldenrod"
894 "pale goldenrod"
895 "khaki"
896 "DarkKhaki"
897 "dark khaki"
898 "OliveDrab"
899 "olive drab"
900 "ForestGreen"
901 "forest green"
902 "YellowGreen"
903 "yellow green"
904 "LimeGreen"
905 "lime green"
906 "GreenYellow"
907 "green yellow"
908 "MediumSpringGreen"
909 "medium spring green"
910 "chartreuse"
911 "green"
912 "LawnGreen"
913 "lawn green"
914 "SpringGreen"
915 "spring green"
916 "PaleGreen"
917 "pale green"
918 "LightSeaGreen"
919 "light sea green"
920 "MediumSeaGreen"
921 "medium sea green"
922 "SeaGreen"
923 "sea green"
924 "DarkSeaGreen"
925 "dark sea green"
926 "DarkOliveGreen"
927 "dark olive green"
928 "DarkGreen"
929 "dark green"
930 "aquamarine"
931 "MediumAquamarine"
932 "medium aquamarine"
933 "CadetBlue"
934 "cadet blue"
935 "LightCyan"
936 "light cyan"
937 "cyan"
938 "turquoise"
939 "MediumTurquoise"
940 "medium turquoise"
941 "DarkTurquoise"
942 "dark turquoise"
943 "PaleTurquoise"
944 "pale turquoise"
945 "PowderBlue"
946 "powder blue"
947 "LightBlue"
948 "light blue"
949 "LightSteelBlue"
950 "light steel blue"
951 "SteelBlue"
952 "steel blue"
953 "LightSkyBlue"
954 "light sky blue"
955 "SkyBlue"
956 "sky blue"
957 "DeepSkyBlue"
958 "deep sky blue"
959 "DodgerBlue"
960 "dodger blue"
961 "blue"
962 "RoyalBlue"
963 "royal blue"
964 "MediumBlue"
965 "medium blue"
966 "LightSlateBlue"
967 "light slate blue"
968 "MediumSlateBlue"
969 "medium slate blue"
970 "SlateBlue"
971 "slate blue"
972 "DarkSlateBlue"
973 "dark slate blue"
974 "CornflowerBlue"
975 "cornflower blue"
976 "NavyBlue"
977 "navy blue"
978 "navy"
979 "MidnightBlue"
980 "midnight blue"
981 "LightGray"
982 "light gray"
983 "LightGrey"
984 "light grey"
985 "grey"
986 "gray"
987 "LightSlateGrey"
988 "light slate grey"
989 "LightSlateGray"
990 "light slate gray"
991 "SlateGrey"
992 "slate grey"
993 "SlateGray"
994 "slate gray"
995 "DimGrey"
996 "dim grey"
997 "DimGray"
998 "dim gray"
999 "DarkSlateGrey"
1000 "dark slate grey"
1001 "DarkSlateGray"
1002 "dark slate gray"
1003 "black"
1004 "white"
1005 "MistyRose"
1006 "misty rose"
1007 "LavenderBlush"
1008 "lavender blush"
1009 "lavender"
1010 "AliceBlue"
1011 "alice blue"
1012 "azure"
1013 "MintCream"
1014 "mint cream"
1015 "honeydew"
1016 "seashell"
1017 "LemonChiffon"
1018 "lemon chiffon"
1019 "ivory"
1020 "cornsilk"
1021 "moccasin"
1022 "NavajoWhite"
1023 "navajo white"
1024 "PeachPuff"
1025 "peach puff"
1026 "bisque"
1027 "BlanchedAlmond"
1028 "blanched almond"
1029 "PapayaWhip"
1030 "papaya whip"
1031 "AntiqueWhite"
1032 "antique white"
1033 "linen"
1034 "OldLace"
1035 "old lace"
1036 "FloralWhite"
1037 "floral white"
1038 "gainsboro"
1039 "WhiteSmoke"
1040 "white smoke"
1041 "GhostWhite"
1042 "ghost white"
1043 "snow")
1044 "The list of X colors from the `rgb.txt' file.
1045 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1046
1047 (defun xw-defined-colors (&optional frame)
1048 "Internal function called by `defined-colors', which see."
1049 (or frame (setq frame (selected-frame)))
1050 (let ((all-colors x-colors)
1051 (this-color nil)
1052 (defined-colors nil))
1053 (while all-colors
1054 (setq this-color (car all-colors)
1055 all-colors (cdr all-colors))
1056 (and (color-supported-p this-color frame t)
1057 (setq defined-colors (cons this-color defined-colors))))
1058 defined-colors))
1059 \f
1060 ;;;; Function keys
1061
1062 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
1063 global-map)
1064
1065 ;; Map certain keypad keys into ASCII characters
1066 ;; that people usually expect.
1067 (define-key function-key-map [backspace] [?\d])
1068 (define-key function-key-map [delete] [?\d])
1069 (define-key function-key-map [tab] [?\t])
1070 (define-key function-key-map [linefeed] [?\n])
1071 (define-key function-key-map [clear] [?\C-l])
1072 (define-key function-key-map [return] [?\C-m])
1073 (define-key function-key-map [escape] [?\e])
1074 (define-key function-key-map [M-backspace] [?\M-\d])
1075 (define-key function-key-map [M-delete] [?\M-\d])
1076 (define-key function-key-map [M-tab] [?\M-\t])
1077 (define-key function-key-map [M-linefeed] [?\M-\n])
1078 (define-key function-key-map [M-clear] [?\M-\C-l])
1079 (define-key function-key-map [M-return] [?\M-\C-m])
1080 (define-key function-key-map [M-escape] [?\M-\e])
1081
1082 ;; These tell read-char how to convert
1083 ;; these special chars to ASCII.
1084 (put 'backspace 'ascii-character ?\d)
1085 (put 'delete 'ascii-character ?\d)
1086 (put 'tab 'ascii-character ?\t)
1087 (put 'linefeed 'ascii-character ?\n)
1088 (put 'clear 'ascii-character ?\C-l)
1089 (put 'return 'ascii-character ?\C-m)
1090 (put 'escape 'ascii-character ?\e)
1091
1092 ;; Modifier name `ctrl' is an alias of `control'.
1093 (put 'ctrl 'modifier-value (get 'control 'modifier-value))
1094
1095 \f
1096 ;;;; Script codes and coding systems
1097 (defconst mac-script-code-coding-systems
1098 '((0 . mac-roman) ; smRoman
1099 (1 . japanese-shift-jis) ; smJapanese
1100 (2 . chinese-big5) ; smTradChinese
1101 (3 . korean-iso-8bit) ; smKorean
1102 (7 . mac-cyrillic) ; smCyrillic
1103 (25 . chinese-iso-8bit) ; smSimpChinese
1104 (29 . mac-centraleurroman) ; smCentralEuroRoman
1105 )
1106 "Alist of Mac script codes vs Emacs coding systems.")
1107
1108 (defun mac-add-charset-info (xlfd-charset mac-text-encoding)
1109 "Add a character set to display with Mac fonts.
1110 Create an entry in `mac-charset-info-alist'.
1111 XLFD-CHARSET is a string which will appear in the XLFD font name
1112 to identify the character set. MAC-TEXT-ENCODING is the
1113 correspoinding TextEncodingBase value."
1114 (add-to-list 'mac-charset-info-alist
1115 (list xlfd-charset mac-text-encoding
1116 (cdr (assq mac-text-encoding
1117 mac-script-code-coding-systems)))))
1118
1119 (setq mac-charset-info-alist nil)
1120 (mac-add-charset-info "mac-roman" 0)
1121 (mac-add-charset-info "jisx0208.1983-sjis" 1)
1122 (mac-add-charset-info "jisx0201.1976-0" 1)
1123 (mac-add-charset-info "big5-0" 2)
1124 (mac-add-charset-info "ksc5601.1989-0" 3)
1125 (mac-add-charset-info "mac-cyrillic" 7)
1126 (mac-add-charset-info "gb2312.1980-0" 25)
1127 (mac-add-charset-info "mac-centraleurroman" 29)
1128 (mac-add-charset-info "mac-symbol" 33)
1129 (mac-add-charset-info "adobe-fontspecific" 33) ; for X-Symbol
1130 (mac-add-charset-info "mac-dingbats" 34)
1131 (mac-add-charset-info "iso10646-1" 126) ; for ATSUI
1132
1133 (cp-make-coding-system
1134 mac-centraleurroman
1135 [?\\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
1136 ?\\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
1137 ?\\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
1138 ?\\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
1139 ?\\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
1140 ?\\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
1141 ?\\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
1142 ?\\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]
1143 "Mac Central European Roman Encoding (MIME:x-mac-centraleurroman).")
1144 (coding-system-put 'mac-centraleurroman 'mime-charset 'x-mac-centraleurroman)
1145
1146 (cp-make-coding-system
1147 mac-cyrillic
1148 [?\\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
1149 ?\\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
1150 ?\\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
1151 ?\\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
1152 ?\\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
1153 ?\\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
1154 ?\\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
1155 ?\\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]
1156 "Mac Cyrillic Encoding (MIME:x-mac-cyrillic).")
1157 (coding-system-put 'mac-cyrillic 'mime-charset 'x-mac-cyrillic)
1158
1159 (let
1160 ((encoding-vector
1161 (vconcat
1162 (make-vector 32 nil)
1163 ;; mac-symbol (32..126) -> emacs-mule mapping
1164 [?\ ?\! ?\\e$,1x \e(B ?\# ?\\e$,1x#\e(B ?\% ?\& ?\\e$,1x-\e(B ?\( ?\) ?\\e$,1x7\e(B ?\+ ?\, ?\\e$,1x2\e(B ?\. ?\/
1165 ?\0 ?\1 ?\2 ?\3 ?\4 ?\5 ?\6 ?\7 ?\8 ?\9 ?\: ?\; ?\< ?\= ?\> ?\?
1166 ?\\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
1167 ?\\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 ?\_
1168 ?\\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
1169 ?\\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]
1170 (make-vector (- 160 127) nil)
1171 ;; mac-symbol (160..254) -> emacs-mule mapping
1172 ;; Mapping of the following characters are changed from the
1173 ;; original one:
1174 ;; 0xE2 0x00AE+0xF87F -> 0x00AE # REGISTERED SIGN, alternate: sans serif
1175 ;; 0xE3 0x00A9+0xF87F -> 0x00A9 # COPYRIGHT SIGN, alternate: sans serif
1176 ;; 0xE4 0x2122+0xF87F -> 0x2122 # TRADE MARK SIGN, alternate: sans serif
1177 [?\\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
1178 ?\\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
1179 ?\\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
1180 ?\\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
1181 ?\\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
1182 ?\\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
1183 nil]))
1184 translation-table)
1185 (setq translation-table
1186 (make-translation-table-from-vector encoding-vector))
1187 ;; (define-translation-table 'mac-symbol-decoder translation-table)
1188 (define-translation-table 'mac-symbol-encoder
1189 (char-table-extra-slot translation-table 0)))
1190
1191 (let
1192 ((encoding-vector
1193 (vconcat
1194 (make-vector 32 nil)
1195 ;; mac-dingbats (32..126) -> emacs-mule mapping
1196 [?\ ?\\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
1197 ?\\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
1198 ?\\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
1199 ?\\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
1200 ?\\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
1201 ?\\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
1202 nil
1203 ;; mac-dingbats (128..141) -> emacs-mule mapping
1204 ?\\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]
1205 (make-vector (- 161 142) nil)
1206 ;; mac-dingbats (161..239) -> emacs-mule mapping
1207 [?\\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
1208 ?\\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
1209 ?\\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
1210 ?\\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
1211 ?\\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
1212 nil
1213 ;; mac-dingbats (241..254) -> emacs-mule mapping
1214 ?\\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
1215 nil]))
1216 translation-table)
1217 (setq translation-table
1218 (make-translation-table-from-vector encoding-vector))
1219 ;; (define-translation-table 'mac-dingbats-decoder translation-table)
1220 (define-translation-table 'mac-dingbats-encoder
1221 (char-table-extra-slot translation-table 0)))
1222
1223 (defconst mac-system-coding-system
1224 (let ((base (or (cdr (assq mac-system-script-code
1225 mac-script-code-coding-systems))
1226 'mac-roman)))
1227 (if (eq system-type 'darwin)
1228 base
1229 (coding-system-change-eol-conversion base 'mac)))
1230 "Coding system derived from the system script code.")
1231
1232 (set-selection-coding-system mac-system-coding-system)
1233
1234 \f
1235 ;;;; Keyboard layout/language change events
1236 (defun mac-handle-language-change (event)
1237 "Set keyboard coding system to what is specified in EVENT."
1238 (interactive "e")
1239 (let ((coding-system
1240 (cdr (assq (car (cadr event)) mac-script-code-coding-systems))))
1241 (set-keyboard-coding-system (or coding-system 'mac-roman))
1242 ;; MacJapanese maps reverse solidus to ?\x80.
1243 (if (eq coding-system 'japanese-shift-jis)
1244 (define-key key-translation-map [?\x80] "\\"))))
1245
1246 (define-key special-event-map [language-change] 'mac-handle-language-change)
1247
1248 \f
1249 ;;;; Conversion between common flavors and Lisp string.
1250
1251 (defconst mac-text-encoding-mac-japanese-basic-variant #x20001
1252 "MacJapanese text encoding without Apple double-byte extensions.")
1253
1254 (defun mac-utxt-to-string (data &optional coding-system)
1255 (or coding-system (setq coding-system mac-system-coding-system))
1256 (let* ((encoding
1257 (and (eq system-type 'darwin)
1258 (eq (coding-system-base coding-system) 'japanese-shift-jis)
1259 mac-text-encoding-mac-japanese-basic-variant))
1260 (str (and (fboundp 'mac-code-convert-string)
1261 (mac-code-convert-string data nil
1262 (or encoding coding-system)))))
1263 (when str
1264 (setq str (decode-coding-string str coding-system))
1265 (if (eq encoding mac-text-encoding-mac-japanese-basic-variant)
1266 ;; Does it contain Apple one-byte extensions other than
1267 ;; reverse solidus?
1268 (if (string-match "[\xa0\xfd-\xff]" str)
1269 (setq str nil)
1270 ;; ASCII-only?
1271 (unless (string-match "\\`[[:ascii:]]*\\'" str)
1272 (subst-char-in-string ?\x5c ?\\e(J\\e(B str t)
1273 (subst-char-in-string ?\x80 ?\\ str t)))))
1274 (or str
1275 (decode-coding-string data
1276 (if (eq (byteorder) ?B) 'utf-16be 'utf-16le)))))
1277
1278 (defun mac-string-to-utxt (string &optional coding-system)
1279 (or coding-system (setq coding-system mac-system-coding-system))
1280 (let (data encoding)
1281 (when (and (fboundp 'mac-code-convert-string)
1282 (memq (coding-system-base coding-system)
1283 (find-coding-systems-string string)))
1284 (setq coding-system
1285 (coding-system-change-eol-conversion coding-system 'mac))
1286 (when (and (eq system-type 'darwin)
1287 (eq coding-system 'japanese-shift-jis-mac))
1288 (setq encoding mac-text-encoding-mac-japanese-basic-variant)
1289 (setq string (subst-char-in-string ?\\ ?\x80 string))
1290 (subst-char-in-string ?\\e(J\\e(B ?\x5c string t))
1291 (setq data (mac-code-convert-string
1292 (encode-coding-string string coding-system)
1293 (or encoding coding-system) nil)))
1294 (or data (encode-coding-string string (if (eq (byteorder) ?B)
1295 'utf-16be-mac
1296 'utf-16le-mac)))))
1297
1298 (defun mac-TEXT-to-string (data &optional coding-system)
1299 (or coding-system (setq coding-system mac-system-coding-system))
1300 (prog1 (setq data (decode-coding-string data coding-system))
1301 (when (eq (coding-system-base coding-system) 'japanese-shift-jis)
1302 ;; (subst-char-in-string ?\x5c ?\\e(J\\e(B data t)
1303 (subst-char-in-string ?\x80 ?\\ data t))))
1304
1305 (defun mac-string-to-TEXT (string &optional coding-system)
1306 (or coding-system (setq coding-system mac-system-coding-system))
1307 (let ((encodables (find-coding-systems-string string))
1308 (rest mac-script-code-coding-systems))
1309 (unless (memq (coding-system-base coding-system) encodables)
1310 (while (and rest (not (memq (cdar rest) encodables)))
1311 (setq rest (cdr rest)))
1312 (if rest
1313 (setq coding-system (cdar rest)))))
1314 (setq coding-system
1315 (coding-system-change-eol-conversion coding-system 'mac))
1316 (when (eq coding-system 'japanese-shift-jis-mac)
1317 ;; (setq string (subst-char-in-string ?\\ ?\x80 string))
1318 (setq string (subst-char-in-string ?\\e(J\\e(B ?\x5c string)))
1319 (encode-coding-string string coding-system))
1320
1321 (defun mac-furl-to-string (data)
1322 ;; Remove a trailing nul character.
1323 (let ((len (length data)))
1324 (if (and (> len 0) (= (aref data (1- len)) ?\0))
1325 (substring data 0 (1- len))
1326 data)))
1327
1328 (defun mac-TIFF-to-string (data &optional text)
1329 (prog1 (or text (setq text (copy-sequence " ")))
1330 (put-text-property 0 (length text) 'display (create-image data 'tiff t)
1331 text)))
1332 \f
1333 ;;;; Selections
1334
1335 ;;; We keep track of the last text selected here, so we can check the
1336 ;;; current selection against it, and avoid passing back our own text
1337 ;;; from x-get-selection-value.
1338 (defvar x-last-selected-text-clipboard nil
1339 "The value of the CLIPBOARD selection last time we selected or
1340 pasted text.")
1341 (defvar x-last-selected-text-primary nil
1342 "The value of the PRIMARY X selection last time we selected or
1343 pasted text.")
1344
1345 (defcustom x-select-enable-clipboard t
1346 "*Non-nil means cutting and pasting uses the clipboard.
1347 This is in addition to the primary selection."
1348 :type 'boolean
1349 :group 'killing)
1350
1351 ;;; Make TEXT, a string, the primary X selection.
1352 (defun x-select-text (text &optional push)
1353 (x-set-selection 'PRIMARY text)
1354 (setq x-last-selected-text-primary text)
1355 (if (not x-select-enable-clipboard)
1356 (setq x-last-selected-text-clipboard nil)
1357 (x-set-selection 'CLIPBOARD text)
1358 (setq x-last-selected-text-clipboard text))
1359 )
1360
1361 (defun x-get-selection (&optional type data-type)
1362 "Return the value of a selection.
1363 The argument TYPE (default `PRIMARY') says which selection,
1364 and the argument DATA-TYPE (default `STRING') says
1365 how to convert the data.
1366
1367 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
1368 only a few symbols are commonly used. They conventionally have
1369 all upper-case names. The most often used ones, in addition to
1370 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
1371
1372 DATA-TYPE is usually `STRING', but can also be one of the symbols
1373 in `selection-converter-alist', which see."
1374 (let ((data (x-get-selection-internal (or type 'PRIMARY)
1375 (or data-type 'STRING)))
1376 (coding (or next-selection-coding-system
1377 selection-coding-system)))
1378 (when (and (stringp data)
1379 (setq data-type (get-text-property 0 'foreign-selection data)))
1380 (cond ((eq data-type 'public.utf16-plain-text)
1381 (setq data (mac-utxt-to-string data coding)))
1382 ((eq data-type 'com.apple.traditional-mac-plain-text)
1383 (setq data (mac-TEXT-to-string data coding)))
1384 ((eq data-type 'public.file-url)
1385 (setq data (mac-furl-to-string data))))
1386 (put-text-property 0 (length data) 'foreign-selection data-type data))
1387 data))
1388
1389 (defun x-selection-value (type)
1390 (let ((data-types '(public.utf16-plain-text
1391 com.apple.traditional-mac-plain-text
1392 public.file-url))
1393 text tiff-image)
1394 (while (and (null text) data-types)
1395 (setq text (condition-case nil
1396 (x-get-selection type (car data-types))
1397 (error nil)))
1398 (setq data-types (cdr data-types)))
1399 (if text
1400 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
1401 (setq tiff-image (condition-case nil
1402 (x-get-selection type 'public.tiff)
1403 (error nil)))
1404 (when tiff-image
1405 (remove-text-properties 0 (length tiff-image)
1406 '(foreign-selection nil) tiff-image)
1407 (setq text (mac-TIFF-to-string tiff-image text)))
1408 text))
1409
1410 ;;; Return the value of the current selection.
1411 ;;; Treat empty strings as if they were unset.
1412 ;;; If this function is called twice and finds the same text,
1413 ;;; it returns nil the second time. This is so that a single
1414 ;;; selection won't be added to the kill ring over and over.
1415 (defun x-get-selection-value ()
1416 (let (clip-text primary-text)
1417 (if (not x-select-enable-clipboard)
1418 (setq x-last-selected-text-clipboard nil)
1419 (setq clip-text (x-selection-value 'CLIPBOARD))
1420 (if (string= clip-text "") (setq clip-text nil))
1421
1422 ;; Check the CLIPBOARD selection for 'newness', is it different
1423 ;; from what we remebered them to be last time we did a
1424 ;; cut/paste operation.
1425 (setq clip-text
1426 (cond;; check clipboard
1427 ((or (not clip-text) (string= clip-text ""))
1428 (setq x-last-selected-text-clipboard nil))
1429 ((eq clip-text x-last-selected-text-clipboard) nil)
1430 ((string= clip-text x-last-selected-text-clipboard)
1431 ;; Record the newer string,
1432 ;; so subsequent calls can use the `eq' test.
1433 (setq x-last-selected-text-clipboard clip-text)
1434 nil)
1435 (t
1436 (setq x-last-selected-text-clipboard clip-text))))
1437 )
1438
1439 (setq primary-text (x-selection-value 'PRIMARY))
1440 ;; Check the PRIMARY selection for 'newness', is it different
1441 ;; from what we remebered them to be last time we did a
1442 ;; cut/paste operation.
1443 (setq primary-text
1444 (cond;; check primary selection
1445 ((or (not primary-text) (string= primary-text ""))
1446 (setq x-last-selected-text-primary nil))
1447 ((eq primary-text x-last-selected-text-primary) nil)
1448 ((string= primary-text x-last-selected-text-primary)
1449 ;; Record the newer string,
1450 ;; so subsequent calls can use the `eq' test.
1451 (setq x-last-selected-text-primary primary-text)
1452 nil)
1453 (t
1454 (setq x-last-selected-text-primary primary-text))))
1455
1456 ;; As we have done one selection, clear this now.
1457 (setq next-selection-coding-system nil)
1458
1459 ;; At this point we have recorded the current values for the
1460 ;; selection from clipboard (if we are supposed to) and primary,
1461 ;; So return the first one that has changed (which is the first
1462 ;; non-null one).
1463 (or clip-text primary-text)
1464 ))
1465
1466 (put 'CLIPBOARD 'mac-scrap-name "com.apple.scrap.clipboard")
1467 (when (eq system-type 'darwin)
1468 (put 'FIND 'mac-scrap-name "com.apple.scrap.find")
1469 (put 'PRIMARY 'mac-scrap-name
1470 (format "org.gnu.Emacs.%d.selection.PRIMARY" (emacs-pid))))
1471 (put 'com.apple.traditional-mac-plain-text 'mac-ostype "TEXT")
1472 (put 'public.utf16-plain-text 'mac-ostype "utxt")
1473 (put 'public.tiff 'mac-ostype "TIFF")
1474 (put 'public.file-url 'mac-ostype "furl")
1475
1476 (defun mac-select-convert-to-string (selection type value)
1477 (let ((str (cdr (xselect-convert-to-string selection nil value)))
1478 (coding (or next-selection-coding-system selection-coding-system)))
1479 (when str
1480 ;; If TYPE is nil, this is a local request, thus return STR as
1481 ;; is. Otherwise, encode STR.
1482 (if (not type)
1483 str
1484 (let ((inhibit-read-only t))
1485 (remove-text-properties 0 (length str) '(composition nil) str)
1486 (cond
1487 ((eq type 'public.utf16-plain-text)
1488 (setq str (mac-string-to-utxt str coding)))
1489 ((eq type 'com.apple.traditional-mac-plain-text)
1490 (setq str (mac-string-to-TEXT str coding)))
1491 (t
1492 (error "Unknown selection type: %S" type))
1493 )))
1494
1495 (setq next-selection-coding-system nil)
1496 (cons type str))))
1497
1498 (defun mac-select-convert-to-file-url (selection type value)
1499 (let ((filename (xselect-convert-to-filename selection type value))
1500 (coding (or file-name-coding-system default-file-name-coding-system)))
1501 (if (and filename coding)
1502 (setq filename (encode-coding-string filename coding)))
1503 (and filename
1504 (concat "file://localhost"
1505 (mapconcat 'url-hexify-string
1506 (split-string filename "/") "/")))))
1507
1508 (setq selection-converter-alist
1509 (nconc
1510 '((public.utf16-plain-text . mac-select-convert-to-string)
1511 (com.apple.traditional-mac-plain-text . mac-select-convert-to-string)
1512 ;; This is not enabled by default because the `Import Image'
1513 ;; menu makes Emacs crash or hang for unknown reasons.
1514 ;; (public.tiff . nil)
1515 (public.file-url . mac-select-convert-to-file-url)
1516 )
1517 selection-converter-alist))
1518 \f
1519 ;;;; Apple events, HICommand events, and Services menu
1520
1521 ;;; Event classes
1522 (put 'core-event 'mac-apple-event-class "aevt") ; kCoreEventClass
1523 (put 'internet-event 'mac-apple-event-class "GURL") ; kAEInternetEventClass
1524
1525 ;;; Event IDs
1526 ;; kCoreEventClass
1527 (put 'open-application 'mac-apple-event-id "oapp") ; kAEOpenApplication
1528 (put 'reopen-application 'mac-apple-event-id "rapp") ; kAEReopenApplication
1529 (put 'open-documents 'mac-apple-event-id "odoc") ; kAEOpenDocuments
1530 (put 'print-documents 'mac-apple-event-id "pdoc") ; kAEPrintDocuments
1531 (put 'open-contents 'mac-apple-event-id "ocon") ; kAEOpenContents
1532 (put 'quit-application 'mac-apple-event-id "quit") ; kAEQuitApplication
1533 (put 'application-died 'mac-apple-event-id "obit") ; kAEApplicationDied
1534 (put 'show-preferences 'mac-apple-event-id "pref") ; kAEShowPreferences
1535 (put 'autosave-now 'mac-apple-event-id "asav") ; kAEAutosaveNow
1536 ;; kAEInternetEventClass
1537 (put 'get-url 'mac-apple-event-id "GURL") ; kAEGetURL
1538 ;; Converted HICommand events
1539 (put 'about 'mac-apple-event-id "abou") ; kHICommandAbout
1540
1541 (defmacro mac-event-spec (event)
1542 `(nth 1 ,event))
1543
1544 (defmacro mac-event-ae (event)
1545 `(nth 2 ,event))
1546
1547 (defun mac-ae-parameter (ae &optional keyword type)
1548 (or keyword (setq keyword "----")) ;; Direct object.
1549 (if (not (and (consp ae) (equal (car ae) "aevt")))
1550 (error "Not an Apple event: %S" ae)
1551 (let ((type-data (cdr (assoc keyword (cdr ae))))
1552 data)
1553 (when (and type type-data (not (equal type (car type-data))))
1554 (setq data (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1555 (setq type-data (if data (cons type data) nil)))
1556 type-data)))
1557
1558 (defun mac-ae-list (ae &optional keyword type)
1559 (or keyword (setq keyword "----")) ;; Direct object.
1560 (let ((desc (mac-ae-parameter ae keyword "list")))
1561 (cond ((null desc)
1562 nil)
1563 ((not (equal (car desc) "list"))
1564 (error "Parameter for \"%s\" is not a list" keyword))
1565 (t
1566 (if (null type)
1567 (cdr desc)
1568 (mapcar
1569 (lambda (type-data)
1570 (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1571 (cdr desc)))))))
1572
1573 (defun mac-bytes-to-integer (bytes &optional from to)
1574 (or from (setq from 0))
1575 (or to (setq to (length bytes)))
1576 (let* ((len (- to from))
1577 (extended-sign-len (- (1+ (ceiling (log most-positive-fixnum 2)))
1578 (* 8 len)))
1579 (result 0))
1580 (dotimes (i len)
1581 (setq result (logior (lsh result 8)
1582 (aref bytes (+ from (if (eq (byteorder) ?B) i
1583 (- len i 1)))))))
1584 (if (> extended-sign-len 0)
1585 (ash (lsh result extended-sign-len) (- extended-sign-len))
1586 result)))
1587
1588 (defun mac-ae-selection-range (ae)
1589 ;; #pragma options align=mac68k
1590 ;; typedef struct SelectionRange {
1591 ;; short unused1; // 0 (not used)
1592 ;; short lineNum; // line to select (<0 to specify range)
1593 ;; long startRange; // start of selection range (if line < 0)
1594 ;; long endRange; // end of selection range (if line < 0)
1595 ;; long unused2; // 0 (not used)
1596 ;; long theDate; // modification date/time
1597 ;; } SelectionRange;
1598 ;; #pragma options align=reset
1599 (let ((range-bytes (cdr (mac-ae-parameter ae "kpos" "TEXT"))))
1600 (and range-bytes
1601 (list (mac-bytes-to-integer range-bytes 2 4)
1602 (mac-bytes-to-integer range-bytes 4 8)
1603 (mac-bytes-to-integer range-bytes 8 12)
1604 (mac-bytes-to-integer range-bytes 16 20)))))
1605
1606 ;; On Mac OS X 10.4 and later, the `open-document' event contains an
1607 ;; optional parameter keyAESearchText from the Spotlight search.
1608 (defun mac-ae-text-for-search (ae)
1609 (let ((utf8-text (cdr (mac-ae-parameter ae "stxt" "utf8"))))
1610 (and utf8-text
1611 (decode-coding-string utf8-text 'utf-8))))
1612
1613 (defun mac-ae-open-documents (event)
1614 "Open the documents specified by the Apple event EVENT."
1615 (interactive "e")
1616 (let ((ae (mac-event-ae event)))
1617 (dolist (file-name (mac-ae-list ae nil 'undecoded-file-name))
1618 (if file-name
1619 (dnd-open-local-file (concat "file:" file-name) nil)))
1620 (let ((selection-range (mac-ae-selection-range ae))
1621 (search-text (mac-ae-text-for-search ae)))
1622 (cond (selection-range
1623 (let ((line (car selection-range))
1624 (start (cadr selection-range))
1625 (end (nth 2 selection-range)))
1626 (if (> line 0)
1627 (goto-line line)
1628 (if (and (> start 0) (> end 0))
1629 (progn (set-mark start)
1630 (goto-char end))))))
1631 ((stringp search-text)
1632 (re-search-forward
1633 (mapconcat 'regexp-quote (split-string search-text) "\\|")
1634 nil t)))))
1635 (select-frame-set-input-focus (selected-frame)))
1636
1637 (defun mac-ae-text (ae)
1638 (or (cdr (mac-ae-parameter ae nil "TEXT"))
1639 (error "No text in Apple event.")))
1640
1641 (defun mac-ae-get-url (event)
1642 "Open the URL specified by the Apple event EVENT.
1643 Currently the `mailto' scheme is supported."
1644 (interactive "e")
1645 (let* ((ae (mac-event-ae event))
1646 (parsed-url (url-generic-parse-url (mac-ae-text ae))))
1647 (if (string= (url-type parsed-url) "mailto")
1648 (url-mailto parsed-url)
1649 (error "Unsupported URL scheme: %s" (url-type parsed-url)))))
1650
1651 (setq mac-apple-event-map (make-sparse-keymap))
1652
1653 ;; Received when Emacs is launched without associated documents.
1654 ;; Accept it as an Apple event, but no Emacs event is generated so as
1655 ;; not to erase the splash screen.
1656 (define-key mac-apple-event-map [core-event open-application] 0)
1657
1658 ;; Received when a dock or application icon is clicked and Emacs is
1659 ;; already running. Simply ignored. Another idea is to make a new
1660 ;; frame if all frames are invisible.
1661 (define-key mac-apple-event-map [core-event reopen-application] 'ignore)
1662
1663 (define-key mac-apple-event-map [core-event open-documents]
1664 'mac-ae-open-documents)
1665 (define-key mac-apple-event-map [core-event show-preferences] 'customize)
1666 (define-key mac-apple-event-map [core-event quit-application]
1667 'save-buffers-kill-emacs)
1668
1669 (define-key mac-apple-event-map [internet-event get-url] 'mac-ae-get-url)
1670
1671 (define-key mac-apple-event-map [hicommand about] 'display-splash-screen)
1672
1673 ;;; Converted Carbon Events
1674 (defun mac-handle-toolbar-switch-mode (event)
1675 "Toggle visibility of tool-bars in response to EVENT.
1676 With no keyboard modifiers, it toggles the visibility of the
1677 frame where the tool-bar toggle button was pressed. With some
1678 modifiers, it changes global tool-bar visibility setting."
1679 (interactive "e")
1680 (let* ((ae (mac-event-ae event))
1681 (modifiers (cdr (mac-ae-parameter ae "kmod"))))
1682 (if (and modifiers (not (string= modifiers "\000\000\000\000")))
1683 ;; Globally toggle tool-bar-mode if some modifier key is pressed.
1684 (tool-bar-mode)
1685 (let ((window-id
1686 (mac-coerce-ae-data "long" (cdr (mac-ae-parameter ae)) "TEXT"))
1687 (rest (frame-list))
1688 frame)
1689 (while (and (null frame) rest)
1690 (if (string= (frame-parameter (car rest) 'window-id) window-id)
1691 (setq frame (car rest)))
1692 (setq rest (cdr rest)))
1693 (set-frame-parameter frame 'tool-bar-lines
1694 (if (= (frame-parameter frame 'tool-bar-lines) 0)
1695 1 0))))))
1696
1697 ;; kEventClassWindow/kEventWindowToolbarSwitchMode
1698 (define-key mac-apple-event-map [window toolbar-switch-mode]
1699 'mac-handle-toolbar-switch-mode)
1700
1701 ;;; Font panel
1702 (when (fboundp 'mac-set-font-panel-visibility)
1703
1704 (define-minor-mode mac-font-panel-mode
1705 "Toggle use of the font panel.
1706 With numeric ARG, display the font panel if and only if ARG is positive."
1707 :init-value nil
1708 :global t
1709 :group 'mac
1710 (mac-set-font-panel-visibility mac-font-panel-mode))
1711
1712 (defun mac-handle-font-panel-closed (event)
1713 "Update internal status in response to font panel closed EVENT."
1714 (interactive "e")
1715 ;; Synchronize with the minor mode variable.
1716 (mac-font-panel-mode 0))
1717
1718 (defun mac-handle-font-selection (event)
1719 "Change default face attributes according to font selection EVENT."
1720 (interactive "e")
1721 (let* ((ae (mac-event-ae event))
1722 (fm-font-size (cdr (mac-ae-parameter ae "fmsz")))
1723 (atsu-font-id (cdr (mac-ae-parameter ae "auid")))
1724 (attribute-values (gethash atsu-font-id mac-atsu-font-table)))
1725 (if fm-font-size
1726 (setq attribute-values
1727 `(:height ,(* 10 (mac-bytes-to-integer fm-font-size))
1728 ,@attribute-values)))
1729 (apply 'set-face-attribute 'default (selected-frame) attribute-values)))
1730
1731 ;; kEventClassFont/kEventFontPanelClosed
1732 (define-key mac-apple-event-map [font panel-closed]
1733 'mac-handle-font-panel-closed)
1734 ;; kEventClassFont/kEventFontSelection
1735 (define-key mac-apple-event-map [font selection] 'mac-handle-font-selection)
1736
1737 (define-key-after menu-bar-showhide-menu [mac-font-panel-mode]
1738 (menu-bar-make-mm-toggle mac-font-panel-mode
1739 "Font Panel"
1740 "Show the font panel as a floating dialog")
1741 'showhide-speedbar)
1742
1743 ) ;; (fboundp 'mac-set-font-panel-visibility)
1744
1745 ;;; Services
1746 (defun mac-service-open-file ()
1747 "Open the file specified by the selection value for Services."
1748 (interactive)
1749 (find-file-existing (x-selection-value mac-service-selection)))
1750
1751 (defun mac-service-open-selection ()
1752 "Create a new buffer containing the selection value for Services."
1753 (interactive)
1754 (switch-to-buffer (generate-new-buffer "*untitled*"))
1755 (insert (x-selection-value mac-service-selection))
1756 (sit-for 0)
1757 (save-buffer) ; It pops up the save dialog.
1758 )
1759
1760 (defun mac-service-mail-selection ()
1761 "Prepare a mail buffer containing the selection value for Services."
1762 (interactive)
1763 (compose-mail)
1764 (rfc822-goto-eoh)
1765 (forward-line 1)
1766 (insert (x-selection-value mac-service-selection) "\n"))
1767
1768 (defun mac-service-mail-to ()
1769 "Prepare a mail buffer to be sent to the selection value for Services."
1770 (interactive)
1771 (compose-mail (x-selection-value mac-service-selection)))
1772
1773 (defun mac-service-insert-text ()
1774 "Insert the selection value for Services."
1775 (interactive)
1776 (let ((text (x-selection-value mac-service-selection)))
1777 (if (not buffer-read-only)
1778 (insert text)
1779 (kill-new text)
1780 (message
1781 (substitute-command-keys
1782 "The text from the Services menu can be accessed with \\[yank]")))))
1783
1784 ;; kEventClassService/kEventServicePaste
1785 (define-key mac-apple-event-map [service paste] 'mac-service-insert-text)
1786 ;; kEventClassService/kEventServicePerform
1787 (define-key mac-apple-event-map [service perform open-file]
1788 'mac-service-open-file)
1789 (define-key mac-apple-event-map [service perform open-selection]
1790 'mac-service-open-selection)
1791 (define-key mac-apple-event-map [service perform mail-selection]
1792 'mac-service-mail-selection)
1793 (define-key mac-apple-event-map [service perform mail-to]
1794 'mac-service-mail-to)
1795
1796 (defun mac-dispatch-apple-event (event)
1797 "Dispatch EVENT according to the keymap `mac-apple-event-map'."
1798 (interactive "e")
1799 (let* ((binding (lookup-key mac-apple-event-map (mac-event-spec event)))
1800 (service-message
1801 (and (keymapp binding)
1802 (cdr (mac-ae-parameter (mac-event-ae event) "svmg")))))
1803 (when service-message
1804 (setq service-message
1805 (intern (decode-coding-string service-message 'utf-8)))
1806 (setq binding (lookup-key binding (vector service-message))))
1807 ;; Replace (cadr event) with a dummy position so that event-start
1808 ;; returns it.
1809 (setcar (cdr event) (list (selected-window) (point) '(0 . 0) 0))
1810 (call-interactively binding)))
1811
1812 (global-set-key [mac-apple-event] 'mac-dispatch-apple-event)
1813
1814 ;; Processing of Apple events are deferred at the startup time. For
1815 ;; example, files dropped onto the Emacs application icon can only be
1816 ;; processed when the initial frame has been created: this is where
1817 ;; the files should be opened.
1818 (add-hook 'after-init-hook 'mac-process-deferred-apple-events)
1819
1820 \f
1821 ;;;; Drag and drop
1822
1823 (defcustom mac-dnd-types-alist
1824 '(("furl" . mac-dnd-handle-furl)
1825 ("hfs " . mac-dnd-handle-hfs)
1826 ("utxt" . mac-dnd-insert-utxt)
1827 ("TEXT" . mac-dnd-insert-TEXT)
1828 ("TIFF" . mac-dnd-insert-TIFF))
1829 "Which function to call to handle a drop of that type.
1830 The function takes three arguments, WINDOW, ACTION and DATA.
1831 WINDOW is where the drop occured, ACTION is always `private' on
1832 Mac. DATA is the drop data. Unlike the x-dnd counterpart, the
1833 return value of the function is not significant.
1834
1835 See also `mac-dnd-known-types'."
1836 :version "22.1"
1837 :type 'alist
1838 :group 'mac)
1839
1840 (defun mac-dnd-handle-furl (window action data)
1841 (dnd-handle-one-url window action (mac-furl-to-string data)))
1842
1843 (defun mac-dnd-handle-hfs (window action data)
1844 ;; struct HFSFlavor {
1845 ;; OSType fileType;
1846 ;; OSType fileCreator;
1847 ;; UInt16 fdFlags;
1848 ;; FSSpec fileSpec;
1849 ;; };
1850 (let* ((file-name (mac-coerce-ae-data "fss " (substring data 10)
1851 'undecoded-file-name))
1852 (url (concat "file://"
1853 (mapconcat 'url-hexify-string
1854 (split-string file-name "/") "/"))))
1855 (dnd-handle-one-url window action url)))
1856
1857 (defun mac-dnd-insert-utxt (window action data)
1858 (dnd-insert-text window action (mac-utxt-to-string data)))
1859
1860 (defun mac-dnd-insert-TEXT (window action data)
1861 (dnd-insert-text window action (mac-TEXT-to-string data)))
1862
1863 (defun mac-dnd-insert-TIFF (window action data)
1864 (dnd-insert-text window action (mac-TIFF-to-string data)))
1865
1866 (defun mac-dnd-drop-data (event frame window data type)
1867 (let* ((type-info (assoc type mac-dnd-types-alist))
1868 (handler (cdr type-info))
1869 (action 'private)
1870 (w (posn-window (event-start event))))
1871 (when handler
1872 (if (and (windowp w) (window-live-p w)
1873 (not (window-minibuffer-p w))
1874 (not (window-dedicated-p w)))
1875 ;; If dropping in an ordinary window which we could use,
1876 ;; let dnd-open-file-other-window specify what to do.
1877 (progn
1878 (goto-char (posn-point (event-start event)))
1879 (funcall handler window action data))
1880 ;; If we can't display the file here,
1881 ;; make a new window for it.
1882 (let ((dnd-open-file-other-window t))
1883 (select-frame frame)
1884 (funcall handler window action data))))))
1885
1886 (defun mac-dnd-handle-drag-n-drop-event (event)
1887 "Receive drag and drop events."
1888 (interactive "e")
1889 (let ((window (posn-window (event-start event))))
1890 (when (windowp window) (select-window window))
1891 (dolist (item (mac-ae-list (mac-event-ae event)))
1892 (if (not (equal (car item) "null"))
1893 (mac-dnd-drop-data event (selected-frame) window
1894 (cdr item) (car item)))))
1895 (select-frame-set-input-focus (selected-frame)))
1896 \f
1897 ;;; Do the actual Windows setup here; the above code just defines
1898 ;;; functions and variables that we use now.
1899
1900 (setq command-line-args (x-handle-args command-line-args))
1901
1902 ;;; Make sure we have a valid resource name.
1903 (or (stringp x-resource-name)
1904 (let (i)
1905 (setq x-resource-name (invocation-name))
1906
1907 ;; Change any . or * characters in x-resource-name to hyphens,
1908 ;; so as not to choke when we use it in X resource queries.
1909 (while (setq i (string-match "[.*]" x-resource-name))
1910 (aset x-resource-name i ?-))))
1911
1912 (if (x-display-list)
1913 ;; On Mac OS 8/9, Most coding systems used in code conversion for
1914 ;; font names are not ready at the time when the terminal frame is
1915 ;; created. So we reconstruct font name table for the initial
1916 ;; frame.
1917 (mac-clear-font-name-table)
1918 (x-open-connection "Mac"
1919 x-command-line-resources
1920 ;; Exit Emacs with fatal error if this fails.
1921 t))
1922
1923 (setq frame-creation-function 'x-create-frame-with-faces)
1924
1925 (defvar mac-font-encoder-list
1926 '(("mac-roman" mac-roman-encoder
1927 ccl-encode-mac-roman-font "%s")
1928 ("mac-centraleurroman" encode-mac-centraleurroman
1929 ccl-encode-mac-centraleurroman-font "%s ce")
1930 ("mac-cyrillic" encode-mac-cyrillic
1931 ccl-encode-mac-cyrillic-font "%s cy")
1932 ("mac-symbol" mac-symbol-encoder
1933 ccl-encode-mac-symbol-font "symbol")
1934 ("mac-dingbats" mac-dingbats-encoder
1935 ccl-encode-mac-dingbats-font "zapf dingbats")))
1936
1937 (let ((encoder-list
1938 (mapcar (lambda (lst) (nth 1 lst)) mac-font-encoder-list))
1939 (charset-list
1940 '(latin-iso8859-2
1941 latin-iso8859-3 latin-iso8859-4
1942 cyrillic-iso8859-5 greek-iso8859-7 hebrew-iso8859-8
1943 latin-iso8859-9 latin-iso8859-14 latin-iso8859-15)))
1944 (dolist (encoder encoder-list)
1945 (let ((table (get encoder 'translation-table)))
1946 (dolist (charset charset-list)
1947 (dotimes (i 96)
1948 (let* ((c (make-char charset (+ i 32)))
1949 (mu (aref ucs-mule-to-mule-unicode c))
1950 (mac-encoded (and mu (aref table mu))))
1951 (if mac-encoded
1952 (aset table c mac-encoded))))))))
1953
1954 ;; We assume none of official dim2 charsets (0x90..0x99) are encoded
1955 ;; to these fonts.
1956
1957 (define-ccl-program ccl-encode-mac-roman-font
1958 `(0
1959 (if (r0 <= ?\xef)
1960 (translate-character mac-roman-encoder r0 r1)
1961 ((r1 <<= 7)
1962 (r1 |= r2)
1963 (translate-character mac-roman-encoder r0 r1))))
1964 "CCL program for Mac Roman font")
1965
1966 (define-ccl-program ccl-encode-mac-centraleurroman-font
1967 `(0
1968 (if (r0 <= ?\xef)
1969 (translate-character encode-mac-centraleurroman r0 r1)
1970 ((r1 <<= 7)
1971 (r1 |= r2)
1972 (translate-character encode-mac-centraleurroman r0 r1))))
1973 "CCL program for Mac Central European Roman font")
1974
1975 (define-ccl-program ccl-encode-mac-cyrillic-font
1976 `(0
1977 (if (r0 <= ?\xef)
1978 (translate-character encode-mac-cyrillic r0 r1)
1979 ((r1 <<= 7)
1980 (r1 |= r2)
1981 (translate-character encode-mac-cyrillic r0 r1))))
1982 "CCL program for Mac Cyrillic font")
1983
1984 (define-ccl-program ccl-encode-mac-symbol-font
1985 `(0
1986 (if (r0 <= ?\xef)
1987 (translate-character mac-symbol-encoder r0 r1)
1988 ((r1 <<= 7)
1989 (r1 |= r2)
1990 (translate-character mac-symbol-encoder r0 r1))))
1991 "CCL program for Mac Symbol font")
1992
1993 (define-ccl-program ccl-encode-mac-dingbats-font
1994 `(0
1995 (if (r0 <= ?\xef)
1996 (translate-character mac-dingbats-encoder r0 r1)
1997 ((r1 <<= 7)
1998 (r1 |= r2)
1999 (translate-character mac-dingbats-encoder r0 r1))))
2000 "CCL program for Mac Dingbats font")
2001
2002
2003 (setq font-ccl-encoder-alist
2004 (nconc
2005 (mapcar (lambda (lst) (cons (nth 0 lst) (nth 2 lst)))
2006 mac-font-encoder-list)
2007 font-ccl-encoder-alist))
2008
2009 (defconst mac-char-fontspec-list
2010 ;; Directly operate on a char-table instead of a fontset so that it
2011 ;; may not create a dummy fontset.
2012 (let ((template (make-char-table 'fontset)))
2013 (dolist
2014 (font-encoder
2015 (nreverse
2016 (mapcar (lambda (lst)
2017 (cons (cons (nth 3 lst) (nth 0 lst)) (nth 1 lst)))
2018 mac-font-encoder-list)))
2019 (let ((font (car font-encoder))
2020 (encoder (cdr font-encoder)))
2021 (map-char-table
2022 (lambda (key val)
2023 (or (null val)
2024 (generic-char-p key)
2025 (memq (char-charset key)
2026 '(ascii eight-bit-control eight-bit-graphic))
2027 (aset template key font)))
2028 (get encoder 'translation-table))))
2029
2030 ;; Like fontset-info, but extend a range only if its "to" part is
2031 ;; the predecessor of the current char.
2032 (let* ((last '((0 nil)))
2033 (accumulator last)
2034 last-char-or-range last-char last-elt)
2035 (map-char-table
2036 (lambda (char elt)
2037 (when elt
2038 (setq last-char-or-range (car (car last))
2039 last-char (if (consp last-char-or-range)
2040 (cdr last-char-or-range)
2041 last-char-or-range)
2042 last-elt (cdr (car last)))
2043 (if (and (eq elt last-elt)
2044 (= char (1+ last-char))
2045 (eq (char-charset char) (char-charset last-char)))
2046 (if (consp last-char-or-range)
2047 (setcdr last-char-or-range char)
2048 (setcar (car last) (cons last-char char)))
2049 (setcdr last (list (cons char elt)))
2050 (setq last (cdr last)))))
2051 template)
2052 (cdr accumulator))))
2053
2054 (defun fontset-add-mac-fonts (fontset &optional base-family)
2055 "Add font-specs for Mac fonts to FONTSET.
2056 The added font-specs are determined by BASE-FAMILY and the value
2057 of `mac-char-fontspec-list', which is a list
2058 of (CHARACTER-OR-RANGE . (FAMILY-FORMAT . REGISTRY)). If
2059 BASE-FAMILY is nil, the font family in the added font-specs is
2060 also nil. If BASE-FAMILY is a string, `%s' in FAMILY-FORMAT is
2061 replaced with the string. Otherwise, `%s' in FAMILY-FORMAT is
2062 replaced with the ASCII font family name in FONTSET."
2063 (if base-family
2064 (if (stringp base-family)
2065 (setq base-family (downcase base-family))
2066 (let ((ascii-font (fontset-font fontset (charset-id 'ascii))))
2067 (if ascii-font
2068 (setq base-family
2069 (aref (x-decompose-font-name
2070 (downcase (x-resolve-font-name ascii-font)))
2071 xlfd-regexp-family-subnum))))))
2072 (let (fontspec-cache fontspec)
2073 (dolist (char-fontspec mac-char-fontspec-list)
2074 (setq fontspec (cdr (assq (cdr char-fontspec) fontspec-cache)))
2075 (when (null fontspec)
2076 (setq fontspec
2077 (cons (and base-family
2078 (format (car (cdr char-fontspec)) base-family))
2079 (cdr (cdr char-fontspec))))
2080 (setq fontspec-cache (cons (cons (cdr char-fontspec) fontspec)
2081 fontspec-cache)))
2082 (set-fontset-font fontset (car char-fontspec) fontspec))))
2083
2084 (defun create-fontset-from-mac-roman-font (font &optional resolved-font
2085 fontset-name)
2086 "Create a fontset from a Mac roman font FONT.
2087
2088 Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If
2089 omitted, `x-resolve-font-name' is called to get the resolved name. At
2090 this time, if FONT is not available, error is signaled.
2091
2092 Optional 2nd arg FONTSET-NAME is a string to be used in
2093 `<CHARSET_ENCODING>' fields of a new fontset name. If it is omitted,
2094 an appropriate name is generated automatically.
2095
2096 It returns a name of the created fontset."
2097 (let ((fontset
2098 (create-fontset-from-ascii-font font resolved-font fontset-name)))
2099 (fontset-add-mac-fonts fontset t)
2100 fontset))
2101
2102 ;; Adjust Courier font specifications in x-fixed-font-alist.
2103 (let ((courier-fonts (assoc "Courier" x-fixed-font-alist)))
2104 (if courier-fonts
2105 (dolist (label-fonts (cdr courier-fonts))
2106 (setcdr label-fonts
2107 (mapcar
2108 (lambda (font)
2109 (if (string-match "\\`-adobe-courier-\\([^-]*\\)-\\(.\\)-\\(.*\\)-iso8859-1\\'" font)
2110 (replace-match
2111 (if (string= (match-string 2 font) "o")
2112 "-*-courier-\\1-i-\\3-*-*"
2113 "-*-courier-\\1-\\2-\\3-*-*")
2114 t nil font)
2115 font))
2116 (cdr label-fonts))))))
2117
2118 ;; Setup the default fontset.
2119 (setup-default-fontset)
2120 (cond ((x-list-fonts "*-iso10646-1")
2121 ;; Use ATSUI (if available) for the following charsets.
2122 (dolist
2123 (charset '(latin-iso8859-1
2124 latin-iso8859-2 latin-iso8859-3 latin-iso8859-4
2125 thai-tis620 greek-iso8859-7 arabic-iso8859-6
2126 hebrew-iso8859-8 cyrillic-iso8859-5
2127 latin-iso8859-9 latin-iso8859-15 latin-iso8859-14
2128 japanese-jisx0212 chinese-sisheng ipa
2129 vietnamese-viscii-lower vietnamese-viscii-upper
2130 lao ethiopic tibetan))
2131 (set-fontset-font nil charset '(nil . "iso10646-1"))))
2132 ((null (x-list-fonts "*-iso8859-1"))
2133 ;; Add Mac-encoding fonts unless ETL fonts are installed.
2134 (fontset-add-mac-fonts "fontset-default")))
2135
2136 ;; Create a fontset that uses mac-roman font. With this fontset,
2137 ;; characters decoded from mac-roman encoding (ascii, latin-iso8859-1,
2138 ;; and mule-unicode-xxxx-yyyy) are displayed by a mac-roman font.
2139 (create-fontset-from-fontset-spec
2140 "-etl-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard,
2141 ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman")
2142 (fontset-add-mac-fonts "fontset-standard" t)
2143
2144 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
2145 (create-fontset-from-x-resource)
2146
2147 ;; Try to create a fontset from a font specification which comes
2148 ;; from initial-frame-alist, default-frame-alist, or X resource.
2149 ;; A font specification in command line argument (i.e. -fn XXXX)
2150 ;; should be already in default-frame-alist as a `font'
2151 ;; parameter. However, any font specifications in site-start
2152 ;; library, user's init file (.emacs), and default.el are not
2153 ;; yet handled here.
2154
2155 (let ((font (or (cdr (assq 'font initial-frame-alist))
2156 (cdr (assq 'font default-frame-alist))
2157 (x-get-resource "font" "Font")))
2158 xlfd-fields resolved-name)
2159 (if (and font
2160 (not (query-fontset font))
2161 (setq resolved-name (x-resolve-font-name font))
2162 (setq xlfd-fields (x-decompose-font-name font)))
2163 (if (string= "fontset" (aref xlfd-fields xlfd-regexp-registry-subnum))
2164 (new-fontset font (x-complement-fontset-spec xlfd-fields nil))
2165 ;; Create a fontset from FONT. The fontset name is
2166 ;; generated from FONT.
2167 (if (and (string= "mac" (aref xlfd-fields xlfd-regexp-registry-subnum))
2168 (string= "roman" (aref xlfd-fields xlfd-regexp-encoding-subnum)))
2169 (create-fontset-from-mac-roman-font font resolved-name "startup")
2170 (create-fontset-from-ascii-font font resolved-name "startup")))))
2171
2172 ;; Apply a geometry resource to the initial frame. Put it at the end
2173 ;; of the alist, so that anything specified on the command line takes
2174 ;; precedence.
2175 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
2176 parsed)
2177 (if res-geometry
2178 (progn
2179 (setq parsed (x-parse-geometry res-geometry))
2180 ;; If the resource specifies a position,
2181 ;; call the position and size "user-specified".
2182 (if (or (assq 'top parsed) (assq 'left parsed))
2183 (setq parsed (cons '(user-position . t)
2184 (cons '(user-size . t) parsed))))
2185 ;; All geometry parms apply to the initial frame.
2186 (setq initial-frame-alist (append initial-frame-alist parsed))
2187 ;; The size parms apply to all frames.
2188 (if (assq 'height parsed)
2189 (setq default-frame-alist
2190 (cons (cons 'height (cdr (assq 'height parsed)))
2191 default-frame-alist)))
2192 (if (assq 'width parsed)
2193 (setq default-frame-alist
2194 (cons (cons 'width (cdr (assq 'width parsed)))
2195 default-frame-alist))))))
2196
2197 ;; Check the reverseVideo resource.
2198 (let ((case-fold-search t))
2199 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
2200 (if (and rv
2201 (string-match "^\\(true\\|yes\\|on\\)$" rv))
2202 (setq default-frame-alist
2203 (cons '(reverse . t) default-frame-alist)))))
2204
2205 (defun x-win-suspend-error ()
2206 (error "Suspending an Emacs running under Mac makes no sense"))
2207 (add-hook 'suspend-hook 'x-win-suspend-error)
2208
2209 ;;; Arrange for the kill and yank functions to set and check the clipboard.
2210 (setq interprogram-cut-function 'x-select-text)
2211 (setq interprogram-paste-function 'x-get-selection-value)
2212
2213 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
2214
2215 ;;; Turn off window-splitting optimization; Mac is usually fast enough
2216 ;;; that this is only annoying.
2217 (setq split-window-keep-point t)
2218
2219 ;; Don't show the frame name; that's redundant.
2220 (setq-default mode-line-frame-identification " ")
2221
2222 ;; Turn on support for mouse wheels.
2223 (mouse-wheel-mode 1)
2224
2225
2226 ;; Enable CLIPBOARD copy/paste through menu bar commands.
2227 (menu-bar-enable-clipboard)
2228
2229 ;; Initiate drag and drop
2230
2231 (global-set-key [drag-n-drop] 'mac-dnd-handle-drag-n-drop-event)
2232 (global-set-key [M-drag-n-drop] 'mac-dnd-handle-drag-n-drop-event)
2233
2234 \f
2235 ;;;; Non-toolkit Scroll bars
2236
2237 (unless x-toolkit-scroll-bars
2238
2239 ;; for debugging
2240 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
2241
2242 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
2243
2244 (global-set-key
2245 [vertical-scroll-bar down-mouse-1]
2246 'mac-handle-scroll-bar-event)
2247
2248 (global-unset-key [vertical-scroll-bar drag-mouse-1])
2249 (global-unset-key [vertical-scroll-bar mouse-1])
2250
2251 (defun mac-handle-scroll-bar-event (event)
2252 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
2253 (interactive "e")
2254 (let* ((position (event-start event))
2255 (window (nth 0 position))
2256 (bar-part (nth 4 position)))
2257 (select-window window)
2258 (cond
2259 ((eq bar-part 'up)
2260 (goto-char (window-start window))
2261 (mac-scroll-down-line))
2262 ((eq bar-part 'above-handle)
2263 (mac-scroll-down))
2264 ((eq bar-part 'handle)
2265 (scroll-bar-drag event))
2266 ((eq bar-part 'below-handle)
2267 (mac-scroll-up))
2268 ((eq bar-part 'down)
2269 (goto-char (window-start window))
2270 (mac-scroll-up-line)))))
2271
2272 (defun mac-scroll-ignore-events ()
2273 ;; Ignore confusing non-mouse events
2274 (while (not (memq (car-safe (read-event))
2275 '(mouse-1 double-mouse-1 triple-mouse-1))) nil))
2276
2277 (defun mac-scroll-down ()
2278 (track-mouse
2279 (mac-scroll-ignore-events)
2280 (scroll-down)))
2281
2282 (defun mac-scroll-down-line ()
2283 (track-mouse
2284 (mac-scroll-ignore-events)
2285 (scroll-down 1)))
2286
2287 (defun mac-scroll-up ()
2288 (track-mouse
2289 (mac-scroll-ignore-events)
2290 (scroll-up)))
2291
2292 (defun mac-scroll-up-line ()
2293 (track-mouse
2294 (mac-scroll-ignore-events)
2295 (scroll-up 1)))
2296
2297 )
2298
2299 \f
2300 ;;;; Others
2301
2302 (unless (eq system-type 'darwin)
2303 ;; This variable specifies the Unix program to call (as a process) to
2304 ;; determine the amount of free space on a file system (defaults to
2305 ;; df). If it is not set to nil, ls-lisp will not work correctly
2306 ;; unless an external application df is implemented on the Mac.
2307 (setq directory-free-space-program nil)
2308
2309 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
2310 ;; expand filenames Note no subprocess for the shell is actually
2311 ;; started (see run_mac_command in sysdep.c).
2312 (setq shell-file-name "sh")
2313
2314 ;; Some system variables are encoded with the system script code.
2315 (dolist (v '(system-name
2316 emacs-build-system ; Mac OS 9 version cannot dump
2317 user-login-name user-real-login-name user-full-name))
2318 (set v (decode-coding-string (symbol-value v) mac-system-coding-system))))
2319
2320 ;; Now the default directory is changed to the user's home directory
2321 ;; in emacs.c if invoked from the WindowServer (with -psn_* option).
2322 ;; (if (string= default-directory "/")
2323 ;; (cd "~"))
2324
2325 ;; Darwin 6- pty breakage is now controlled from the C code so that
2326 ;; it applies to all builds on darwin. See s/darwin.h PTY_ITERATION.
2327 ;; (setq process-connection-type t)
2328
2329 ;; Assume that fonts are always scalable on the Mac. This sometimes
2330 ;; results in characters with jagged edges. However, without it,
2331 ;; fonts with both truetype and bitmap representations but no italic
2332 ;; or bold bitmap versions will not display these variants correctly.
2333 (setq scalable-fonts-allowed t)
2334
2335 ;; arch-tag: 71dfcd14-cde8-4d66-b05c-85ec94fb23a6
2336 ;;; mac-win.el ends here