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