]> code.delx.au - gnu-emacs/blob - lisp/term/mac-win.el
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-13
[gnu-emacs] / lisp / term / mac-win.el
1 ;;; mac-win.el --- parse switches controlling interface with Mac window system -*-coding: utf-8
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 (defconst mac-system-coding-system
1107 (let ((base (or (cdr (assq mac-system-script-code
1108 mac-script-code-coding-systems))
1109 'mac-roman)))
1110 (if (eq system-type 'darwin)
1111 base
1112 (coding-system-change-eol-conversion base 'mac)))
1113 "Coding system derived from the system script code.")
1114
1115 (defun mac-add-charset-info (xlfd-charset mac-text-encoding)
1116 "Add a character set to display with Mac fonts.
1117 Create an entry in `mac-charset-info-alist'.
1118 XLFD-CHARSET is a string which will appear in the XLFD font name
1119 to identify the character set. MAC-TEXT-ENCODING is the
1120 correspoinding TextEncodingBase value."
1121 (add-to-list 'mac-charset-info-alist
1122 (list xlfd-charset mac-text-encoding
1123 (cdr (assq mac-text-encoding
1124 mac-script-code-coding-systems)))))
1125
1126 (setq mac-charset-info-alist nil)
1127 (mac-add-charset-info "mac-roman" 0)
1128 (mac-add-charset-info "jisx0208.1983-sjis" 1)
1129 (mac-add-charset-info "jisx0201.1976-0" 1)
1130 (mac-add-charset-info "big5-0" 2)
1131 (mac-add-charset-info "ksc5601.1989-0" 3)
1132 (mac-add-charset-info "mac-cyrillic" 7)
1133 (mac-add-charset-info "gb2312.1980-0" 25)
1134 (mac-add-charset-info "mac-centraleurroman" 29)
1135 (mac-add-charset-info "mac-symbol" 33)
1136 (mac-add-charset-info "adobe-fontspecific" 33) ; for X-Symbol
1137 (mac-add-charset-info "mac-dingbats" 34)
1138 (mac-add-charset-info "iso10646-1" 126) ; for ATSUI
1139
1140 \f
1141 ;;;; Keyboard layout/language change events
1142 (defun mac-handle-language-change (event)
1143 "Set keyboard coding system to what is specified in EVENT."
1144 (interactive "e")
1145 (let ((coding-system
1146 (cdr (assq (car (cadr event)) mac-script-code-coding-systems))))
1147 (set-keyboard-coding-system (or coding-system 'mac-roman))
1148 ;; MacJapanese maps reverse solidus to ?\x80.
1149 (if (eq coding-system 'japanese-shift-jis)
1150 (define-key key-translation-map [?\x80] "\\"))))
1151
1152 (define-key special-event-map [language-change] 'mac-handle-language-change)
1153 \f
1154 ;;;; Selections
1155
1156 ;; Setup to use the Mac clipboard.
1157 (set-selection-coding-system mac-system-coding-system)
1158
1159 ;;; We keep track of the last text selected here, so we can check the
1160 ;;; current selection against it, and avoid passing back our own text
1161 ;;; from x-get-selection-value.
1162 (defvar x-last-selected-text-clipboard nil
1163 "The value of the CLIPBOARD selection last time we selected or
1164 pasted text.")
1165 (defvar x-last-selected-text-primary nil
1166 "The value of the PRIMARY X selection last time we selected or
1167 pasted text.")
1168
1169 (defcustom x-select-enable-clipboard t
1170 "*Non-nil means cutting and pasting uses the clipboard.
1171 This is in addition to the primary selection."
1172 :type 'boolean
1173 :group 'killing)
1174
1175 ;;; Make TEXT, a string, the primary X selection.
1176 (defun x-select-text (text &optional push)
1177 (x-set-selection 'PRIMARY text)
1178 (setq x-last-selected-text-primary text)
1179 (if (not x-select-enable-clipboard)
1180 (setq x-last-selected-text-clipboard nil)
1181 (x-set-selection 'CLIPBOARD text)
1182 (setq x-last-selected-text-clipboard text))
1183 )
1184
1185 (defun x-get-selection (&optional type data-type)
1186 "Return the value of a selection.
1187 The argument TYPE (default `PRIMARY') says which selection,
1188 and the argument DATA-TYPE (default `STRING') says
1189 how to convert the data.
1190
1191 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
1192 only a few symbols are commonly used. They conventionally have
1193 all upper-case names. The most often used ones, in addition to
1194 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
1195
1196 DATA-TYPE is usually `STRING', but can also be one of the symbols
1197 in `selection-converter-alist', which see."
1198 (let ((data (x-get-selection-internal (or type 'PRIMARY)
1199 (or data-type 'STRING)))
1200 (coding (or next-selection-coding-system
1201 selection-coding-system)))
1202 (when (and (stringp data)
1203 (setq data-type (get-text-property 0 'foreign-selection data)))
1204 (cond ((eq data-type 'public.utf16-plain-text)
1205 (let ((encoded (and (fboundp 'mac-code-convert-string)
1206 (mac-code-convert-string data nil coding))))
1207 (if encoded
1208 (setq data (decode-coding-string encoded coding))
1209 (setq data
1210 (decode-coding-string data
1211 (if (eq (byteorder) ?B)
1212 'utf-16be 'utf-16le))))))
1213 ((eq data-type 'com.apple.traditional-mac-plain-text)
1214 (setq data (decode-coding-string data coding)))
1215 ((eq data-type 'public.file-url)
1216 (setq data (decode-coding-string data 'utf-8))
1217 ;; Remove a trailing nul character.
1218 (let ((len (length data)))
1219 (if (and (> len 0) (= (aref data (1- len)) ?\0))
1220 (setq data (substring data 0 (1- len)))))))
1221 (put-text-property 0 (length data) 'foreign-selection data-type data))
1222 data))
1223
1224 (defun x-selection-value (type)
1225 (let ((data-types '(public.utf16-plain-text
1226 com.apple.traditional-mac-plain-text
1227 public.file-url))
1228 text tiff-image)
1229 (while (and (null text) data-types)
1230 (setq text (condition-case nil
1231 (x-get-selection type (car data-types))
1232 (error nil)))
1233 (setq data-types (cdr data-types)))
1234 (if text
1235 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
1236 (setq tiff-image (condition-case nil
1237 (x-get-selection type 'public.tiff)
1238 (error nil)))
1239 (when tiff-image
1240 (remove-text-properties 0 (length tiff-image)
1241 '(foreign-selection nil) tiff-image)
1242 (setq tiff-image (create-image tiff-image 'tiff t))
1243 (or text (setq text " "))
1244 (put-text-property 0 (length text) 'display tiff-image text))
1245 text))
1246
1247 ;;; Return the value of the current selection.
1248 ;;; Treat empty strings as if they were unset.
1249 ;;; If this function is called twice and finds the same text,
1250 ;;; it returns nil the second time. This is so that a single
1251 ;;; selection won't be added to the kill ring over and over.
1252 (defun x-get-selection-value ()
1253 (let (clip-text primary-text)
1254 (if (not x-select-enable-clipboard)
1255 (setq x-last-selected-text-clipboard nil)
1256 (setq clip-text (x-selection-value 'CLIPBOARD))
1257 (if (string= clip-text "") (setq clip-text nil))
1258
1259 ;; Check the CLIPBOARD selection for 'newness', is it different
1260 ;; from what we remebered them to be last time we did a
1261 ;; cut/paste operation.
1262 (setq clip-text
1263 (cond;; check clipboard
1264 ((or (not clip-text) (string= clip-text ""))
1265 (setq x-last-selected-text-clipboard nil))
1266 ((eq clip-text x-last-selected-text-clipboard) nil)
1267 ((string= clip-text x-last-selected-text-clipboard)
1268 ;; Record the newer string,
1269 ;; so subsequent calls can use the `eq' test.
1270 (setq x-last-selected-text-clipboard clip-text)
1271 nil)
1272 (t
1273 (setq x-last-selected-text-clipboard clip-text))))
1274 )
1275
1276 (setq primary-text (x-selection-value 'PRIMARY))
1277 ;; Check the PRIMARY selection for 'newness', is it different
1278 ;; from what we remebered them to be last time we did a
1279 ;; cut/paste operation.
1280 (setq primary-text
1281 (cond;; check primary selection
1282 ((or (not primary-text) (string= primary-text ""))
1283 (setq x-last-selected-text-primary nil))
1284 ((eq primary-text x-last-selected-text-primary) nil)
1285 ((string= primary-text x-last-selected-text-primary)
1286 ;; Record the newer string,
1287 ;; so subsequent calls can use the `eq' test.
1288 (setq x-last-selected-text-primary primary-text)
1289 nil)
1290 (t
1291 (setq x-last-selected-text-primary primary-text))))
1292
1293 ;; As we have done one selection, clear this now.
1294 (setq next-selection-coding-system nil)
1295
1296 ;; At this point we have recorded the current values for the
1297 ;; selection from clipboard (if we are supposed to) and primary,
1298 ;; So return the first one that has changed (which is the first
1299 ;; non-null one).
1300 (or clip-text primary-text)
1301 ))
1302
1303 (put 'CLIPBOARD 'mac-scrap-name "com.apple.scrap.clipboard")
1304 (when (eq system-type 'darwin)
1305 (put 'FIND 'mac-scrap-name "com.apple.scrap.find")
1306 (put 'PRIMARY 'mac-scrap-name
1307 (format "org.gnu.Emacs.%d.selection.PRIMARY" (emacs-pid))))
1308 (put 'com.apple.traditional-mac-plain-text 'mac-ostype "TEXT")
1309 (put 'public.utf16-plain-text 'mac-ostype "utxt")
1310 (put 'public.tiff 'mac-ostype "TIFF")
1311 (put 'public.file-url 'mac-ostype "furl")
1312
1313 (defun mac-select-convert-to-string (selection type value)
1314 (let ((str (cdr (xselect-convert-to-string selection nil value)))
1315 coding)
1316 (setq coding (or next-selection-coding-system selection-coding-system))
1317 (if coding
1318 (setq coding (coding-system-base coding))
1319 (setq coding 'raw-text))
1320 (when str
1321 ;; If TYPE is nil, this is a local request, thus return STR as
1322 ;; is. Otherwise, encode STR.
1323 (if (not type)
1324 str
1325 (let ((inhibit-read-only t))
1326 (remove-text-properties 0 (length str) '(composition nil) str)
1327 (cond
1328 ((eq type 'public.utf16-plain-text)
1329 (let (s)
1330 (when (and (fboundp 'mac-code-convert-string)
1331 (memq coding (find-coding-systems-string str)))
1332 (setq coding (coding-system-change-eol-conversion coding 'mac))
1333 (setq s (mac-code-convert-string
1334 (encode-coding-string str coding)
1335 coding nil)))
1336 (setq str (or s
1337 (encode-coding-string str
1338 (if (eq (byteorder) ?B)
1339 'utf-16be 'utf-16le))))))
1340 ((eq type 'com.apple.traditional-mac-plain-text)
1341 (let ((encodables (find-coding-systems-string str))
1342 (rest mac-script-code-coding-systems))
1343 (unless (memq coding encodables)
1344 (while (and rest (not (memq (cdar rest) encodables)))
1345 (setq rest (cdr rest)))
1346 (if rest
1347 (setq coding (cdar rest)))))
1348 (setq coding (coding-system-change-eol-conversion coding 'mac))
1349 (setq str (encode-coding-string str coding)))
1350 (t
1351 (error "Unknown selection type: %S" type))
1352 )))
1353
1354 (setq next-selection-coding-system nil)
1355 (cons type str))))
1356
1357 (defun mac-select-convert-to-file-url (selection type value)
1358 (let ((filename (xselect-convert-to-filename selection type value))
1359 (coding (or file-name-coding-system default-file-name-coding-system)))
1360 (if (and filename coding)
1361 (setq filename (encode-coding-string filename coding)))
1362 (and filename
1363 (concat "file://localhost"
1364 (mapconcat 'url-hexify-string
1365 (split-string filename "/") "/")))))
1366
1367 (setq selection-converter-alist
1368 (nconc
1369 '((public.utf16-plain-text . mac-select-convert-to-string)
1370 (com.apple.traditional-mac-plain-text . mac-select-convert-to-string)
1371 ;; This is not enabled by default because the `Import Image'
1372 ;; menu makes Emacs crash or hang for unknown reasons.
1373 ;; (public.tiff . nil)
1374 (public.file-url . mac-select-convert-to-file-url)
1375 )
1376 selection-converter-alist))
1377 \f
1378 ;;;; Apple events, HICommand events, and Services menu
1379
1380 ;;; Event classes
1381 (put 'core-event 'mac-apple-event-class "aevt") ; kCoreEventClass
1382 (put 'internet-event 'mac-apple-event-class "GURL") ; kAEInternetEventClass
1383
1384 ;;; Event IDs
1385 ;; kCoreEventClass
1386 (put 'open-application 'mac-apple-event-id "oapp") ; kAEOpenApplication
1387 (put 'reopen-application 'mac-apple-event-id "rapp") ; kAEReopenApplication
1388 (put 'open-documents 'mac-apple-event-id "odoc") ; kAEOpenDocuments
1389 (put 'print-documents 'mac-apple-event-id "pdoc") ; kAEPrintDocuments
1390 (put 'open-contents 'mac-apple-event-id "ocon") ; kAEOpenContents
1391 (put 'quit-application 'mac-apple-event-id "quit") ; kAEQuitApplication
1392 (put 'application-died 'mac-apple-event-id "obit") ; kAEApplicationDied
1393 (put 'show-preferences 'mac-apple-event-id "pref") ; kAEShowPreferences
1394 (put 'autosave-now 'mac-apple-event-id "asav") ; kAEAutosaveNow
1395 ;; kAEInternetEventClass
1396 (put 'get-url 'mac-apple-event-id "GURL") ; kAEGetURL
1397 ;; Converted HICommand events
1398 (put 'about 'mac-apple-event-id "abou") ; kHICommandAbout
1399
1400 (defmacro mac-event-spec (event)
1401 `(nth 1 ,event))
1402
1403 (defmacro mac-event-ae (event)
1404 `(nth 2 ,event))
1405
1406 (defun mac-ae-parameter (ae &optional keyword type)
1407 (or keyword (setq keyword "----")) ;; Direct object.
1408 (if (not (and (consp ae) (equal (car ae) "aevt")))
1409 (error "Not an Apple event: %S" ae)
1410 (let ((type-data (cdr (assoc keyword (cdr ae))))
1411 data)
1412 (when (and type type-data (not (equal type (car type-data))))
1413 (setq data (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1414 (setq type-data (if data (cons type data) nil)))
1415 type-data)))
1416
1417 (defun mac-ae-list (ae &optional keyword type)
1418 (or keyword (setq keyword "----")) ;; Direct object.
1419 (let ((desc (mac-ae-parameter ae keyword "list")))
1420 (cond ((null desc)
1421 nil)
1422 ((not (equal (car desc) "list"))
1423 (error "Parameter for \"%s\" is not a list" keyword))
1424 (t
1425 (if (null type)
1426 (cdr desc)
1427 (mapcar
1428 (lambda (type-data)
1429 (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1430 (cdr desc)))))))
1431
1432 (defun mac-bytes-to-integer (bytes &optional from to)
1433 (or from (setq from 0))
1434 (or to (setq to (length bytes)))
1435 (let* ((len (- to from))
1436 (extended-sign-len (- (1+ (ceiling (log most-positive-fixnum 2)))
1437 (* 8 len)))
1438 (result 0))
1439 (dotimes (i len)
1440 (setq result (logior (lsh result 8)
1441 (aref bytes (+ from (if (eq (byteorder) ?B) i
1442 (- len i 1)))))))
1443 (if (> extended-sign-len 0)
1444 (ash (lsh result extended-sign-len) (- extended-sign-len))
1445 result)))
1446
1447 (defun mac-ae-selection-range (ae)
1448 ;; #pragma options align=mac68k
1449 ;; typedef struct SelectionRange {
1450 ;; short unused1; // 0 (not used)
1451 ;; short lineNum; // line to select (<0 to specify range)
1452 ;; long startRange; // start of selection range (if line < 0)
1453 ;; long endRange; // end of selection range (if line < 0)
1454 ;; long unused2; // 0 (not used)
1455 ;; long theDate; // modification date/time
1456 ;; } SelectionRange;
1457 ;; #pragma options align=reset
1458 (let ((range-bytes (cdr (mac-ae-parameter ae "kpos" "TEXT"))))
1459 (and range-bytes
1460 (list (mac-bytes-to-integer range-bytes 2 4)
1461 (mac-bytes-to-integer range-bytes 4 8)
1462 (mac-bytes-to-integer range-bytes 8 12)
1463 (mac-bytes-to-integer range-bytes 16 20)))))
1464
1465 ;; On Mac OS X 10.4 and later, the `open-document' event contains an
1466 ;; optional parameter keyAESearchText from the Spotlight search.
1467 (defun mac-ae-text-for-search (ae)
1468 (let ((utf8-text (cdr (mac-ae-parameter ae "stxt" "utf8"))))
1469 (and utf8-text
1470 (decode-coding-string utf8-text 'utf-8))))
1471
1472 (defun mac-ae-open-documents (event)
1473 "Open the documents specified by the Apple event EVENT."
1474 (interactive "e")
1475 (let ((ae (mac-event-ae event)))
1476 (dolist (file-name (mac-ae-list ae nil 'undecoded-file-name))
1477 (if file-name
1478 (dnd-open-local-file (concat "file:" file-name) nil)))
1479 (let ((selection-range (mac-ae-selection-range ae))
1480 (search-text (mac-ae-text-for-search ae)))
1481 (cond (selection-range
1482 (let ((line (car selection-range))
1483 (start (cadr selection-range))
1484 (end (nth 2 selection-range)))
1485 (if (> line 0)
1486 (goto-line line)
1487 (if (and (> start 0) (> end 0))
1488 (progn (set-mark start)
1489 (goto-char end))))))
1490 ((stringp search-text)
1491 (re-search-forward
1492 (mapconcat 'regexp-quote (split-string search-text) "\\|")
1493 nil t)))))
1494 (raise-frame))
1495
1496 (defun mac-ae-text (ae)
1497 (or (cdr (mac-ae-parameter ae nil "TEXT"))
1498 (error "No text in Apple event.")))
1499
1500 (defun mac-ae-get-url (event)
1501 "Open the URL specified by the Apple event EVENT.
1502 Currently the `mailto' scheme is supported."
1503 (interactive "e")
1504 (let* ((ae (mac-event-ae event))
1505 (parsed-url (url-generic-parse-url (mac-ae-text ae))))
1506 (if (string= (url-type parsed-url) "mailto")
1507 (url-mailto parsed-url)
1508 (error "Unsupported URL scheme: %s" (url-type parsed-url)))))
1509
1510 (setq mac-apple-event-map (make-sparse-keymap))
1511
1512 ;; Received when Emacs is launched without associated documents.
1513 ;; Accept it as an Apple event, but no Emacs event is generated so as
1514 ;; not to erase the splash screen.
1515 (define-key mac-apple-event-map [core-event open-application] 0)
1516
1517 ;; Received when a dock or application icon is clicked and Emacs is
1518 ;; already running. Simply ignored. Another idea is to make a new
1519 ;; frame if all frames are invisible.
1520 (define-key mac-apple-event-map [core-event reopen-application] 'ignore)
1521
1522 (define-key mac-apple-event-map [core-event open-documents]
1523 'mac-ae-open-documents)
1524 (define-key mac-apple-event-map [core-event show-preferences] 'customize)
1525 (define-key mac-apple-event-map [core-event quit-application]
1526 'save-buffers-kill-emacs)
1527
1528 (define-key mac-apple-event-map [internet-event get-url] 'mac-ae-get-url)
1529
1530 (define-key mac-apple-event-map [hicommand about] 'display-splash-screen)
1531
1532 (defun mac-services-open-file ()
1533 "Open the file specified by the selection value for Services."
1534 (interactive)
1535 (find-file-existing (x-selection-value mac-services-selection)))
1536
1537 (defun mac-services-open-selection ()
1538 "Create a new buffer containing the selection value for Services."
1539 (interactive)
1540 (switch-to-buffer (generate-new-buffer "*untitled*"))
1541 (insert (x-selection-value mac-services-selection))
1542 (sit-for 0)
1543 (save-buffer) ; It pops up the save dialog.
1544 )
1545
1546 (defun mac-services-mail-selection ()
1547 "Prepare a mail buffer containing the selection value for Services."
1548 (interactive)
1549 (compose-mail)
1550 (rfc822-goto-eoh)
1551 (forward-line 1)
1552 (insert (x-selection-value mac-services-selection) "\n"))
1553
1554 (defun mac-services-mail-to ()
1555 "Prepare a mail buffer to be sent to the selection value for Services."
1556 (interactive)
1557 (compose-mail (x-selection-value mac-services-selection)))
1558
1559 (defun mac-services-insert-text ()
1560 "Insert the selection value for Services."
1561 (interactive)
1562 (let ((text (x-selection-value mac-services-selection)))
1563 (if (not buffer-read-only)
1564 (insert text)
1565 (kill-new text)
1566 (message
1567 (substitute-command-keys
1568 "The text from the Services menu can be accessed with \\[yank]")))))
1569
1570 (define-key mac-apple-event-map [services paste] 'mac-services-insert-text)
1571 (define-key mac-apple-event-map [services perform open-file]
1572 'mac-services-open-file)
1573 (define-key mac-apple-event-map [services perform open-selection]
1574 'mac-services-open-selection)
1575 (define-key mac-apple-event-map [services perform mail-selection]
1576 'mac-services-mail-selection)
1577 (define-key mac-apple-event-map [services perform mail-to]
1578 'mac-services-mail-to)
1579
1580 (defun mac-dispatch-apple-event (event)
1581 "Dispatch EVENT according to the keymap `mac-apple-event-map'."
1582 (interactive "e")
1583 (let* ((binding (lookup-key mac-apple-event-map (mac-event-spec event)))
1584 (service-message
1585 (and (keymapp binding)
1586 (cdr (mac-ae-parameter (mac-event-ae event) "svmg")))))
1587 (when service-message
1588 (setq service-message
1589 (intern (decode-coding-string service-message 'utf-8)))
1590 (setq binding (lookup-key binding (vector service-message))))
1591 ;; Replace (cadr event) with a dummy position so that event-start
1592 ;; returns it.
1593 (setcar (cdr event) (list (selected-window) (point) '(0 . 0) 0))
1594 (call-interactively binding)))
1595
1596 (global-set-key [mac-apple-event] 'mac-dispatch-apple-event)
1597
1598 ;; Processing of Apple events are deferred at the startup time. For
1599 ;; example, files dropped onto the Emacs application icon can only be
1600 ;; processed when the initial frame has been created: this is where
1601 ;; the files should be opened.
1602 (add-hook 'after-init-hook 'mac-process-deferred-apple-events)
1603 \f
1604 ;;; Do the actual Windows setup here; the above code just defines
1605 ;;; functions and variables that we use now.
1606
1607 (setq command-line-args (x-handle-args command-line-args))
1608
1609 ;;; Make sure we have a valid resource name.
1610 (or (stringp x-resource-name)
1611 (let (i)
1612 (setq x-resource-name (invocation-name))
1613
1614 ;; Change any . or * characters in x-resource-name to hyphens,
1615 ;; so as not to choke when we use it in X resource queries.
1616 (while (setq i (string-match "[.*]" x-resource-name))
1617 (aset x-resource-name i ?-))))
1618
1619 (if (x-display-list)
1620 ;; On Mac OS 8/9, Most coding systems used in code conversion for
1621 ;; font names are not ready at the time when the terminal frame is
1622 ;; created. So we reconstruct font name table for the initial
1623 ;; frame.
1624 (mac-clear-font-name-table)
1625 (x-open-connection "Mac"
1626 x-command-line-resources
1627 ;; Exit Emacs with fatal error if this fails.
1628 t))
1629
1630 (setq frame-creation-function 'x-create-frame-with-faces)
1631
1632 (define-charset 'mac-centraleurroman
1633 "Mac Central European Roman"
1634 :short-name "Mac CE"
1635 :ascii-compatible-p t
1636 :code-space [0 255]
1637 :map
1638 (let ((tbl
1639 [?\Ä ?\Ā ?\ā ?\É ?\Ą ?\Ö ?\Ü ?\á ?\ą ?\Č ?\ä ?\č ?\Ć ?\ć ?\é ?\Ź
1640 ?\ź ?\Ď ?\í ?\ď ?\Ē ?\ē ?\Ė ?\ó ?\ė ?\ô ?\ö ?\õ ?\ú ?\Ě ?\ě ?\ü
1641 ?\† ?\° ?\Ę ?\£ ?\§ ?\• ?\¶ ?\ß ?\® ?\© ?\™ ?\ę ?\¨ ?\≠ ?\ģ ?\Į
1642 ?\į ?\Ī ?\≤ ?\≥ ?\ī ?\Ķ ?\∂ ?\∑ ?\ł ?\Ļ ?\ļ ?\Ľ ?\ľ ?\Ĺ ?\ĺ ?\Ņ
1643 ?\ņ ?\Ń ?\¬ ?\√ ?\ń ?\Ň ?\∆ ?\« ?\» ?\… ?\  ?\ň ?\Ő ?\Õ ?\ő ?\Ō
1644 ?\– ?\— ?\“ ?\” ?\‘ ?\’ ?\÷ ?\◊ ?\ō ?\Ŕ ?\ŕ ?\Ř ?\‹ ?\› ?\ř ?\Ŗ
1645 ?\ŗ ?\Š ?\‚ ?\„ ?\š ?\Ś ?\ś ?\Á ?\Ť ?\ť ?\Í ?\Ž ?\ž ?\Ū ?\Ó ?\Ô
1646 ?\ū ?\Ů ?\Ú ?\ů ?\Ű ?\ű ?\Ų ?\ų ?\Ý ?\ý ?\ķ ?\Ż ?\Ł ?\ż ?\Ģ ?\ˇ])
1647 (map (make-vector 512 nil)))
1648 (or (= (length tbl) 128)
1649 (error "Invalid vector length: %d" (length tbl)))
1650 (dotimes (i 128)
1651 (aset map (* i 2) i)
1652 (aset map (1+ (* i 2)) i))
1653 (dotimes (i 128)
1654 (aset map (+ 256 (* i 2)) (+ 128 i))
1655 (aset map (+ 256 (1+ (* i 2))) (aref tbl i)))
1656 map))
1657
1658 (define-coding-system 'mac-centraleurroman
1659 "Mac Central European Roman Encoding (MIME:x-mac-centraleurroman)."
1660 :coding-type 'charset
1661 :mnemonic ?*
1662 :charset-list '(mac-centraleurroman)
1663 :mime-charset 'x-mac-centraleurroman)
1664
1665 (define-charset 'mac-cyrillic
1666 "Mac Cyrillic"
1667 :short-name "Mac CYRILLIC"
1668 :ascii-compatible-p t
1669 :code-space [0 255]
1670 :map
1671 (let ((tbl
1672 [?\А ?\Б ?\В ?\Г ?\Д ?\Е ?\Ж ?\З ?\И ?\Й ?\К ?\Л ?\М ?\Н ?\О ?\П
1673 ?\Р ?\С ?\Т ?\У ?\Ф ?\Х ?\Ц ?\Ч ?\Ш ?\Щ ?\Ъ ?\Ы ?\Ь ?\Э ?\Ю ?\Я
1674 ?\† ?\° ?\Ґ ?\£ ?\§ ?\• ?\¶ ?\І ?\® ?\© ?\™ ?\Ђ ?\ђ ?\≠ ?\Ѓ ?\ѓ
1675 ?\∞ ?\± ?\≤ ?\≥ ?\і ?\µ ?\ґ ?\Ј ?\Є ?\є ?\Ї ?\ї ?\Љ ?\љ ?\Њ ?\њ
1676 ?\ј ?\Ѕ ?\¬ ?\√ ?\ƒ ?\≈ ?\∆ ?\« ?\» ?\… ?\  ?\Ћ ?\ћ ?\Ќ ?\ќ ?\ѕ
1677 ?\– ?\— ?\“ ?\” ?\‘ ?\’ ?\÷ ?\„ ?\Ў ?\ў ?\Џ ?\џ ?\№ ?\Ё ?\ё ?\я
1678 ?\а ?\б ?\в ?\г ?\д ?\е ?\ж ?\з ?\и ?\й ?\к ?\л ?\м ?\н ?\о ?\п
1679 ?\р ?\с ?\т ?\у ?\ф ?\х ?\ц ?\ч ?\ш ?\щ ?\ъ ?\ы ?\ь ?\э ?\ю ?\€])
1680 (map (make-vector 512 nil)))
1681 (or (= (length tbl) 128)
1682 (error "Invalid vector length: %d" (length tbl)))
1683 (dotimes (i 128)
1684 (aset map (* i 2) i)
1685 (aset map (1+ (* i 2)) i))
1686 (dotimes (i 128)
1687 (aset map (+ 256 (* i 2)) (+ 128 i))
1688 (aset map (+ 256 (1+ (* i 2))) (aref tbl i)))
1689 map))
1690
1691 (define-coding-system 'mac-cyrillic
1692 "Mac Cyrillic Encoding (MIME:x-mac-cyrillic)."
1693 :coding-type 'charset
1694 :mnemonic ?*
1695 :charset-list '(mac-cyrillic)
1696 :mime-charset 'x-mac-cyrillic)
1697
1698 (define-charset 'mac-symbol
1699 "Mac Symbol"
1700 :short-name "Mac SYMBOL"
1701 :code-space [32 254]
1702 :map
1703 (let ((tbl-32-126
1704 [?\ ?\! ?\∀ ?\# ?\∃ ?\% ?\& ?\∍ ?\( ?\) ?\∗ ?\+ ?\, ?\− ?\. ?\/
1705 ?\0 ?\1 ?\2 ?\3 ?\4 ?\5 ?\6 ?\7 ?\8 ?\9 ?\: ?\; ?\< ?\= ?\> ?\?
1706 ?\≅ ?\Α ?\Β ?\Χ ?\Δ ?\Ε ?\Φ ?\Γ ?\Η ?\Ι ?\ϑ ?\Κ ?\Λ ?\Μ ?\Ν ?\Ο
1707 ?\Π ?\Θ ?\Ρ ?\Σ ?\Τ ?\Υ ?\ς ?\Ω ?\Ξ ?\Ψ ?\Ζ ?\[ ?\∴ ?\] ?\⊥ ?\_
1708 ?\ ?\α ?\β ?\χ ?\δ ?\ε ?\φ ?\γ ?\η ?\ι ?\ϕ ?\κ ?\λ ?\μ ?\ν ?\ο
1709 ?\π ?\θ ?\ρ ?\σ ?\τ ?\υ ?\ϖ ?\ω ?\ξ ?\ψ ?\ζ ?\{ ?\| ?\} ?\∼])
1710 (map-32-126 (make-vector (* (1+ (- 126 32)) 2) nil))
1711 (tbl-160-254
1712 ;; Mapping of the following characters are changed from the
1713 ;; original one:
1714 ;; 0xE2 0x00AE+0xF87F->0x00AE # REGISTERED SIGN, alternate: sans serif
1715 ;; 0xE3 0x00A9+0xF87F->0x00A9 # COPYRIGHT SIGN, alternate: sans serif
1716 ;; 0xE4 0x2122+0xF87F->0x2122 # TRADE MARK SIGN, alternate: sans serif
1717 [?\€ ?\ϒ ?\′ ?\≤ ?\⁄ ?\∞ ?\ƒ ?\♣ ?\♦ ?\♥ ?\♠ ?\↔ ?\← ?\↑ ?\→ ?\↓
1718 ?\° ?\± ?\″ ?\≥ ?\× ?\∝ ?\∂ ?\• ?\÷ ?\≠ ?\≡ ?\≈ ?\… ?\⏐ ?\⎯ ?\↵
1719 ?\ℵ ?\ℑ ?\ℜ ?\℘ ?\⊗ ?\⊕ ?\∅ ?\∩ ?\∪ ?\⊃ ?\⊇ ?\⊄ ?\⊂ ?\⊆ ?\∈ ?\∉
1720 ?\∠ ?\∇ ?\® ?\© ?\™ ?\∏ ?\√ ?\⋅ ?\¬ ?\∧ ?\∨ ?\⇔ ?\⇐ ?\⇑ ?\⇒ ?\⇓
1721 ?\◊ ?\〈 ?\® ?\© ?\™ ?\∑ ?\⎛ ?\⎜ ?\⎝ ?\⎡ ?\⎢ ?\⎣ ?\⎧ ?\⎨ ?\⎩ ?\⎪
1722 ?\ ?\〉 ?\∫ ?\⌠ ?\⎮ ?\⌡ ?\⎞ ?\⎟ ?\⎠ ?\⎤ ?\⎥ ?\⎦ ?\⎫ ?\⎬ ?\⎭])
1723 (map-160-254 (make-vector (* (1+ (- 254 160)) 2) nil)))
1724 (dotimes (i (1+ (- 126 32)))
1725 (aset map-32-126 (* i 2) (+ 32 i))
1726 (aset map-32-126 (1+ (* i 2)) (aref tbl-32-126 i)))
1727 (dotimes (i (1+ (- 254 160)))
1728 (aset map-160-254 (* i 2) (+ 160 i))
1729 (aset map-160-254 (1+ (* i 2)) (aref tbl-160-254 i)))
1730 (vconcat map-32-126 map-160-254)))
1731
1732 (define-charset 'mac-dingbats
1733 "Mac Dingbats"
1734 :short-name "Mac Dingbats"
1735 :code-space [32 254]
1736 :map
1737 (let ((tbl-32-126
1738 [?\ ?\✁ ?\✂ ?\✃ ?\✄ ?\☎ ?\✆ ?\✇ ?\✈ ?\✉ ?\☛ ?\☞ ?\✌ ?\✍ ?\✎ ?\✏
1739 ?\✐ ?\✑ ?\✒ ?\✓ ?\✔ ?\✕ ?\✖ ?\✗ ?\✘ ?\✙ ?\✚ ?\✛ ?\✜ ?\✝ ?\✞ ?\✟
1740 ?\✠ ?\✡ ?\✢ ?\✣ ?\✤ ?\✥ ?\✦ ?\✧ ?\★ ?\✩ ?\✪ ?\✫ ?\✬ ?\✭ ?\✮ ?\✯
1741 ?\✰ ?\✱ ?\✲ ?\✳ ?\✴ ?\✵ ?\✶ ?\✷ ?\✸ ?\✹ ?\✺ ?\✻ ?\✼ ?\✽ ?\✾ ?\✿
1742 ?\❀ ?\❁ ?\❂ ?\❃ ?\❄ ?\❅ ?\❆ ?\❇ ?\❈ ?\❉ ?\❊ ?\❋ ?\● ?\❍ ?\■ ?\❏
1743 ?\❐ ?\❑ ?\❒ ?\▲ ?\▼ ?\◆ ?\❖ ?\◗ ?\❘ ?\❙ ?\❚ ?\❛ ?\❜ ?\❝ ?\❞])
1744 (map-32-126 (make-vector (* (1+ (- 126 32)) 2) nil))
1745 (tbl-128-141
1746 [?\❨ ?\❩ ?\❪ ?\❫ ?\❬ ?\❭ ?\❮ ?\❯ ?\❰ ?\❱ ?\❲ ?\❳ ?\❴ ?\❵])
1747 (map-128-141 (make-vector (* (1+ (- 141 128)) 2) nil))
1748 (tbl-161-239
1749 [?\❡ ?\❢ ?\❣ ?\❤ ?\❥ ?\❦ ?\❧ ?\♣ ?\♦ ?\♥ ?\♠ ?\① ?\② ?\③ ?\④
1750 ?\⑤ ?\⑥ ?\⑦ ?\⑧ ?\⑨ ?\⑩ ?\❶ ?\❷ ?\❸ ?\❹ ?\❺ ?\❻ ?\❼ ?\❽ ?\❾ ?\❿
1751 ?\➀ ?\➁ ?\➂ ?\➃ ?\➄ ?\➅ ?\➆ ?\➇ ?\➈ ?\➉ ?\➊ ?\➋ ?\➌ ?\➍ ?\➎ ?\➏
1752 ?\➐ ?\➑ ?\➒ ?\➓ ?\➔ ?\→ ?\↔ ?\↕ ?\➘ ?\➙ ?\➚ ?\➛ ?\➜ ?\➝ ?\➞ ?\➟
1753 ?\➠ ?\➡ ?\➢ ?\➣ ?\➤ ?\➥ ?\➦ ?\➧ ?\➨ ?\➩ ?\➪ ?\➫ ?\➬ ?\➭ ?\➮ ?\➯])
1754 (map-161-239 (make-vector (* (1+ (- 239 161)) 2) nil))
1755 (tbl-241-254
1756 [?\➱ ?\➲ ?\➳ ?\➴ ?\➵ ?\➶ ?\➷ ?\➸ ?\➹ ?\➺ ?\➻ ?\➼ ?\➽ ?\➾])
1757 (map-241-254 (make-vector (* (1+ (- 254 241)) 2) nil)))
1758 (dotimes (i (1+ (- 126 32)))
1759 (aset map-32-126 (* i 2) (+ 32 i))
1760 (aset map-32-126 (1+ (* i 2)) (aref tbl-32-126 i)))
1761 (dotimes (i (1+ (- 141 128)))
1762 (aset map-128-141 (* i 2) (+ 128 i))
1763 (aset map-128-141 (1+ (* i 2)) (aref tbl-128-141 i)))
1764 (dotimes (i (1+ (- 239 161)))
1765 (aset map-161-239 (* i 2) (+ 161 i))
1766 (aset map-161-239 (1+ (* i 2)) (aref tbl-161-239 i)))
1767 (dotimes (i (1+ (- 254 241)))
1768 (aset map-241-254 (* i 2) (+ 241 i))
1769 (aset map-241-254 (1+ (* i 2)) (aref tbl-241-254 i)))
1770 (vconcat map-32-126 map-128-141 map-161-239 map-241-254)))
1771
1772 (setq font-encoding-alist
1773 (append
1774 '(("mac-roman" . mac-roman)
1775 ("mac-centraleurroman" . mac-centraleurroman)
1776 ("mac-cyrillic" . mac-cyrillic)
1777 ("mac-symbol" . mac-symbol)
1778 ("mac-dingbats" . mac-dingbats))
1779 font-encoding-alist))
1780
1781 (defun fontset-add-mac-fonts (fontset &optional base-family)
1782 (dolist (elt `((latin . (,(or base-family "Monaco") . "mac-roman"))
1783 (mac-roman . (,base-family . "mac-roman"))
1784 (mac-centraleurroman . (,base-family . "mac-centraleurroman"))
1785 (mac-cyrillic . (,base-family . "mac-cyrillic"))
1786 (mac-symbol . (,base-family . "mac-symbol"))
1787 (mac-dingbats . (,base-family . "mac-dingbats"))))
1788 (set-fontset-font fontset (car elt) (cdr elt))))
1789
1790 (defun create-fontset-from-mac-roman-font (font &optional resolved-font
1791 fontset-name)
1792 "Create a fontset from a Mac roman font FONT.
1793
1794 Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If
1795 omitted, `x-resolve-font-name' is called to get the resolved name. At
1796 this time, if FONT is not available, error is signaled.
1797
1798 Optional 2nd arg FONTSET-NAME is a string to be used in
1799 `<CHARSET_ENCODING>' fields of a new fontset name. If it is omitted,
1800 an appropriate name is generated automatically.
1801
1802 It returns a name of the created fontset."
1803 (or resolved-font
1804 (setq resolved-font (x-resolve-font-name font)))
1805 (let ((base-family (aref (x-decompose-font-name resolved-font)
1806 xlfd-regexp-family-subnum)))
1807 (if (string= base-family "*")
1808 (setq base-family nil))
1809 (new-fontset fontset-name (list (cons 'ascii resolved-font)))
1810 (fontset-add-mac-fonts fontset-name base-family)))
1811
1812 ;; Setup the default fontset.
1813 (setup-default-fontset)
1814
1815 ;; Create a fontset that uses mac-roman font. With this fontset,
1816 ;; characters belonging to mac-roman charset (that contains ASCII and
1817 ;; more Latin characters) are displayed by a mac-roman font.
1818 (create-fontset-from-mac-roman-font
1819 "-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman" nil
1820 "-apple-Monaco-normal-r-*-*-12-*-*-*-*-*-fontset-mac")
1821
1822 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
1823 (create-fontset-from-x-resource)
1824
1825 ;; Apply a geometry resource to the initial frame. Put it at the end
1826 ;; of the alist, so that anything specified on the command line takes
1827 ;; precedence.
1828 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
1829 parsed)
1830 (if res-geometry
1831 (progn
1832 (setq parsed (x-parse-geometry res-geometry))
1833 ;; If the resource specifies a position,
1834 ;; call the position and size "user-specified".
1835 (if (or (assq 'top parsed) (assq 'left parsed))
1836 (setq parsed (cons '(user-position . t)
1837 (cons '(user-size . t) parsed))))
1838 ;; All geometry parms apply to the initial frame.
1839 (setq initial-frame-alist (append initial-frame-alist parsed))
1840 ;; The size parms apply to all frames.
1841 (if (assq 'height parsed)
1842 (setq default-frame-alist
1843 (cons (cons 'height (cdr (assq 'height parsed)))
1844 default-frame-alist)))
1845 (if (assq 'width parsed)
1846 (setq default-frame-alist
1847 (cons (cons 'width (cdr (assq 'width parsed)))
1848 default-frame-alist))))))
1849
1850 ;; Check the reverseVideo resource.
1851 (let ((case-fold-search t))
1852 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
1853 (if (and rv
1854 (string-match "^\\(true\\|yes\\|on\\)$" rv))
1855 (setq default-frame-alist
1856 (cons '(reverse . t) default-frame-alist)))))
1857
1858 (defun x-win-suspend-error ()
1859 (error "Suspending an Emacs running under Mac makes no sense"))
1860 (add-hook 'suspend-hook 'x-win-suspend-error)
1861
1862 ;;; Arrange for the kill and yank functions to set and check the clipboard.
1863 (setq interprogram-cut-function 'x-select-text)
1864 (setq interprogram-paste-function 'x-get-selection-value)
1865
1866 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
1867
1868 ;;; Turn off window-splitting optimization; Mac is usually fast enough
1869 ;;; that this is only annoying.
1870 (setq split-window-keep-point t)
1871
1872 ;; Don't show the frame name; that's redundant.
1873 (setq-default mode-line-frame-identification " ")
1874
1875 ;; Turn on support for mouse wheels.
1876 (mouse-wheel-mode 1)
1877
1878
1879 ;; Enable CLIPBOARD copy/paste through menu bar commands.
1880 (menu-bar-enable-clipboard)
1881
1882 (defun mac-drag-n-drop (event)
1883 "Edit the files listed in the drag-n-drop EVENT.
1884 Switch to a buffer editing the last file dropped."
1885 (interactive "e")
1886 ;; Make sure the drop target has positive co-ords
1887 ;; before setting the selected frame - otherwise it
1888 ;; won't work. <skx@tardis.ed.ac.uk>
1889 (let* ((window (posn-window (event-start event)))
1890 (coords (posn-x-y (event-start event)))
1891 (x (car coords))
1892 (y (cdr coords)))
1893 (if (and (> x 0) (> y 0))
1894 (set-frame-selected-window nil window))
1895 (dolist (file-name (nth 2 event))
1896 (dnd-handle-one-url window 'private
1897 (concat "file:" file-name))))
1898 (raise-frame))
1899
1900 (global-set-key [drag-n-drop] 'mac-drag-n-drop)
1901 \f
1902 ;;;; Non-toolkit Scroll bars
1903
1904 (unless x-toolkit-scroll-bars
1905
1906 ;; for debugging
1907 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
1908
1909 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
1910
1911 (global-set-key
1912 [vertical-scroll-bar down-mouse-1]
1913 'mac-handle-scroll-bar-event)
1914
1915 (global-unset-key [vertical-scroll-bar drag-mouse-1])
1916 (global-unset-key [vertical-scroll-bar mouse-1])
1917
1918 (defun mac-handle-scroll-bar-event (event)
1919 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
1920 (interactive "e")
1921 (let* ((position (event-start event))
1922 (window (nth 0 position))
1923 (bar-part (nth 4 position)))
1924 (select-window window)
1925 (cond
1926 ((eq bar-part 'up)
1927 (goto-char (window-start window))
1928 (mac-scroll-down-line))
1929 ((eq bar-part 'above-handle)
1930 (mac-scroll-down))
1931 ((eq bar-part 'handle)
1932 (scroll-bar-drag event))
1933 ((eq bar-part 'below-handle)
1934 (mac-scroll-up))
1935 ((eq bar-part 'down)
1936 (goto-char (window-start window))
1937 (mac-scroll-up-line)))))
1938
1939 (defun mac-scroll-ignore-events ()
1940 ;; Ignore confusing non-mouse events
1941 (while (not (memq (car-safe (read-event))
1942 '(mouse-1 double-mouse-1 triple-mouse-1))) nil))
1943
1944 (defun mac-scroll-down ()
1945 (track-mouse
1946 (mac-scroll-ignore-events)
1947 (scroll-down)))
1948
1949 (defun mac-scroll-down-line ()
1950 (track-mouse
1951 (mac-scroll-ignore-events)
1952 (scroll-down 1)))
1953
1954 (defun mac-scroll-up ()
1955 (track-mouse
1956 (mac-scroll-ignore-events)
1957 (scroll-up)))
1958
1959 (defun mac-scroll-up-line ()
1960 (track-mouse
1961 (mac-scroll-ignore-events)
1962 (scroll-up 1)))
1963
1964 )
1965 \f
1966 ;;;; Others
1967
1968 (unless (eq system-type 'darwin)
1969 ;; This variable specifies the Unix program to call (as a process) to
1970 ;; determine the amount of free space on a file system (defaults to
1971 ;; df). If it is not set to nil, ls-lisp will not work correctly
1972 ;; unless an external application df is implemented on the Mac.
1973 (setq directory-free-space-program nil)
1974
1975 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
1976 ;; expand filenames Note no subprocess for the shell is actually
1977 ;; started (see run_mac_command in sysdep.c).
1978 (setq shell-file-name "sh")
1979
1980 ;; Some system variables are encoded with the system script code.
1981 (dolist (v '(system-name
1982 emacs-build-system ; Mac OS 9 version cannot dump
1983 user-login-name user-real-login-name user-full-name))
1984 (set v (decode-coding-string (symbol-value v) mac-system-coding-system))))
1985
1986 ;; Now the default directory is changed to the user's home directory
1987 ;; in emacs.c if invoked from the WindowServer (with -psn_* option).
1988 ;; (if (string= default-directory "/")
1989 ;; (cd "~"))
1990
1991 ;; Darwin 6- pty breakage is now controlled from the C code so that
1992 ;; it applies to all builds on darwin. See s/darwin.h PTY_ITERATION.
1993 ;; (setq process-connection-type t)
1994
1995 ;; Assume that fonts are always scalable on the Mac. This sometimes
1996 ;; results in characters with jagged edges. However, without it,
1997 ;; fonts with both truetype and bitmap representations but no italic
1998 ;; or bold bitmap versions will not display these variants correctly.
1999 (setq scalable-fonts-allowed t)
2000
2001 ;; arch-tag: 71dfcd14-cde8-4d66-b05c-85ec94fb23a6
2002 ;;; mac-win.el ends here