Merge from emacs--devo--0
[bpt/emacs.git] / 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-service-selection)
83 (defvar mac-system-script-code)
84 (defvar mac-apple-event-map)
85 (defvar mac-atsu-font-table)
86 (defvar mac-font-panel-mode)
87 (defvar mac-ts-active-input-overlay)
88 (defvar x-invocation-args)
89
90 (defvar x-command-line-resources nil)
91
92 ;; Handler for switches of the form "-switch value" or "-switch".
93 (defun x-handle-switch (switch)
94 (let ((aelt (assoc switch command-line-x-option-alist)))
95 (if aelt
96 (let ((param (nth 3 aelt))
97 (value (nth 4 aelt)))
98 (if value
99 (setq default-frame-alist
100 (cons (cons param value)
101 default-frame-alist))
102 (setq default-frame-alist
103 (cons (cons param
104 (car x-invocation-args))
105 default-frame-alist)
106 x-invocation-args (cdr x-invocation-args)))))))
107
108 ;; Handler for switches of the form "-switch n"
109 (defun x-handle-numeric-switch (switch)
110 (let ((aelt (assoc switch command-line-x-option-alist)))
111 (if aelt
112 (let ((param (nth 3 aelt)))
113 (setq default-frame-alist
114 (cons (cons param
115 (string-to-number (car x-invocation-args)))
116 default-frame-alist)
117 x-invocation-args
118 (cdr x-invocation-args))))))
119
120 ;; Handle options that apply to initial frame only
121 (defun x-handle-initial-switch (switch)
122 (let ((aelt (assoc switch command-line-x-option-alist)))
123 (if aelt
124 (let ((param (nth 3 aelt))
125 (value (nth 4 aelt)))
126 (if value
127 (setq initial-frame-alist
128 (cons (cons param value)
129 initial-frame-alist))
130 (setq initial-frame-alist
131 (cons (cons param
132 (car x-invocation-args))
133 initial-frame-alist)
134 x-invocation-args (cdr x-invocation-args)))))))
135
136 ;; Make -iconic apply only to the initial frame!
137 (defun x-handle-iconic (switch)
138 (setq initial-frame-alist
139 (cons '(visibility . icon) initial-frame-alist)))
140
141 ;; Handle the -xrm option.
142 (defun x-handle-xrm-switch (switch)
143 (unless (consp x-invocation-args)
144 (error "%s: missing argument to `%s' option" (invocation-name) switch))
145 (setq x-command-line-resources
146 (if (null x-command-line-resources)
147 (car x-invocation-args)
148 (concat x-command-line-resources "\n" (car x-invocation-args))))
149 (setq x-invocation-args (cdr x-invocation-args)))
150
151 ;; Handle the geometry option
152 (defun x-handle-geometry (switch)
153 (let* ((geo (x-parse-geometry (car x-invocation-args)))
154 (left (assq 'left geo))
155 (top (assq 'top geo))
156 (height (assq 'height geo))
157 (width (assq 'width geo)))
158 (if (or height width)
159 (setq default-frame-alist
160 (append default-frame-alist
161 '((user-size . t))
162 (if height (list height))
163 (if width (list width)))
164 initial-frame-alist
165 (append initial-frame-alist
166 '((user-size . t))
167 (if height (list height))
168 (if width (list width)))))
169 (if (or left top)
170 (setq initial-frame-alist
171 (append initial-frame-alist
172 '((user-position . t))
173 (if left (list left))
174 (if top (list top)))))
175 (setq x-invocation-args (cdr x-invocation-args))))
176
177 ;; Handle the -name option. Set the variable x-resource-name
178 ;; to the option's operand; set the name of
179 ;; the initial frame, too.
180 (defun x-handle-name-switch (switch)
181 (or (consp x-invocation-args)
182 (error "%s: missing argument to `%s' option" (invocation-name) switch))
183 (setq x-resource-name (car x-invocation-args)
184 x-invocation-args (cdr x-invocation-args))
185 (setq initial-frame-alist (cons (cons 'name x-resource-name)
186 initial-frame-alist)))
187
188 (defvar x-display-name nil
189 "The display name specifying server and frame.")
190
191 (defun x-handle-display (switch)
192 (setq x-display-name (car x-invocation-args)
193 x-invocation-args (cdr x-invocation-args)))
194
195 (defun x-handle-args (args)
196 "Process the X-related command line options in ARGS.
197 This is done before the user's startup file is loaded. They are copied to
198 `x-invocation-args', from which the X-related things are extracted, first
199 the switch (e.g., \"-fg\") in the following code, and possible values
200 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
201 This function returns ARGS minus the arguments that have been processed."
202 ;; We use ARGS to accumulate the args that we don't handle here, to return.
203 (setq x-invocation-args args
204 args nil)
205 (while (and x-invocation-args
206 (not (equal (car x-invocation-args) "--")))
207 (let* ((this-switch (car x-invocation-args))
208 (orig-this-switch this-switch)
209 completion argval aelt handler)
210 (setq x-invocation-args (cdr x-invocation-args))
211 ;; Check for long options with attached arguments
212 ;; and separate out the attached option argument into argval.
213 (if (string-match "^--[^=]*=" this-switch)
214 (setq argval (substring this-switch (match-end 0))
215 this-switch (substring this-switch 0 (1- (match-end 0)))))
216 ;; Complete names of long options.
217 (if (string-match "^--" this-switch)
218 (progn
219 (setq completion (try-completion this-switch command-line-x-option-alist))
220 (if (eq completion t)
221 ;; Exact match for long option.
222 nil
223 (if (stringp completion)
224 (let ((elt (assoc completion command-line-x-option-alist)))
225 ;; Check for abbreviated long option.
226 (or elt
227 (error "Option `%s' is ambiguous" this-switch))
228 (setq this-switch completion))))))
229 (setq aelt (assoc this-switch command-line-x-option-alist))
230 (if aelt (setq handler (nth 2 aelt)))
231 (if handler
232 (if argval
233 (let ((x-invocation-args
234 (cons argval x-invocation-args)))
235 (funcall handler this-switch))
236 (funcall handler this-switch))
237 (setq args (cons orig-this-switch args)))))
238 (nconc (nreverse args) x-invocation-args))
239
240 \f
241 ;;
242 ;; Standard Mac cursor shapes
243 ;;
244
245 (defconst mac-pointer-arrow 0)
246 (defconst mac-pointer-copy-arrow 1)
247 (defconst mac-pointer-alias-arrow 2)
248 (defconst mac-pointer-contextual-menu-arrow 3)
249 (defconst mac-pointer-I-beam 4)
250 (defconst mac-pointer-cross 5)
251 (defconst mac-pointer-plus 6)
252 (defconst mac-pointer-watch 7)
253 (defconst mac-pointer-closed-hand 8)
254 (defconst mac-pointer-open-hand 9)
255 (defconst mac-pointer-pointing-hand 10)
256 (defconst mac-pointer-counting-up-hand 11)
257 (defconst mac-pointer-counting-down-hand 12)
258 (defconst mac-pointer-counting-up-and-down-hand 13)
259 (defconst mac-pointer-spinning 14)
260 (defconst mac-pointer-resize-left 15)
261 (defconst mac-pointer-resize-right 16)
262 (defconst mac-pointer-resize-left-right 17)
263 ;; Mac OS X 10.2 and later
264 (defconst mac-pointer-not-allowed 18)
265 ;; Mac OS X 10.3 and later
266 (defconst mac-pointer-resize-up 19)
267 (defconst mac-pointer-resize-down 20)
268 (defconst mac-pointer-resize-up-down 21)
269 (defconst mac-pointer-poof 22)
270
271 ;;
272 ;; Standard X cursor shapes that have Mac counterparts
273 ;;
274
275 (defconst x-pointer-left-ptr mac-pointer-arrow)
276 (defconst x-pointer-xterm mac-pointer-I-beam)
277 (defconst x-pointer-crosshair mac-pointer-cross)
278 (defconst x-pointer-plus mac-pointer-plus)
279 (defconst x-pointer-watch mac-pointer-watch)
280 (defconst x-pointer-hand2 mac-pointer-pointing-hand)
281 (defconst x-pointer-left-side mac-pointer-resize-left)
282 (defconst x-pointer-right-side mac-pointer-resize-right)
283 (defconst x-pointer-sb-h-double-arrow mac-pointer-resize-left-right)
284 (defconst x-pointer-top-side mac-pointer-resize-up)
285 (defconst x-pointer-bottom-side mac-pointer-resize-down)
286 (defconst x-pointer-sb-v-double-arrow mac-pointer-resize-up-down)
287
288 \f
289 ;;
290 ;; Available colors
291 ;;
292
293 (defvar x-colors '("LightGreen"
294 "light green"
295 "DarkRed"
296 "dark red"
297 "DarkMagenta"
298 "dark magenta"
299 "DarkCyan"
300 "dark cyan"
301 "DarkBlue"
302 "dark blue"
303 "DarkGray"
304 "dark gray"
305 "DarkGrey"
306 "dark grey"
307 "grey100"
308 "gray100"
309 "grey99"
310 "gray99"
311 "grey98"
312 "gray98"
313 "grey97"
314 "gray97"
315 "grey96"
316 "gray96"
317 "grey95"
318 "gray95"
319 "grey94"
320 "gray94"
321 "grey93"
322 "gray93"
323 "grey92"
324 "gray92"
325 "grey91"
326 "gray91"
327 "grey90"
328 "gray90"
329 "grey89"
330 "gray89"
331 "grey88"
332 "gray88"
333 "grey87"
334 "gray87"
335 "grey86"
336 "gray86"
337 "grey85"
338 "gray85"
339 "grey84"
340 "gray84"
341 "grey83"
342 "gray83"
343 "grey82"
344 "gray82"
345 "grey81"
346 "gray81"
347 "grey80"
348 "gray80"
349 "grey79"
350 "gray79"
351 "grey78"
352 "gray78"
353 "grey77"
354 "gray77"
355 "grey76"
356 "gray76"
357 "grey75"
358 "gray75"
359 "grey74"
360 "gray74"
361 "grey73"
362 "gray73"
363 "grey72"
364 "gray72"
365 "grey71"
366 "gray71"
367 "grey70"
368 "gray70"
369 "grey69"
370 "gray69"
371 "grey68"
372 "gray68"
373 "grey67"
374 "gray67"
375 "grey66"
376 "gray66"
377 "grey65"
378 "gray65"
379 "grey64"
380 "gray64"
381 "grey63"
382 "gray63"
383 "grey62"
384 "gray62"
385 "grey61"
386 "gray61"
387 "grey60"
388 "gray60"
389 "grey59"
390 "gray59"
391 "grey58"
392 "gray58"
393 "grey57"
394 "gray57"
395 "grey56"
396 "gray56"
397 "grey55"
398 "gray55"
399 "grey54"
400 "gray54"
401 "grey53"
402 "gray53"
403 "grey52"
404 "gray52"
405 "grey51"
406 "gray51"
407 "grey50"
408 "gray50"
409 "grey49"
410 "gray49"
411 "grey48"
412 "gray48"
413 "grey47"
414 "gray47"
415 "grey46"
416 "gray46"
417 "grey45"
418 "gray45"
419 "grey44"
420 "gray44"
421 "grey43"
422 "gray43"
423 "grey42"
424 "gray42"
425 "grey41"
426 "gray41"
427 "grey40"
428 "gray40"
429 "grey39"
430 "gray39"
431 "grey38"
432 "gray38"
433 "grey37"
434 "gray37"
435 "grey36"
436 "gray36"
437 "grey35"
438 "gray35"
439 "grey34"
440 "gray34"
441 "grey33"
442 "gray33"
443 "grey32"
444 "gray32"
445 "grey31"
446 "gray31"
447 "grey30"
448 "gray30"
449 "grey29"
450 "gray29"
451 "grey28"
452 "gray28"
453 "grey27"
454 "gray27"
455 "grey26"
456 "gray26"
457 "grey25"
458 "gray25"
459 "grey24"
460 "gray24"
461 "grey23"
462 "gray23"
463 "grey22"
464 "gray22"
465 "grey21"
466 "gray21"
467 "grey20"
468 "gray20"
469 "grey19"
470 "gray19"
471 "grey18"
472 "gray18"
473 "grey17"
474 "gray17"
475 "grey16"
476 "gray16"
477 "grey15"
478 "gray15"
479 "grey14"
480 "gray14"
481 "grey13"
482 "gray13"
483 "grey12"
484 "gray12"
485 "grey11"
486 "gray11"
487 "grey10"
488 "gray10"
489 "grey9"
490 "gray9"
491 "grey8"
492 "gray8"
493 "grey7"
494 "gray7"
495 "grey6"
496 "gray6"
497 "grey5"
498 "gray5"
499 "grey4"
500 "gray4"
501 "grey3"
502 "gray3"
503 "grey2"
504 "gray2"
505 "grey1"
506 "gray1"
507 "grey0"
508 "gray0"
509 "thistle4"
510 "thistle3"
511 "thistle2"
512 "thistle1"
513 "MediumPurple4"
514 "MediumPurple3"
515 "MediumPurple2"
516 "MediumPurple1"
517 "purple4"
518 "purple3"
519 "purple2"
520 "purple1"
521 "DarkOrchid4"
522 "DarkOrchid3"
523 "DarkOrchid2"
524 "DarkOrchid1"
525 "MediumOrchid4"
526 "MediumOrchid3"
527 "MediumOrchid2"
528 "MediumOrchid1"
529 "plum4"
530 "plum3"
531 "plum2"
532 "plum1"
533 "orchid4"
534 "orchid3"
535 "orchid2"
536 "orchid1"
537 "magenta4"
538 "magenta3"
539 "magenta2"
540 "magenta1"
541 "VioletRed4"
542 "VioletRed3"
543 "VioletRed2"
544 "VioletRed1"
545 "maroon4"
546 "maroon3"
547 "maroon2"
548 "maroon1"
549 "PaleVioletRed4"
550 "PaleVioletRed3"
551 "PaleVioletRed2"
552 "PaleVioletRed1"
553 "LightPink4"
554 "LightPink3"
555 "LightPink2"
556 "LightPink1"
557 "pink4"
558 "pink3"
559 "pink2"
560 "pink1"
561 "HotPink4"
562 "HotPink3"
563 "HotPink2"
564 "HotPink1"
565 "DeepPink4"
566 "DeepPink3"
567 "DeepPink2"
568 "DeepPink1"
569 "red4"
570 "red3"
571 "red2"
572 "red1"
573 "OrangeRed4"
574 "OrangeRed3"
575 "OrangeRed2"
576 "OrangeRed1"
577 "tomato4"
578 "tomato3"
579 "tomato2"
580 "tomato1"
581 "coral4"
582 "coral3"
583 "coral2"
584 "coral1"
585 "DarkOrange4"
586 "DarkOrange3"
587 "DarkOrange2"
588 "DarkOrange1"
589 "orange4"
590 "orange3"
591 "orange2"
592 "orange1"
593 "LightSalmon4"
594 "LightSalmon3"
595 "LightSalmon2"
596 "LightSalmon1"
597 "salmon4"
598 "salmon3"
599 "salmon2"
600 "salmon1"
601 "brown4"
602 "brown3"
603 "brown2"
604 "brown1"
605 "firebrick4"
606 "firebrick3"
607 "firebrick2"
608 "firebrick1"
609 "chocolate4"
610 "chocolate3"
611 "chocolate2"
612 "chocolate1"
613 "tan4"
614 "tan3"
615 "tan2"
616 "tan1"
617 "wheat4"
618 "wheat3"
619 "wheat2"
620 "wheat1"
621 "burlywood4"
622 "burlywood3"
623 "burlywood2"
624 "burlywood1"
625 "sienna4"
626 "sienna3"
627 "sienna2"
628 "sienna1"
629 "IndianRed4"
630 "IndianRed3"
631 "IndianRed2"
632 "IndianRed1"
633 "RosyBrown4"
634 "RosyBrown3"
635 "RosyBrown2"
636 "RosyBrown1"
637 "DarkGoldenrod4"
638 "DarkGoldenrod3"
639 "DarkGoldenrod2"
640 "DarkGoldenrod1"
641 "goldenrod4"
642 "goldenrod3"
643 "goldenrod2"
644 "goldenrod1"
645 "gold4"
646 "gold3"
647 "gold2"
648 "gold1"
649 "yellow4"
650 "yellow3"
651 "yellow2"
652 "yellow1"
653 "LightYellow4"
654 "LightYellow3"
655 "LightYellow2"
656 "LightYellow1"
657 "LightGoldenrod4"
658 "LightGoldenrod3"
659 "LightGoldenrod2"
660 "LightGoldenrod1"
661 "khaki4"
662 "khaki3"
663 "khaki2"
664 "khaki1"
665 "DarkOliveGreen4"
666 "DarkOliveGreen3"
667 "DarkOliveGreen2"
668 "DarkOliveGreen1"
669 "OliveDrab4"
670 "OliveDrab3"
671 "OliveDrab2"
672 "OliveDrab1"
673 "chartreuse4"
674 "chartreuse3"
675 "chartreuse2"
676 "chartreuse1"
677 "green4"
678 "green3"
679 "green2"
680 "green1"
681 "SpringGreen4"
682 "SpringGreen3"
683 "SpringGreen2"
684 "SpringGreen1"
685 "PaleGreen4"
686 "PaleGreen3"
687 "PaleGreen2"
688 "PaleGreen1"
689 "SeaGreen4"
690 "SeaGreen3"
691 "SeaGreen2"
692 "SeaGreen1"
693 "DarkSeaGreen4"
694 "DarkSeaGreen3"
695 "DarkSeaGreen2"
696 "DarkSeaGreen1"
697 "aquamarine4"
698 "aquamarine3"
699 "aquamarine2"
700 "aquamarine1"
701 "DarkSlateGray4"
702 "DarkSlateGray3"
703 "DarkSlateGray2"
704 "DarkSlateGray1"
705 "cyan4"
706 "cyan3"
707 "cyan2"
708 "cyan1"
709 "turquoise4"
710 "turquoise3"
711 "turquoise2"
712 "turquoise1"
713 "CadetBlue4"
714 "CadetBlue3"
715 "CadetBlue2"
716 "CadetBlue1"
717 "PaleTurquoise4"
718 "PaleTurquoise3"
719 "PaleTurquoise2"
720 "PaleTurquoise1"
721 "LightCyan4"
722 "LightCyan3"
723 "LightCyan2"
724 "LightCyan1"
725 "LightBlue4"
726 "LightBlue3"
727 "LightBlue2"
728 "LightBlue1"
729 "LightSteelBlue4"
730 "LightSteelBlue3"
731 "LightSteelBlue2"
732 "LightSteelBlue1"
733 "SlateGray4"
734 "SlateGray3"
735 "SlateGray2"
736 "SlateGray1"
737 "LightSkyBlue4"
738 "LightSkyBlue3"
739 "LightSkyBlue2"
740 "LightSkyBlue1"
741 "SkyBlue4"
742 "SkyBlue3"
743 "SkyBlue2"
744 "SkyBlue1"
745 "DeepSkyBlue4"
746 "DeepSkyBlue3"
747 "DeepSkyBlue2"
748 "DeepSkyBlue1"
749 "SteelBlue4"
750 "SteelBlue3"
751 "SteelBlue2"
752 "SteelBlue1"
753 "DodgerBlue4"
754 "DodgerBlue3"
755 "DodgerBlue2"
756 "DodgerBlue1"
757 "blue4"
758 "blue3"
759 "blue2"
760 "blue1"
761 "RoyalBlue4"
762 "RoyalBlue3"
763 "RoyalBlue2"
764 "RoyalBlue1"
765 "SlateBlue4"
766 "SlateBlue3"
767 "SlateBlue2"
768 "SlateBlue1"
769 "azure4"
770 "azure3"
771 "azure2"
772 "azure1"
773 "MistyRose4"
774 "MistyRose3"
775 "MistyRose2"
776 "MistyRose1"
777 "LavenderBlush4"
778 "LavenderBlush3"
779 "LavenderBlush2"
780 "LavenderBlush1"
781 "honeydew4"
782 "honeydew3"
783 "honeydew2"
784 "honeydew1"
785 "ivory4"
786 "ivory3"
787 "ivory2"
788 "ivory1"
789 "cornsilk4"
790 "cornsilk3"
791 "cornsilk2"
792 "cornsilk1"
793 "LemonChiffon4"
794 "LemonChiffon3"
795 "LemonChiffon2"
796 "LemonChiffon1"
797 "NavajoWhite4"
798 "NavajoWhite3"
799 "NavajoWhite2"
800 "NavajoWhite1"
801 "PeachPuff4"
802 "PeachPuff3"
803 "PeachPuff2"
804 "PeachPuff1"
805 "bisque4"
806 "bisque3"
807 "bisque2"
808 "bisque1"
809 "AntiqueWhite4"
810 "AntiqueWhite3"
811 "AntiqueWhite2"
812 "AntiqueWhite1"
813 "seashell4"
814 "seashell3"
815 "seashell2"
816 "seashell1"
817 "snow4"
818 "snow3"
819 "snow2"
820 "snow1"
821 "thistle"
822 "MediumPurple"
823 "medium purple"
824 "purple"
825 "BlueViolet"
826 "blue violet"
827 "DarkViolet"
828 "dark violet"
829 "DarkOrchid"
830 "dark orchid"
831 "MediumOrchid"
832 "medium orchid"
833 "orchid"
834 "plum"
835 "violet"
836 "magenta"
837 "VioletRed"
838 "violet red"
839 "MediumVioletRed"
840 "medium violet red"
841 "maroon"
842 "PaleVioletRed"
843 "pale violet red"
844 "LightPink"
845 "light pink"
846 "pink"
847 "DeepPink"
848 "deep pink"
849 "HotPink"
850 "hot pink"
851 "red"
852 "OrangeRed"
853 "orange red"
854 "tomato"
855 "LightCoral"
856 "light coral"
857 "coral"
858 "DarkOrange"
859 "dark orange"
860 "orange"
861 "LightSalmon"
862 "light salmon"
863 "salmon"
864 "DarkSalmon"
865 "dark salmon"
866 "brown"
867 "firebrick"
868 "chocolate"
869 "tan"
870 "SandyBrown"
871 "sandy brown"
872 "wheat"
873 "beige"
874 "burlywood"
875 "peru"
876 "sienna"
877 "SaddleBrown"
878 "saddle brown"
879 "IndianRed"
880 "indian red"
881 "RosyBrown"
882 "rosy brown"
883 "DarkGoldenrod"
884 "dark goldenrod"
885 "goldenrod"
886 "LightGoldenrod"
887 "light goldenrod"
888 "gold"
889 "yellow"
890 "LightYellow"
891 "light yellow"
892 "LightGoldenrodYellow"
893 "light goldenrod yellow"
894 "PaleGoldenrod"
895 "pale goldenrod"
896 "khaki"
897 "DarkKhaki"
898 "dark khaki"
899 "OliveDrab"
900 "olive drab"
901 "ForestGreen"
902 "forest green"
903 "YellowGreen"
904 "yellow green"
905 "LimeGreen"
906 "lime green"
907 "GreenYellow"
908 "green yellow"
909 "MediumSpringGreen"
910 "medium spring green"
911 "chartreuse"
912 "green"
913 "LawnGreen"
914 "lawn green"
915 "SpringGreen"
916 "spring green"
917 "PaleGreen"
918 "pale green"
919 "LightSeaGreen"
920 "light sea green"
921 "MediumSeaGreen"
922 "medium sea green"
923 "SeaGreen"
924 "sea green"
925 "DarkSeaGreen"
926 "dark sea green"
927 "DarkOliveGreen"
928 "dark olive green"
929 "DarkGreen"
930 "dark green"
931 "aquamarine"
932 "MediumAquamarine"
933 "medium aquamarine"
934 "CadetBlue"
935 "cadet blue"
936 "LightCyan"
937 "light cyan"
938 "cyan"
939 "turquoise"
940 "MediumTurquoise"
941 "medium turquoise"
942 "DarkTurquoise"
943 "dark turquoise"
944 "PaleTurquoise"
945 "pale turquoise"
946 "PowderBlue"
947 "powder blue"
948 "LightBlue"
949 "light blue"
950 "LightSteelBlue"
951 "light steel blue"
952 "SteelBlue"
953 "steel blue"
954 "LightSkyBlue"
955 "light sky blue"
956 "SkyBlue"
957 "sky blue"
958 "DeepSkyBlue"
959 "deep sky blue"
960 "DodgerBlue"
961 "dodger blue"
962 "blue"
963 "RoyalBlue"
964 "royal blue"
965 "MediumBlue"
966 "medium blue"
967 "LightSlateBlue"
968 "light slate blue"
969 "MediumSlateBlue"
970 "medium slate blue"
971 "SlateBlue"
972 "slate blue"
973 "DarkSlateBlue"
974 "dark slate blue"
975 "CornflowerBlue"
976 "cornflower blue"
977 "NavyBlue"
978 "navy blue"
979 "navy"
980 "MidnightBlue"
981 "midnight blue"
982 "LightGray"
983 "light gray"
984 "LightGrey"
985 "light grey"
986 "grey"
987 "gray"
988 "LightSlateGrey"
989 "light slate grey"
990 "LightSlateGray"
991 "light slate gray"
992 "SlateGrey"
993 "slate grey"
994 "SlateGray"
995 "slate gray"
996 "DimGrey"
997 "dim grey"
998 "DimGray"
999 "dim gray"
1000 "DarkSlateGrey"
1001 "dark slate grey"
1002 "DarkSlateGray"
1003 "dark slate gray"
1004 "black"
1005 "white"
1006 "MistyRose"
1007 "misty rose"
1008 "LavenderBlush"
1009 "lavender blush"
1010 "lavender"
1011 "AliceBlue"
1012 "alice blue"
1013 "azure"
1014 "MintCream"
1015 "mint cream"
1016 "honeydew"
1017 "seashell"
1018 "LemonChiffon"
1019 "lemon chiffon"
1020 "ivory"
1021 "cornsilk"
1022 "moccasin"
1023 "NavajoWhite"
1024 "navajo white"
1025 "PeachPuff"
1026 "peach puff"
1027 "bisque"
1028 "BlanchedAlmond"
1029 "blanched almond"
1030 "PapayaWhip"
1031 "papaya whip"
1032 "AntiqueWhite"
1033 "antique white"
1034 "linen"
1035 "OldLace"
1036 "old lace"
1037 "FloralWhite"
1038 "floral white"
1039 "gainsboro"
1040 "WhiteSmoke"
1041 "white smoke"
1042 "GhostWhite"
1043 "ghost white"
1044 "snow")
1045 "The list of X colors from the `rgb.txt' file.
1046 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1047
1048 (defun xw-defined-colors (&optional frame)
1049 "Internal function called by `defined-colors', which see."
1050 (or frame (setq frame (selected-frame)))
1051 (let ((all-colors x-colors)
1052 (this-color nil)
1053 (defined-colors nil))
1054 (while all-colors
1055 (setq this-color (car all-colors)
1056 all-colors (cdr all-colors))
1057 (and (color-supported-p this-color frame t)
1058 (setq defined-colors (cons this-color defined-colors))))
1059 defined-colors))
1060 \f
1061 ;;;; Function keys
1062
1063 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
1064 global-map)
1065
1066 ;; Map certain keypad keys into ASCII characters
1067 ;; that people usually expect.
1068 (define-key function-key-map [backspace] [?\d])
1069 (define-key function-key-map [delete] [?\d])
1070 (define-key function-key-map [tab] [?\t])
1071 (define-key function-key-map [linefeed] [?\n])
1072 (define-key function-key-map [clear] [?\C-l])
1073 (define-key function-key-map [return] [?\C-m])
1074 (define-key function-key-map [escape] [?\e])
1075 (define-key function-key-map [M-backspace] [?\M-\d])
1076 (define-key function-key-map [M-delete] [?\M-\d])
1077 (define-key function-key-map [M-tab] [?\M-\t])
1078 (define-key function-key-map [M-linefeed] [?\M-\n])
1079 (define-key function-key-map [M-clear] [?\M-\C-l])
1080 (define-key function-key-map [M-return] [?\M-\C-m])
1081 (define-key function-key-map [M-escape] [?\M-\e])
1082
1083 ;; These tell read-char how to convert
1084 ;; these special chars to ASCII.
1085 (put 'backspace 'ascii-character ?\d)
1086 (put 'delete 'ascii-character ?\d)
1087 (put 'tab 'ascii-character ?\t)
1088 (put 'linefeed 'ascii-character ?\n)
1089 (put 'clear 'ascii-character ?\C-l)
1090 (put 'return 'ascii-character ?\C-m)
1091 (put 'escape 'ascii-character ?\e)
1092
1093 ;; Modifier name `ctrl' is an alias of `control'.
1094 (put 'ctrl 'modifier-value (get 'control 'modifier-value))
1095
1096 \f
1097 ;;;; Script codes and coding systems
1098 (defconst mac-script-code-coding-systems
1099 '((0 . mac-roman) ; smRoman
1100 (1 . japanese-shift-jis) ; smJapanese
1101 (2 . chinese-big5) ; smTradChinese
1102 (3 . korean-iso-8bit) ; smKorean
1103 (7 . mac-cyrillic) ; smCyrillic
1104 (25 . chinese-iso-8bit) ; smSimpChinese
1105 (29 . mac-centraleurroman) ; smCentralEuroRoman
1106 )
1107 "Alist of Mac script codes vs Emacs coding systems.")
1108
1109 (defun mac-add-charset-info (xlfd-charset mac-text-encoding)
1110 "Add a character set to display with Mac fonts.
1111 Create an entry in `mac-charset-info-alist'.
1112 XLFD-CHARSET is a string which will appear in the XLFD font name
1113 to identify the character set. MAC-TEXT-ENCODING is the
1114 correspoinding TextEncodingBase value."
1115 (add-to-list 'mac-charset-info-alist
1116 (list xlfd-charset mac-text-encoding
1117 (cdr (assq mac-text-encoding
1118 mac-script-code-coding-systems)))))
1119
1120 (setq mac-charset-info-alist nil)
1121 (mac-add-charset-info "mac-roman" 0)
1122 (mac-add-charset-info "jisx0208.1983-sjis" 1)
1123 (mac-add-charset-info "jisx0201.1976-0" 1)
1124 (mac-add-charset-info "big5-0" 2)
1125 (mac-add-charset-info "ksc5601.1989-0" 3)
1126 (mac-add-charset-info "mac-cyrillic" 7)
1127 (mac-add-charset-info "gb2312.1980-0" 25)
1128 (mac-add-charset-info "mac-centraleurroman" 29)
1129 (mac-add-charset-info "mac-symbol" 33)
1130 (mac-add-charset-info "adobe-fontspecific" 33) ; for X-Symbol
1131 (mac-add-charset-info "mac-dingbats" 34)
1132 (mac-add-charset-info "iso10646-1" 126) ; for ATSUI
1133
1134 (define-charset 'mac-centraleurroman
1135 "Mac Central European Roman"
1136 :short-name "Mac CE"
1137 :ascii-compatible-p t
1138 :code-space [0 255]
1139 :map
1140 (let ((tbl
1141 [?\Ä ?\Ā ?\ā ?\É ?\Ą ?\Ö ?\Ü ?\á ?\ą ?\Č ?\ä ?\č ?\Ć ?\ć ?\é ?\Ź
1142 ?\ź ?\Ď ?\í ?\ď ?\Ē ?\ē ?\Ė ?\ó ?\ė ?\ô ?\ö ?\õ ?\ú ?\Ě ?\ě ?\ü
1143 ?\† ?\° ?\Ę ?\£ ?\§ ?\• ?\¶ ?\ß ?\® ?\© ?\™ ?\ę ?\¨ ?\≠ ?\ģ ?\Į
1144 ?\į ?\Ī ?\≤ ?\≥ ?\ī ?\Ķ ?\∂ ?\∑ ?\ł ?\Ļ ?\ļ ?\Ľ ?\ľ ?\Ĺ ?\ĺ ?\Ņ
1145 ?\ņ ?\Ń ?\¬ ?\√ ?\ń ?\Ň ?\∆ ?\« ?\» ?\… ?\  ?\ň ?\Ő ?\Õ ?\ő ?\Ō
1146 ?\– ?\— ?\“ ?\” ?\‘ ?\’ ?\÷ ?\◊ ?\ō ?\Ŕ ?\ŕ ?\Ř ?\‹ ?\› ?\ř ?\Ŗ
1147 ?\ŗ ?\Š ?\‚ ?\„ ?\š ?\Ś ?\ś ?\Á ?\Ť ?\ť ?\Í ?\Ž ?\ž ?\Ū ?\Ó ?\Ô
1148 ?\ū ?\Ů ?\Ú ?\ů ?\Ű ?\ű ?\Ų ?\ų ?\Ý ?\ý ?\ķ ?\Ż ?\Ł ?\ż ?\Ģ ?\ˇ])
1149 (map (make-vector 512 nil)))
1150 (or (= (length tbl) 128)
1151 (error "Invalid vector length: %d" (length tbl)))
1152 (dotimes (i 128)
1153 (aset map (* i 2) i)
1154 (aset map (1+ (* i 2)) i))
1155 (dotimes (i 128)
1156 (aset map (+ 256 (* i 2)) (+ 128 i))
1157 (aset map (+ 256 (1+ (* i 2))) (aref tbl i)))
1158 map))
1159
1160 (define-coding-system 'mac-centraleurroman
1161 "Mac Central European Roman Encoding (MIME:x-mac-centraleurroman)."
1162 :coding-type 'charset
1163 :mnemonic ?*
1164 :charset-list '(mac-centraleurroman)
1165 :mime-charset 'x-mac-centraleurroman)
1166
1167 (define-charset 'mac-cyrillic
1168 "Mac Cyrillic"
1169 :short-name "Mac CYRILLIC"
1170 :ascii-compatible-p t
1171 :code-space [0 255]
1172 :map
1173 (let ((tbl
1174 [?\А ?\Б ?\В ?\Г ?\Д ?\Е ?\Ж ?\З ?\И ?\Й ?\К ?\Л ?\М ?\Н ?\О ?\П
1175 ?\Р ?\С ?\Т ?\У ?\Ф ?\Х ?\Ц ?\Ч ?\Ш ?\Щ ?\Ъ ?\Ы ?\Ь ?\Э ?\Ю ?\Я
1176 ?\† ?\° ?\Ґ ?\£ ?\§ ?\• ?\¶ ?\І ?\® ?\© ?\™ ?\Ђ ?\ђ ?\≠ ?\Ѓ ?\ѓ
1177 ?\∞ ?\± ?\≤ ?\≥ ?\і ?\µ ?\ґ ?\Ј ?\Є ?\є ?\Ї ?\ї ?\Љ ?\љ ?\Њ ?\њ
1178 ?\ј ?\Ѕ ?\¬ ?\√ ?\ƒ ?\≈ ?\∆ ?\« ?\» ?\… ?\  ?\Ћ ?\ћ ?\Ќ ?\ќ ?\ѕ
1179 ?\– ?\— ?\“ ?\” ?\‘ ?\’ ?\÷ ?\„ ?\Ў ?\ў ?\Џ ?\џ ?\№ ?\Ё ?\ё ?\я
1180 ?\а ?\б ?\в ?\г ?\д ?\е ?\ж ?\з ?\и ?\й ?\к ?\л ?\м ?\н ?\о ?\п
1181 ?\р ?\с ?\т ?\у ?\ф ?\х ?\ц ?\ч ?\ш ?\щ ?\ъ ?\ы ?\ь ?\э ?\ю ?\€])
1182 (map (make-vector 512 nil)))
1183 (or (= (length tbl) 128)
1184 (error "Invalid vector length: %d" (length tbl)))
1185 (dotimes (i 128)
1186 (aset map (* i 2) i)
1187 (aset map (1+ (* i 2)) i))
1188 (dotimes (i 128)
1189 (aset map (+ 256 (* i 2)) (+ 128 i))
1190 (aset map (+ 256 (1+ (* i 2))) (aref tbl i)))
1191 map))
1192
1193 (define-coding-system 'mac-cyrillic
1194 "Mac Cyrillic Encoding (MIME:x-mac-cyrillic)."
1195 :coding-type 'charset
1196 :mnemonic ?*
1197 :charset-list '(mac-cyrillic)
1198 :mime-charset 'x-mac-cyrillic)
1199
1200 (define-charset 'mac-symbol
1201 "Mac Symbol"
1202 :short-name "Mac SYMBOL"
1203 :code-space [32 254]
1204 :map
1205 (let ((tbl-32-126
1206 [?\ ?\! ?\∀ ?\# ?\∃ ?\% ?\& ?\∍ ?\( ?\) ?\∗ ?\+ ?\, ?\− ?\. ?\/
1207 ?\0 ?\1 ?\2 ?\3 ?\4 ?\5 ?\6 ?\7 ?\8 ?\9 ?\: ?\; ?\< ?\= ?\> ?\?
1208 ?\≅ ?\Α ?\Β ?\Χ ?\Δ ?\Ε ?\Φ ?\Γ ?\Η ?\Ι ?\ϑ ?\Κ ?\Λ ?\Μ ?\Ν ?\Ο
1209 ?\Π ?\Θ ?\Ρ ?\Σ ?\Τ ?\Υ ?\ς ?\Ω ?\Ξ ?\Ψ ?\Ζ ?\[ ?\∴ ?\] ?\⊥ ?\_
1210 ?\ ?\α ?\β ?\χ ?\δ ?\ε ?\φ ?\γ ?\η ?\ι ?\ϕ ?\κ ?\λ ?\μ ?\ν ?\ο
1211 ?\π ?\θ ?\ρ ?\σ ?\τ ?\υ ?\ϖ ?\ω ?\ξ ?\ψ ?\ζ ?\{ ?\| ?\} ?\∼])
1212 (map-32-126 (make-vector (* (1+ (- 126 32)) 2) nil))
1213 (tbl-160-254
1214 ;; Mapping of the following characters are changed from the
1215 ;; original one:
1216 ;; 0xE2 0x00AE+0xF87F->0x00AE # REGISTERED SIGN, alternate: sans serif
1217 ;; 0xE3 0x00A9+0xF87F->0x00A9 # COPYRIGHT SIGN, alternate: sans serif
1218 ;; 0xE4 0x2122+0xF87F->0x2122 # TRADE MARK SIGN, alternate: sans serif
1219 [?\€ ?\ϒ ?\′ ?\≤ ?\⁄ ?\∞ ?\ƒ ?\♣ ?\♦ ?\♥ ?\♠ ?\↔ ?\← ?\↑ ?\→ ?\↓
1220 ?\° ?\± ?\″ ?\≥ ?\× ?\∝ ?\∂ ?\• ?\÷ ?\≠ ?\≡ ?\≈ ?\… ?\⏐ ?\⎯ ?\↵
1221 ?\ℵ ?\ℑ ?\ℜ ?\℘ ?\⊗ ?\⊕ ?\∅ ?\∩ ?\∪ ?\⊃ ?\⊇ ?\⊄ ?\⊂ ?\⊆ ?\∈ ?\∉
1222 ?\∠ ?\∇ ?\® ?\© ?\™ ?\∏ ?\√ ?\⋅ ?\¬ ?\∧ ?\∨ ?\⇔ ?\⇐ ?\⇑ ?\⇒ ?\⇓
1223 ?\◊ ?\〈 ?\® ?\© ?\™ ?\∑ ?\⎛ ?\⎜ ?\⎝ ?\⎡ ?\⎢ ?\⎣ ?\⎧ ?\⎨ ?\⎩ ?\⎪
1224 ?\ ?\〉 ?\∫ ?\⌠ ?\⎮ ?\⌡ ?\⎞ ?\⎟ ?\⎠ ?\⎤ ?\⎥ ?\⎦ ?\⎫ ?\⎬ ?\⎭])
1225 (map-160-254 (make-vector (* (1+ (- 254 160)) 2) nil)))
1226 (dotimes (i (1+ (- 126 32)))
1227 (aset map-32-126 (* i 2) (+ 32 i))
1228 (aset map-32-126 (1+ (* i 2)) (aref tbl-32-126 i)))
1229 (dotimes (i (1+ (- 254 160)))
1230 (aset map-160-254 (* i 2) (+ 160 i))
1231 (aset map-160-254 (1+ (* i 2)) (aref tbl-160-254 i)))
1232 (vconcat map-32-126 map-160-254)))
1233
1234 (define-charset 'mac-dingbats
1235 "Mac Dingbats"
1236 :short-name "Mac Dingbats"
1237 :code-space [32 254]
1238 :map
1239 (let ((tbl-32-126
1240 [?\ ?\✁ ?\✂ ?\✃ ?\✄ ?\☎ ?\✆ ?\✇ ?\✈ ?\✉ ?\☛ ?\☞ ?\✌ ?\✍ ?\✎ ?\✏
1241 ?\✐ ?\✑ ?\✒ ?\✓ ?\✔ ?\✕ ?\✖ ?\✗ ?\✘ ?\✙ ?\✚ ?\✛ ?\✜ ?\✝ ?\✞ ?\✟
1242 ?\✠ ?\✡ ?\✢ ?\✣ ?\✤ ?\✥ ?\✦ ?\✧ ?\★ ?\✩ ?\✪ ?\✫ ?\✬ ?\✭ ?\✮ ?\✯
1243 ?\✰ ?\✱ ?\✲ ?\✳ ?\✴ ?\✵ ?\✶ ?\✷ ?\✸ ?\✹ ?\✺ ?\✻ ?\✼ ?\✽ ?\✾ ?\✿
1244 ?\❀ ?\❁ ?\❂ ?\❃ ?\❄ ?\❅ ?\❆ ?\❇ ?\❈ ?\❉ ?\❊ ?\❋ ?\● ?\❍ ?\■ ?\❏
1245 ?\❐ ?\❑ ?\❒ ?\▲ ?\▼ ?\◆ ?\❖ ?\◗ ?\❘ ?\❙ ?\❚ ?\❛ ?\❜ ?\❝ ?\❞])
1246 (map-32-126 (make-vector (* (1+ (- 126 32)) 2) nil))
1247 (tbl-128-141
1248 [?\❨ ?\❩ ?\❪ ?\❫ ?\❬ ?\❭ ?\❮ ?\❯ ?\❰ ?\❱ ?\❲ ?\❳ ?\❴ ?\❵])
1249 (map-128-141 (make-vector (* (1+ (- 141 128)) 2) nil))
1250 (tbl-161-239
1251 [?\❡ ?\❢ ?\❣ ?\❤ ?\❥ ?\❦ ?\❧ ?\♣ ?\♦ ?\♥ ?\♠ ?\① ?\② ?\③ ?\④
1252 ?\⑤ ?\⑥ ?\⑦ ?\⑧ ?\⑨ ?\⑩ ?\❶ ?\❷ ?\❸ ?\❹ ?\❺ ?\❻ ?\❼ ?\❽ ?\❾ ?\❿
1253 ?\➀ ?\➁ ?\➂ ?\➃ ?\➄ ?\➅ ?\➆ ?\➇ ?\➈ ?\➉ ?\➊ ?\➋ ?\➌ ?\➍ ?\➎ ?\➏
1254 ?\➐ ?\➑ ?\➒ ?\➓ ?\➔ ?\→ ?\↔ ?\↕ ?\➘ ?\➙ ?\➚ ?\➛ ?\➜ ?\➝ ?\➞ ?\➟
1255 ?\➠ ?\➡ ?\➢ ?\➣ ?\➤ ?\➥ ?\➦ ?\➧ ?\➨ ?\➩ ?\➪ ?\➫ ?\➬ ?\➭ ?\➮ ?\➯])
1256 (map-161-239 (make-vector (* (1+ (- 239 161)) 2) nil))
1257 (tbl-241-254
1258 [?\➱ ?\➲ ?\➳ ?\➴ ?\➵ ?\➶ ?\➷ ?\➸ ?\➹ ?\➺ ?\➻ ?\➼ ?\➽ ?\➾])
1259 (map-241-254 (make-vector (* (1+ (- 254 241)) 2) nil)))
1260 (dotimes (i (1+ (- 126 32)))
1261 (aset map-32-126 (* i 2) (+ 32 i))
1262 (aset map-32-126 (1+ (* i 2)) (aref tbl-32-126 i)))
1263 (dotimes (i (1+ (- 141 128)))
1264 (aset map-128-141 (* i 2) (+ 128 i))
1265 (aset map-128-141 (1+ (* i 2)) (aref tbl-128-141 i)))
1266 (dotimes (i (1+ (- 239 161)))
1267 (aset map-161-239 (* i 2) (+ 161 i))
1268 (aset map-161-239 (1+ (* i 2)) (aref tbl-161-239 i)))
1269 (dotimes (i (1+ (- 254 241)))
1270 (aset map-241-254 (* i 2) (+ 241 i))
1271 (aset map-241-254 (1+ (* i 2)) (aref tbl-241-254 i)))
1272 (vconcat map-32-126 map-128-141 map-161-239 map-241-254)))
1273
1274 (defconst mac-system-coding-system
1275 (let ((base (or (cdr (assq mac-system-script-code
1276 mac-script-code-coding-systems))
1277 'mac-roman)))
1278 (if (eq system-type 'darwin)
1279 base
1280 (coding-system-change-eol-conversion base 'mac)))
1281 "Coding system derived from the system script code.")
1282
1283 (set-selection-coding-system mac-system-coding-system)
1284
1285 \f
1286 ;;;; Keyboard layout/language change events
1287 (defun mac-handle-language-change (event)
1288 "Set keyboard coding system to what is specified in EVENT."
1289 (interactive "e")
1290 (let ((coding-system
1291 (cdr (assq (car (cadr event)) mac-script-code-coding-systems))))
1292 (set-keyboard-coding-system (or coding-system 'mac-roman))
1293 ;; MacJapanese maps reverse solidus to ?\x80.
1294 (if (eq coding-system 'japanese-shift-jis)
1295 (define-key key-translation-map [?\x80] "\\"))))
1296
1297 (define-key special-event-map [language-change] 'mac-handle-language-change)
1298
1299 \f
1300 ;;;; Conversion between common flavors and Lisp string.
1301
1302 (defconst mac-text-encoding-ascii #x600
1303 "ASCII text encoding.")
1304
1305 (defconst mac-text-encoding-mac-japanese-basic-variant #x20001
1306 "MacJapanese text encoding without Apple double-byte extensions.")
1307
1308 (defun mac-utxt-to-string (data &optional coding-system)
1309 (or coding-system (setq coding-system mac-system-coding-system))
1310 (let* ((encoding
1311 (and (eq system-type 'darwin)
1312 (eq (coding-system-base coding-system) 'japanese-shift-jis)
1313 mac-text-encoding-mac-japanese-basic-variant))
1314 (str (and (fboundp 'mac-code-convert-string)
1315 (mac-code-convert-string data nil
1316 (or encoding coding-system)))))
1317 (when str
1318 (setq str (decode-coding-string str coding-system))
1319 (if (eq encoding mac-text-encoding-mac-japanese-basic-variant)
1320 ;; Does it contain Apple one-byte extensions other than
1321 ;; reverse solidus?
1322 (if (string-match "[\xa0\xfd-\xff]" str)
1323 (setq str nil)
1324 ;; ASCII-only?
1325 (unless (mac-code-convert-string data nil mac-text-encoding-ascii)
1326 (subst-char-in-string ?\x5c ?\¥ str t)
1327 (subst-char-in-string ?\x80 ?\\ str t)))))
1328 (or str
1329 (decode-coding-string data
1330 (if (eq (byteorder) ?B) 'utf-16be 'utf-16le)))))
1331
1332 (defun mac-string-to-utxt (string &optional coding-system)
1333 (or coding-system (setq coding-system mac-system-coding-system))
1334 (let (data encoding)
1335 (when (and (fboundp 'mac-code-convert-string)
1336 (memq (coding-system-base coding-system)
1337 (find-coding-systems-string string)))
1338 (setq coding-system
1339 (coding-system-change-eol-conversion coding-system 'mac))
1340 (let ((str string))
1341 (when (and (eq system-type 'darwin)
1342 (eq coding-system 'japanese-shift-jis-mac))
1343 (setq encoding mac-text-encoding-mac-japanese-basic-variant)
1344 (setq str (subst-char-in-string ?\\ ?\x80 str))
1345 (subst-char-in-string ?\¥ ?\x5c str t)
1346 ;; ASCII-only?
1347 (if (string-match "\\`[\x00-\x7f]*\\'" str)
1348 (setq str nil)))
1349 (and str
1350 (setq data (mac-code-convert-string
1351 (encode-coding-string str coding-system)
1352 (or encoding coding-system) nil)))))
1353 (or data (encode-coding-string string (if (eq (byteorder) ?B)
1354 'utf-16be-mac
1355 'utf-16le-mac)))))
1356
1357 (defun mac-TEXT-to-string (data &optional coding-system)
1358 (or coding-system (setq coding-system mac-system-coding-system))
1359 (prog1 (setq data (decode-coding-string data coding-system))
1360 (when (eq (coding-system-base coding-system) 'japanese-shift-jis)
1361 ;; (subst-char-in-string ?\x5c ?\¥ data t)
1362 (subst-char-in-string ?\x80 ?\\ data t))))
1363
1364 (defun mac-string-to-TEXT (string &optional coding-system)
1365 (or coding-system (setq coding-system mac-system-coding-system))
1366 (let ((encodables (find-coding-systems-string string))
1367 (rest mac-script-code-coding-systems))
1368 (unless (memq (coding-system-base coding-system) encodables)
1369 (while (and rest (not (memq (cdar rest) encodables)))
1370 (setq rest (cdr rest)))
1371 (if rest
1372 (setq coding-system (cdar rest)))))
1373 (setq coding-system
1374 (coding-system-change-eol-conversion coding-system 'mac))
1375 (when (eq coding-system 'japanese-shift-jis-mac)
1376 ;; (setq string (subst-char-in-string ?\\ ?\x80 string))
1377 (setq string (subst-char-in-string ?\¥ ?\x5c string)))
1378 (encode-coding-string string coding-system))
1379
1380 (defun mac-furl-to-string (data)
1381 ;; Remove a trailing nul character.
1382 (let ((len (length data)))
1383 (if (and (> len 0) (= (aref data (1- len)) ?\0))
1384 (substring data 0 (1- len))
1385 data)))
1386
1387 (defun mac-TIFF-to-string (data &optional text)
1388 (prog1 (or text (setq text (copy-sequence " ")))
1389 (put-text-property 0 (length text) 'display (create-image data 'tiff t)
1390 text)))
1391 \f
1392 ;;;; Selections
1393
1394 ;;; We keep track of the last text selected here, so we can check the
1395 ;;; current selection against it, and avoid passing back our own text
1396 ;;; from x-get-selection-value.
1397 (defvar x-last-selected-text-clipboard nil
1398 "The value of the CLIPBOARD selection last time we selected or
1399 pasted text.")
1400 (defvar x-last-selected-text-primary nil
1401 "The value of the PRIMARY X selection last time we selected or
1402 pasted text.")
1403
1404 (defcustom x-select-enable-clipboard t
1405 "*Non-nil means cutting and pasting uses the clipboard.
1406 This is in addition to the primary selection."
1407 :type 'boolean
1408 :group 'killing)
1409
1410 ;;; Make TEXT, a string, the primary X selection.
1411 (defun x-select-text (text &optional push)
1412 (x-set-selection 'PRIMARY text)
1413 (setq x-last-selected-text-primary text)
1414 (if (not x-select-enable-clipboard)
1415 (setq x-last-selected-text-clipboard nil)
1416 (x-set-selection 'CLIPBOARD text)
1417 (setq x-last-selected-text-clipboard text))
1418 )
1419
1420 (defun x-get-selection (&optional type data-type)
1421 "Return the value of a selection.
1422 The argument TYPE (default `PRIMARY') says which selection,
1423 and the argument DATA-TYPE (default `STRING') says
1424 how to convert the data.
1425
1426 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
1427 only a few symbols are commonly used. They conventionally have
1428 all upper-case names. The most often used ones, in addition to
1429 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
1430
1431 DATA-TYPE is usually `STRING', but can also be one of the symbols
1432 in `selection-converter-alist', which see."
1433 (let ((data (x-get-selection-internal (or type 'PRIMARY)
1434 (or data-type 'STRING)))
1435 (coding (or next-selection-coding-system
1436 selection-coding-system)))
1437 (when (and (stringp data)
1438 (setq data-type (get-text-property 0 'foreign-selection data)))
1439 (cond ((eq data-type 'public.utf16-plain-text)
1440 (setq data (mac-utxt-to-string data coding)))
1441 ((eq data-type 'com.apple.traditional-mac-plain-text)
1442 (setq data (mac-TEXT-to-string data coding)))
1443 ((eq data-type 'public.file-url)
1444 (setq data (mac-furl-to-string data))))
1445 (put-text-property 0 (length data) 'foreign-selection data-type data))
1446 data))
1447
1448 (defun x-selection-value (type)
1449 (let ((data-types '(public.utf16-plain-text
1450 com.apple.traditional-mac-plain-text
1451 public.file-url))
1452 text tiff-image)
1453 (while (and (null text) data-types)
1454 (setq text (condition-case nil
1455 (x-get-selection type (car data-types))
1456 (error nil)))
1457 (setq data-types (cdr data-types)))
1458 (if text
1459 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
1460 (setq tiff-image (condition-case nil
1461 (x-get-selection type 'public.tiff)
1462 (error nil)))
1463 (when tiff-image
1464 (remove-text-properties 0 (length tiff-image)
1465 '(foreign-selection nil) tiff-image)
1466 (setq text (mac-TIFF-to-string tiff-image text)))
1467 text))
1468
1469 ;;; Return the value of the current selection.
1470 ;;; Treat empty strings as if they were unset.
1471 ;;; If this function is called twice and finds the same text,
1472 ;;; it returns nil the second time. This is so that a single
1473 ;;; selection won't be added to the kill ring over and over.
1474 (defun x-get-selection-value ()
1475 (let (clip-text primary-text)
1476 (if (not x-select-enable-clipboard)
1477 (setq x-last-selected-text-clipboard nil)
1478 (setq clip-text (x-selection-value 'CLIPBOARD))
1479 (if (string= clip-text "") (setq clip-text nil))
1480
1481 ;; Check the CLIPBOARD selection for 'newness', is it different
1482 ;; from what we remebered them to be last time we did a
1483 ;; cut/paste operation.
1484 (setq clip-text
1485 (cond;; check clipboard
1486 ((or (not clip-text) (string= clip-text ""))
1487 (setq x-last-selected-text-clipboard nil))
1488 ((eq clip-text x-last-selected-text-clipboard) nil)
1489 ((string= clip-text x-last-selected-text-clipboard)
1490 ;; Record the newer string,
1491 ;; so subsequent calls can use the `eq' test.
1492 (setq x-last-selected-text-clipboard clip-text)
1493 nil)
1494 (t
1495 (setq x-last-selected-text-clipboard clip-text))))
1496 )
1497
1498 (setq primary-text (x-selection-value 'PRIMARY))
1499 ;; Check the PRIMARY selection for 'newness', is it different
1500 ;; from what we remebered them to be last time we did a
1501 ;; cut/paste operation.
1502 (setq primary-text
1503 (cond;; check primary selection
1504 ((or (not primary-text) (string= primary-text ""))
1505 (setq x-last-selected-text-primary nil))
1506 ((eq primary-text x-last-selected-text-primary) nil)
1507 ((string= primary-text x-last-selected-text-primary)
1508 ;; Record the newer string,
1509 ;; so subsequent calls can use the `eq' test.
1510 (setq x-last-selected-text-primary primary-text)
1511 nil)
1512 (t
1513 (setq x-last-selected-text-primary primary-text))))
1514
1515 ;; As we have done one selection, clear this now.
1516 (setq next-selection-coding-system nil)
1517
1518 ;; At this point we have recorded the current values for the
1519 ;; selection from clipboard (if we are supposed to) and primary,
1520 ;; So return the first one that has changed (which is the first
1521 ;; non-null one).
1522 (or clip-text primary-text)
1523 ))
1524
1525 (put 'CLIPBOARD 'mac-scrap-name "com.apple.scrap.clipboard")
1526 (when (eq system-type 'darwin)
1527 (put 'FIND 'mac-scrap-name "com.apple.scrap.find")
1528 (put 'PRIMARY 'mac-scrap-name
1529 (format "org.gnu.Emacs.%d.selection.PRIMARY" (emacs-pid))))
1530 (put 'com.apple.traditional-mac-plain-text 'mac-ostype "TEXT")
1531 (put 'public.utf16-plain-text 'mac-ostype "utxt")
1532 (put 'public.tiff 'mac-ostype "TIFF")
1533 (put 'public.file-url 'mac-ostype "furl")
1534
1535 (defun mac-select-convert-to-string (selection type value)
1536 (let ((str (cdr (xselect-convert-to-string selection nil value)))
1537 (coding (or next-selection-coding-system selection-coding-system)))
1538 (when str
1539 ;; If TYPE is nil, this is a local request, thus return STR as
1540 ;; is. Otherwise, encode STR.
1541 (if (not type)
1542 str
1543 (let ((inhibit-read-only t))
1544 (remove-text-properties 0 (length str) '(composition nil) str)
1545 (cond
1546 ((eq type 'public.utf16-plain-text)
1547 (setq str (mac-string-to-utxt str coding)))
1548 ((eq type 'com.apple.traditional-mac-plain-text)
1549 (setq str (mac-string-to-TEXT str coding)))
1550 (t
1551 (error "Unknown selection type: %S" type))
1552 )))
1553
1554 (setq next-selection-coding-system nil)
1555 (cons type str))))
1556
1557 (defun mac-select-convert-to-file-url (selection type value)
1558 (let ((filename (xselect-convert-to-filename selection type value))
1559 (coding (or file-name-coding-system default-file-name-coding-system)))
1560 (if (and filename coding)
1561 (setq filename (encode-coding-string filename coding)))
1562 (and filename
1563 (concat "file://localhost"
1564 (mapconcat 'url-hexify-string
1565 (split-string filename "/") "/")))))
1566
1567 (setq selection-converter-alist
1568 (nconc
1569 '((public.utf16-plain-text . mac-select-convert-to-string)
1570 (com.apple.traditional-mac-plain-text . mac-select-convert-to-string)
1571 ;; This is not enabled by default because the `Import Image'
1572 ;; menu makes Emacs crash or hang for unknown reasons.
1573 ;; (public.tiff . nil)
1574 (public.file-url . mac-select-convert-to-file-url)
1575 )
1576 selection-converter-alist))
1577 \f
1578 ;;;; Apple events, HICommand events, and Services menu
1579
1580 ;;; Event classes
1581 (put 'core-event 'mac-apple-event-class "aevt") ; kCoreEventClass
1582 (put 'internet-event 'mac-apple-event-class "GURL") ; kAEInternetEventClass
1583
1584 ;;; Event IDs
1585 ;; kCoreEventClass
1586 (put 'open-application 'mac-apple-event-id "oapp") ; kAEOpenApplication
1587 (put 'reopen-application 'mac-apple-event-id "rapp") ; kAEReopenApplication
1588 (put 'open-documents 'mac-apple-event-id "odoc") ; kAEOpenDocuments
1589 (put 'print-documents 'mac-apple-event-id "pdoc") ; kAEPrintDocuments
1590 (put 'open-contents 'mac-apple-event-id "ocon") ; kAEOpenContents
1591 (put 'quit-application 'mac-apple-event-id "quit") ; kAEQuitApplication
1592 (put 'application-died 'mac-apple-event-id "obit") ; kAEApplicationDied
1593 (put 'show-preferences 'mac-apple-event-id "pref") ; kAEShowPreferences
1594 (put 'autosave-now 'mac-apple-event-id "asav") ; kAEAutosaveNow
1595 ;; kAEInternetEventClass
1596 (put 'get-url 'mac-apple-event-id "GURL") ; kAEGetURL
1597 ;; Converted HI command events
1598 (put 'about 'mac-apple-event-id "abou") ; kHICommandAbout
1599
1600 (defmacro mac-event-spec (event)
1601 `(nth 1 ,event))
1602
1603 (defmacro mac-event-ae (event)
1604 `(nth 2 ,event))
1605
1606 (defun mac-ae-parameter (ae &optional keyword type)
1607 (or keyword (setq keyword "----")) ;; Direct object.
1608 (if (not (and (consp ae) (equal (car ae) "aevt")))
1609 (error "Not an Apple event: %S" ae)
1610 (let ((type-data (cdr (assoc keyword (cdr ae))))
1611 data)
1612 (when (and type type-data (not (equal type (car type-data))))
1613 (setq data (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1614 (setq type-data (if data (cons type data) nil)))
1615 type-data)))
1616
1617 (defun mac-ae-list (ae &optional keyword type)
1618 (or keyword (setq keyword "----")) ;; Direct object.
1619 (let ((desc (mac-ae-parameter ae keyword "list")))
1620 (cond ((null desc)
1621 nil)
1622 ((not (equal (car desc) "list"))
1623 (error "Parameter for \"%s\" is not a list" keyword))
1624 (t
1625 (if (null type)
1626 (cdr desc)
1627 (mapcar
1628 (lambda (type-data)
1629 (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1630 (cdr desc)))))))
1631
1632 (defun mac-ae-number (ae keyword)
1633 (let ((type-data (mac-ae-parameter ae keyword))
1634 str)
1635 (if (and type-data
1636 (setq str (mac-coerce-ae-data (car type-data)
1637 (cdr type-data) "TEXT")))
1638 (string-to-number str)
1639 nil)))
1640
1641 (defun mac-bytes-to-integer (bytes &optional from to)
1642 (or from (setq from 0))
1643 (or to (setq to (length bytes)))
1644 (let* ((len (- to from))
1645 (extended-sign-len (- (1+ (ceiling (log most-positive-fixnum 2)))
1646 (* 8 len)))
1647 (result 0))
1648 (dotimes (i len)
1649 (setq result (logior (lsh result 8)
1650 (aref bytes (+ from (if (eq (byteorder) ?B) i
1651 (- len i 1)))))))
1652 (if (> extended-sign-len 0)
1653 (ash (lsh result extended-sign-len) (- extended-sign-len))
1654 result)))
1655
1656 (defun mac-ae-selection-range (ae)
1657 ;; #pragma options align=mac68k
1658 ;; typedef struct SelectionRange {
1659 ;; short unused1; // 0 (not used)
1660 ;; short lineNum; // line to select (<0 to specify range)
1661 ;; long startRange; // start of selection range (if line < 0)
1662 ;; long endRange; // end of selection range (if line < 0)
1663 ;; long unused2; // 0 (not used)
1664 ;; long theDate; // modification date/time
1665 ;; } SelectionRange;
1666 ;; #pragma options align=reset
1667 (let ((range-bytes (cdr (mac-ae-parameter ae "kpos" "TEXT"))))
1668 (and range-bytes
1669 (list (mac-bytes-to-integer range-bytes 2 4)
1670 (mac-bytes-to-integer range-bytes 4 8)
1671 (mac-bytes-to-integer range-bytes 8 12)
1672 (mac-bytes-to-integer range-bytes 16 20)))))
1673
1674 ;; On Mac OS X 10.4 and later, the `open-document' event contains an
1675 ;; optional parameter keyAESearchText from the Spotlight search.
1676 (defun mac-ae-text-for-search (ae)
1677 (let ((utf8-text (cdr (mac-ae-parameter ae "stxt" "utf8"))))
1678 (and utf8-text
1679 (decode-coding-string utf8-text 'utf-8))))
1680
1681 (defun mac-ae-text (ae)
1682 (or (cdr (mac-ae-parameter ae nil "TEXT"))
1683 (error "No text in Apple event.")))
1684
1685 (defun mac-ae-frame (ae &optional keyword type)
1686 (let ((bytes (cdr (mac-ae-parameter ae keyword type))))
1687 (if (or (null bytes) (/= (length bytes) 4))
1688 (error "No window reference in Apple event.")
1689 (let ((window-id (mac-coerce-ae-data "long" bytes "TEXT"))
1690 (rest (frame-list))
1691 frame)
1692 (while (and (null frame) rest)
1693 (if (string= (frame-parameter (car rest) 'window-id) window-id)
1694 (setq frame (car rest)))
1695 (setq rest (cdr rest)))
1696 frame))))
1697
1698 (defun mac-ae-script-language (ae keyword)
1699 ;; struct WritingCode {
1700 ;; ScriptCode theScriptCode;
1701 ;; LangCode theLangCode;
1702 ;; };
1703 (let ((bytes (cdr (mac-ae-parameter ae keyword "intl"))))
1704 (and bytes
1705 (cons (mac-bytes-to-integer bytes 0 2)
1706 (mac-bytes-to-integer bytes 2 4)))))
1707
1708 (defun mac-bytes-to-text-range (bytes &optional from to)
1709 ;; struct TextRange {
1710 ;; long fStart;
1711 ;; long fEnd;
1712 ;; short fHiliteStyle;
1713 ;; };
1714 (or from (setq from 0))
1715 (or to (setq to (length bytes)))
1716 (and (= (- to from) (+ 4 4 2))
1717 (list (mac-bytes-to-integer bytes from (+ from 4))
1718 (mac-bytes-to-integer bytes (+ from 4) (+ from 8))
1719 (mac-bytes-to-integer bytes (+ from 8) to))))
1720
1721 (defun mac-ae-text-range-array (ae keyword)
1722 ;; struct TextRangeArray {
1723 ;; short fNumOfRanges;
1724 ;; TextRange fRange[1];
1725 ;; };
1726 (let* ((bytes (cdr (mac-ae-parameter ae keyword "tray")))
1727 (len (length bytes))
1728 nranges result)
1729 (when (and bytes (>= len 2)
1730 (progn
1731 (setq nranges (mac-bytes-to-integer bytes 0 2))
1732 (= len (+ 2 (* nranges 10)))))
1733 (setq result (make-vector nranges nil))
1734 (dotimes (i nranges)
1735 (aset result i
1736 (mac-bytes-to-text-range bytes (+ (* i 10) 2)
1737 (+ (* i 10) 12)))))
1738 result))
1739
1740 (defun mac-ae-open-documents (event)
1741 "Open the documents specified by the Apple event EVENT."
1742 (interactive "e")
1743 (let ((ae (mac-event-ae event)))
1744 (dolist (file-name (mac-ae-list ae nil 'undecoded-file-name))
1745 (if file-name
1746 (dnd-open-local-file
1747 (concat "file://"
1748 (mapconcat 'url-hexify-string
1749 (split-string file-name "/") "/")) nil)))
1750 (let ((selection-range (mac-ae-selection-range ae))
1751 (search-text (mac-ae-text-for-search ae)))
1752 (cond (selection-range
1753 (let ((line (car selection-range))
1754 (start (cadr selection-range))
1755 (end (nth 2 selection-range)))
1756 (if (> line 0)
1757 (goto-line line)
1758 (if (and (> start 0) (> end 0))
1759 (progn (set-mark start)
1760 (goto-char end))))))
1761 ((stringp search-text)
1762 (re-search-forward
1763 (mapconcat 'regexp-quote (split-string search-text) "\\|")
1764 nil t)))))
1765 (select-frame-set-input-focus (selected-frame)))
1766
1767 (defun mac-ae-get-url (event)
1768 "Open the URL specified by the Apple event EVENT.
1769 Currently the `mailto' scheme is supported."
1770 (interactive "e")
1771 (let* ((ae (mac-event-ae event))
1772 (parsed-url (url-generic-parse-url (mac-ae-text ae))))
1773 (if (string= (url-type parsed-url) "mailto")
1774 (url-mailto parsed-url)
1775 (mac-resume-apple-event ae t))))
1776
1777 (setq mac-apple-event-map (make-sparse-keymap))
1778
1779 ;; Received when Emacs is launched without associated documents.
1780 ;; Accept it as an Apple event, but no Emacs event is generated so as
1781 ;; not to erase the splash screen.
1782 (define-key mac-apple-event-map [core-event open-application] 0)
1783
1784 ;; Received when a dock or application icon is clicked and Emacs is
1785 ;; already running. Simply ignored. Another idea is to make a new
1786 ;; frame if all frames are invisible.
1787 (define-key mac-apple-event-map [core-event reopen-application] 'ignore)
1788
1789 (define-key mac-apple-event-map [core-event open-documents]
1790 'mac-ae-open-documents)
1791 (define-key mac-apple-event-map [core-event show-preferences] 'customize)
1792 (define-key mac-apple-event-map [core-event quit-application]
1793 'save-buffers-kill-emacs)
1794
1795 (define-key mac-apple-event-map [internet-event get-url] 'mac-ae-get-url)
1796
1797 (define-key mac-apple-event-map [hi-command about] 'display-splash-screen)
1798
1799 ;;; Converted Carbon Events
1800 (defun mac-handle-toolbar-switch-mode (event)
1801 "Toggle visibility of tool-bars in response to EVENT.
1802 With no keyboard modifiers, it toggles the visibility of the
1803 frame where the tool-bar toggle button was pressed. With some
1804 modifiers, it changes global tool-bar visibility setting."
1805 (interactive "e")
1806 (let* ((ae (mac-event-ae event))
1807 (modifiers (cdr (mac-ae-parameter ae "kmod"))))
1808 (if (and modifiers (not (string= modifiers "\000\000\000\000")))
1809 ;; Globally toggle tool-bar-mode if some modifier key is pressed.
1810 (tool-bar-mode)
1811 (let ((frame (mac-ae-frame ae)))
1812 (set-frame-parameter frame 'tool-bar-lines
1813 (if (= (frame-parameter frame 'tool-bar-lines) 0)
1814 1 0))))))
1815
1816 ;; kEventClassWindow/kEventWindowToolbarSwitchMode
1817 (define-key mac-apple-event-map [window toolbar-switch-mode]
1818 'mac-handle-toolbar-switch-mode)
1819
1820 ;;; Font panel
1821 (when (fboundp 'mac-set-font-panel-visibility)
1822
1823 (define-minor-mode mac-font-panel-mode
1824 "Toggle use of the font panel.
1825 With numeric ARG, display the font panel if and only if ARG is positive."
1826 :init-value nil
1827 :global t
1828 :group 'mac
1829 (mac-set-font-panel-visibility mac-font-panel-mode))
1830
1831 (defun mac-handle-font-panel-closed (event)
1832 "Update internal status in response to font panel closed EVENT."
1833 (interactive "e")
1834 ;; Synchronize with the minor mode variable.
1835 (mac-font-panel-mode 0))
1836
1837 (defun mac-handle-font-selection (event)
1838 "Change default face attributes according to font selection EVENT."
1839 (interactive "e")
1840 (let* ((ae (mac-event-ae event))
1841 (fm-font-size (mac-ae-number ae "fmsz"))
1842 (atsu-font-id (mac-ae-number ae "auid"))
1843 (attribute-values (gethash atsu-font-id mac-atsu-font-table)))
1844 (if fm-font-size
1845 (setq attribute-values
1846 `(:height ,(* 10 fm-font-size) ,@attribute-values)))
1847 (apply 'set-face-attribute 'default (selected-frame) attribute-values)))
1848
1849 ;; kEventClassFont/kEventFontPanelClosed
1850 (define-key mac-apple-event-map [font panel-closed]
1851 'mac-handle-font-panel-closed)
1852 ;; kEventClassFont/kEventFontSelection
1853 (define-key mac-apple-event-map [font selection] 'mac-handle-font-selection)
1854
1855 (define-key-after menu-bar-showhide-menu [mac-font-panel-mode]
1856 (menu-bar-make-mm-toggle mac-font-panel-mode
1857 "Font Panel"
1858 "Show the font panel as a floating dialog")
1859 'showhide-speedbar)
1860
1861 ) ;; (fboundp 'mac-set-font-panel-visibility)
1862
1863 ;;; Text Services
1864 (defvar mac-ts-active-input-buf ""
1865 "Byte sequence of the current Mac TSM active input area.")
1866 (defvar mac-ts-update-active-input-area-seqno 0
1867 "Number of processed update-active-input-area events.")
1868 (setq mac-ts-active-input-overlay (make-overlay 0 0))
1869
1870 (defface mac-ts-caret-position
1871 '((t :inverse-video t))
1872 "Face for caret position in Mac TSM active input area.
1873 This is used when the active input area is displayed either in
1874 the echo area or in a buffer where the cursor is not displayed."
1875 :group 'mac)
1876
1877 (defface mac-ts-raw-text
1878 '((t :underline t))
1879 "Face for raw text in Mac TSM active input area."
1880 :group 'mac)
1881
1882 (defface mac-ts-selected-raw-text
1883 '((t :underline t))
1884 "Face for selected raw text in Mac TSM active input area."
1885 :group 'mac)
1886
1887 (defface mac-ts-converted-text
1888 '((((background dark)) :underline "gray20")
1889 (t :underline "gray80"))
1890 "Face for converted text in Mac TSM active input area."
1891 :group 'mac)
1892
1893 (defface mac-ts-selected-converted-text
1894 '((t :underline t))
1895 "Face for selected converted text in Mac TSM active input area."
1896 :group 'mac)
1897
1898 (defface mac-ts-block-fill-text
1899 '((t :underline t))
1900 "Face for block fill text in Mac TSM active input area."
1901 :group 'mac)
1902
1903 (defface mac-ts-outline-text
1904 '((t :underline t))
1905 "Face for outline text in Mac TSM active input area."
1906 :group 'mac)
1907
1908 (defface mac-ts-selected-text
1909 '((t :underline t))
1910 "Face for selected text in Mac TSM active input area."
1911 :group 'mac)
1912
1913 (defface mac-ts-no-hilite
1914 '((t :inherit default))
1915 "Face for no hilite in Mac TSM active input area."
1916 :group 'mac)
1917
1918 (defconst mac-ts-hilite-style-faces
1919 '((2 . mac-ts-raw-text) ; kTSMHiliteRawText
1920 (3 . mac-ts-selected-raw-text) ; kTSMHiliteSelectedRawText
1921 (4 . mac-ts-converted-text) ; kTSMHiliteConvertedText
1922 (5 . mac-ts-selected-converted-text) ; kTSMHiliteSelectedConvertedText
1923 (6 . mac-ts-block-fill-text) ; kTSMHiliteBlockFillText
1924 (7 . mac-ts-outline-text) ; kTSMHiliteOutlineText
1925 (8 . mac-ts-selected-text) ; kTSMHiliteSelectedText
1926 (9 . mac-ts-no-hilite)) ; kTSMHiliteNoHilite
1927 "Alist of Mac TSM hilite style vs Emacs face.")
1928
1929 (defun mac-ts-update-active-input-buf (text fix-len hilite-rng update-rng)
1930 (let ((buf-len (length mac-ts-active-input-buf))
1931 confirmed)
1932 (if (or (null update-rng)
1933 (/= (% (length update-rng) 2) 0))
1934 ;; The parameter is missing (or in a bad format). The
1935 ;; existing inline input session is completely replaced with
1936 ;; the new text.
1937 (setq mac-ts-active-input-buf text)
1938 ;; Otherwise, the current subtext specified by the (2*j)-th
1939 ;; range is replaced with the new subtext specified by the
1940 ;; (2*j+1)-th range.
1941 (let ((tail buf-len)
1942 (i (length update-rng))
1943 segments rng)
1944 (while (> i 0)
1945 (setq i (- i 2))
1946 (setq rng (aref update-rng i))
1947 (if (and (<= 0 (cadr rng)) (< (cadr rng) tail)
1948 (<= tail buf-len))
1949 (setq segments
1950 (cons (substring mac-ts-active-input-buf (cadr rng) tail)
1951 segments)))
1952 (setq tail (car rng))
1953 (setq rng (aref update-rng (1+ i)))
1954 (if (and (<= 0 (car rng)) (< (car rng) (cadr rng))
1955 (<= (cadr rng) (length text)))
1956 (setq segments
1957 (cons (substring text (car rng) (cadr rng))
1958 segments))))
1959 (if (and (< 0 tail) (<= tail buf-len))
1960 (setq segments
1961 (cons (substring mac-ts-active-input-buf 0 tail)
1962 segments)))
1963 (setq mac-ts-active-input-buf (apply 'concat segments))))
1964 (setq buf-len (length mac-ts-active-input-buf))
1965 ;; Confirm (a part of) inline input session.
1966 (cond ((< fix-len 0)
1967 ;; Entire inline session is being confirmed.
1968 (setq confirmed mac-ts-active-input-buf)
1969 (setq mac-ts-active-input-buf ""))
1970 ((= fix-len 0)
1971 ;; None of the text is being confirmed (yet).
1972 (setq confirmed ""))
1973 (t
1974 (if (> fix-len buf-len)
1975 (setq fix-len buf-len))
1976 (setq confirmed (substring mac-ts-active-input-buf 0 fix-len))
1977 (setq mac-ts-active-input-buf
1978 (substring mac-ts-active-input-buf fix-len))))
1979 (setq buf-len (length mac-ts-active-input-buf))
1980 ;; Update highlighting and the caret position in the new inline
1981 ;; input session.
1982 (remove-text-properties 0 buf-len '(cursor nil) mac-ts-active-input-buf)
1983 (mapc (lambda (rng)
1984 (cond ((and (= (nth 2 rng) 1) ; kTSMHiliteCaretPosition
1985 (<= 0 (car rng)) (< (car rng) buf-len))
1986 (put-text-property (car rng) buf-len
1987 'cursor t mac-ts-active-input-buf))
1988 ((and (<= 0 (car rng)) (< (car rng) (cadr rng))
1989 (<= (cadr rng) buf-len))
1990 (put-text-property (car rng) (cadr rng) 'face
1991 (cdr (assq (nth 2 rng)
1992 mac-ts-hilite-style-faces))
1993 mac-ts-active-input-buf))))
1994 hilite-rng)
1995 confirmed))
1996
1997 (defun mac-split-string-by-property-change (string)
1998 (let ((tail (length string))
1999 head result)
2000 (unless (= tail 0)
2001 (while (setq head (previous-property-change tail string)
2002 result (cons (substring string (or head 0) tail) result)
2003 tail head)))
2004 result))
2005
2006 (defun mac-replace-untranslated-utf-8-chars (string &optional to-string)
2007 (or to-string (setq to-string "\e$,3u=\e(B"))
2008 (mapconcat
2009 (lambda (str)
2010 (if (get-text-property 0 'untranslated-utf-8 str) to-string str))
2011 (mac-split-string-by-property-change string)
2012 ""))
2013
2014 (defun mac-ts-update-active-input-area (event)
2015 "Update Mac TSM active input area according to EVENT.
2016 The confirmed text is converted to Emacs input events and pushed
2017 into `unread-command-events'. The unconfirmed text is displayed
2018 either in the current buffer or in the echo area."
2019 (interactive "e")
2020 (let* ((ae (mac-event-ae event))
2021 (type-text (mac-ae-parameter ae "tstx"))
2022 (text (or (cdr type-text) ""))
2023 (decode-fun (if (equal (car type-text) "TEXT")
2024 'mac-TEXT-to-string 'mac-utxt-to-string))
2025 (script-language (mac-ae-script-language ae "tssl"))
2026 (coding (or (cdr (assq (car script-language)
2027 mac-script-code-coding-systems))
2028 'mac-roman))
2029 (fix-len (mac-ae-number ae "tsfx"))
2030 ;; Optional parameters
2031 (hilite-rng (mac-ae-text-range-array ae "tshi"))
2032 (update-rng (mac-ae-text-range-array ae "tsup"))
2033 ;;(pin-rng (mac-bytes-to-text-range (cdr (mac-ae-parameter ae "tspn" "txrn"))))
2034 ;;(clause-offsets (cdr (mac-ae-parameter ae "tscl" "ofay")))
2035 (seqno (mac-ae-number ae "tsSn"))
2036 confirmed)
2037 (unless (= seqno mac-ts-update-active-input-area-seqno)
2038 ;; Reset internal states if sequence number is out of sync.
2039 (setq mac-ts-active-input-buf ""))
2040 (setq confirmed
2041 (mac-ts-update-active-input-buf text fix-len hilite-rng update-rng))
2042 (let ((use-echo-area
2043 (or isearch-mode
2044 (and cursor-in-echo-area (current-message))
2045 ;; Overlay strings are not shown in some cases.
2046 (get-char-property (point) 'invisible)
2047 (and (not (bobp))
2048 (or (and (get-char-property (point) 'display)
2049 (eq (get-char-property (1- (point)) 'display)
2050 (get-char-property (point) 'display)))
2051 (and (get-char-property (point) 'composition)
2052 (eq (get-char-property (1- (point)) 'composition)
2053 (get-char-property (point) 'composition)))))))
2054 active-input-string caret-seen)
2055 ;; Decode the active input area text with inheriting faces and
2056 ;; the caret position.
2057 (setq active-input-string
2058 (mapconcat
2059 (lambda (str)
2060 (let ((decoded (funcall decode-fun str coding)))
2061 (put-text-property 0 (length decoded) 'face
2062 (get-text-property 0 'face str) decoded)
2063 (when (and (not caret-seen)
2064 (get-text-property 0 'cursor str))
2065 (setq caret-seen t)
2066 (if (or use-echo-area (null cursor-type))
2067 (put-text-property 0 1 'face 'mac-ts-caret-position
2068 decoded)
2069 (put-text-property 0 1 'cursor t decoded)))
2070 decoded))
2071 (mac-split-string-by-property-change mac-ts-active-input-buf)
2072 ""))
2073 (put-text-property 0 (length active-input-string)
2074 'mac-ts-active-input-string t active-input-string)
2075 (if use-echo-area
2076 (let ((msg (current-message))
2077 message-log-max)
2078 (if (and msg
2079 ;; Don't get confused by previously displayed
2080 ;; `active-input-string'.
2081 (null (get-text-property 0 'mac-ts-active-input-string
2082 msg)))
2083 (setq msg (propertize msg 'display
2084 (concat msg active-input-string)))
2085 (setq msg active-input-string))
2086 (message "%s" msg)
2087 (overlay-put mac-ts-active-input-overlay 'before-string nil))
2088 (move-overlay mac-ts-active-input-overlay
2089 (point) (point) (current-buffer))
2090 (overlay-put mac-ts-active-input-overlay 'before-string
2091 active-input-string))
2092 ;; Unread confirmed characters and insert them in a keyboard
2093 ;; macro being defined.
2094 (apply 'isearch-unread
2095 (append (mac-replace-untranslated-utf-8-chars
2096 (funcall decode-fun confirmed coding)) '())))
2097 ;; The event is successfully processed. Sync the sequence number.
2098 (setq mac-ts-update-active-input-area-seqno (1+ seqno))))
2099
2100 (defun mac-ts-unicode-for-key-event (event)
2101 "Convert Unicode key EVENT to Emacs key events and unread them."
2102 (interactive "e")
2103 (let* ((ae (mac-event-ae event))
2104 (text (cdr (mac-ae-parameter ae "tstx" "utxt")))
2105 (script-language (mac-ae-script-language ae "tssl"))
2106 (coding (or (cdr (assq (car script-language)
2107 mac-script-code-coding-systems))
2108 'mac-roman)))
2109 ;; Unread characters and insert them in a keyboard macro being
2110 ;; defined.
2111 (apply 'isearch-unread
2112 (append (mac-replace-untranslated-utf-8-chars
2113 (mac-utxt-to-string text coding)) '()))))
2114
2115 ;; kEventClassTextInput/kEventTextInputUpdateActiveInputArea
2116 (define-key mac-apple-event-map [text-input update-active-input-area]
2117 'mac-ts-update-active-input-area)
2118 ;; kEventClassTextInput/kEventTextInputUnicodeForKeyEvent
2119 (define-key mac-apple-event-map [text-input unicode-for-key-event]
2120 'mac-ts-unicode-for-key-event)
2121
2122 ;;; Services
2123 (defun mac-service-open-file ()
2124 "Open the file specified by the selection value for Services."
2125 (interactive)
2126 (find-file-existing (x-selection-value mac-service-selection)))
2127
2128 (defun mac-service-open-selection ()
2129 "Create a new buffer containing the selection value for Services."
2130 (interactive)
2131 (switch-to-buffer (generate-new-buffer "*untitled*"))
2132 (insert (x-selection-value mac-service-selection))
2133 (sit-for 0)
2134 (save-buffer) ; It pops up the save dialog.
2135 )
2136
2137 (defun mac-service-mail-selection ()
2138 "Prepare a mail buffer containing the selection value for Services."
2139 (interactive)
2140 (compose-mail)
2141 (rfc822-goto-eoh)
2142 (forward-line 1)
2143 (insert (x-selection-value mac-service-selection) "\n"))
2144
2145 (defun mac-service-mail-to ()
2146 "Prepare a mail buffer to be sent to the selection value for Services."
2147 (interactive)
2148 (compose-mail (x-selection-value mac-service-selection)))
2149
2150 (defun mac-service-insert-text ()
2151 "Insert the selection value for Services."
2152 (interactive)
2153 (let ((text (x-selection-value mac-service-selection)))
2154 (if (not buffer-read-only)
2155 (insert text)
2156 (kill-new text)
2157 (message
2158 (substitute-command-keys
2159 "The text from the Services menu can be accessed with \\[yank]")))))
2160
2161 ;; kEventClassService/kEventServicePaste
2162 (define-key mac-apple-event-map [service paste] 'mac-service-insert-text)
2163 ;; kEventClassService/kEventServicePerform
2164 (define-key mac-apple-event-map [service perform open-file]
2165 'mac-service-open-file)
2166 (define-key mac-apple-event-map [service perform open-selection]
2167 'mac-service-open-selection)
2168 (define-key mac-apple-event-map [service perform mail-selection]
2169 'mac-service-mail-selection)
2170 (define-key mac-apple-event-map [service perform mail-to]
2171 'mac-service-mail-to)
2172
2173 (defun mac-dispatch-apple-event (event)
2174 "Dispatch EVENT according to the keymap `mac-apple-event-map'."
2175 (interactive "e")
2176 (let* ((binding (lookup-key mac-apple-event-map (mac-event-spec event)))
2177 (ae (mac-event-ae event))
2178 (service-message (and (keymapp binding)
2179 (cdr (mac-ae-parameter ae "svmg")))))
2180 (when service-message
2181 (setq service-message
2182 (intern (decode-coding-string service-message 'utf-8)))
2183 (setq binding (lookup-key binding (vector service-message))))
2184 ;; Replace (cadr event) with a dummy position so that event-start
2185 ;; returns it.
2186 (setcar (cdr event) (list (selected-window) (point) '(0 . 0) 0))
2187 (if (null (mac-ae-parameter ae 'emacs-suspension-id))
2188 (command-execute binding nil (vector event) t)
2189 (condition-case err
2190 (progn
2191 (command-execute binding nil (vector event) t)
2192 (mac-resume-apple-event ae))
2193 (error
2194 (mac-ae-set-reply-parameter ae "errs"
2195 (cons "TEXT" (error-message-string err)))
2196 (mac-resume-apple-event ae -10000)))))) ; errAEEventFailed
2197
2198 (define-key special-event-map [mac-apple-event] 'mac-dispatch-apple-event)
2199
2200 ;; Processing of Apple events are deferred at the startup time. For
2201 ;; example, files dropped onto the Emacs application icon can only be
2202 ;; processed when the initial frame has been created: this is where
2203 ;; the files should be opened.
2204 (add-hook 'after-init-hook 'mac-process-deferred-apple-events)
2205
2206 (run-with-idle-timer 5 t 'mac-cleanup-expired-apple-events)
2207
2208 \f
2209 ;;;; Drag and drop
2210
2211 (defcustom mac-dnd-types-alist
2212 '(("furl" . mac-dnd-handle-furl)
2213 ("hfs " . mac-dnd-handle-hfs)
2214 ("utxt" . mac-dnd-insert-utxt)
2215 ("TEXT" . mac-dnd-insert-TEXT)
2216 ("TIFF" . mac-dnd-insert-TIFF))
2217 "Which function to call to handle a drop of that type.
2218 The function takes three arguments, WINDOW, ACTION and DATA.
2219 WINDOW is where the drop occured, ACTION is always `private' on
2220 Mac. DATA is the drop data. Unlike the x-dnd counterpart, the
2221 return value of the function is not significant.
2222
2223 See also `mac-dnd-known-types'."
2224 :version "22.1"
2225 :type 'alist
2226 :group 'mac)
2227
2228 (defun mac-dnd-handle-furl (window action data)
2229 (dnd-handle-one-url window action (mac-furl-to-string data)))
2230
2231 (defun mac-dnd-handle-hfs (window action data)
2232 ;; struct HFSFlavor {
2233 ;; OSType fileType;
2234 ;; OSType fileCreator;
2235 ;; UInt16 fdFlags;
2236 ;; FSSpec fileSpec;
2237 ;; };
2238 (let* ((file-name (mac-coerce-ae-data "fss " (substring data 10)
2239 'undecoded-file-name))
2240 (url (concat "file://"
2241 (mapconcat 'url-hexify-string
2242 (split-string file-name "/") "/"))))
2243 (dnd-handle-one-url window action url)))
2244
2245 (defun mac-dnd-insert-utxt (window action data)
2246 (dnd-insert-text window action (mac-utxt-to-string data)))
2247
2248 (defun mac-dnd-insert-TEXT (window action data)
2249 (dnd-insert-text window action (mac-TEXT-to-string data)))
2250
2251 (defun mac-dnd-insert-TIFF (window action data)
2252 (dnd-insert-text window action (mac-TIFF-to-string data)))
2253
2254 (defun mac-dnd-drop-data (event frame window data type)
2255 (let* ((type-info (assoc type mac-dnd-types-alist))
2256 (handler (cdr type-info))
2257 (action 'private)
2258 (w (posn-window (event-start event))))
2259 (when handler
2260 (if (and (windowp w) (window-live-p w)
2261 (not (window-minibuffer-p w))
2262 (not (window-dedicated-p w)))
2263 ;; If dropping in an ordinary window which we could use,
2264 ;; let dnd-open-file-other-window specify what to do.
2265 (progn
2266 (when (not mouse-yank-at-point)
2267 (goto-char (posn-point (event-start event))))
2268 (funcall handler window action data))
2269 ;; If we can't display the file here,
2270 ;; make a new window for it.
2271 (let ((dnd-open-file-other-window t))
2272 (select-frame frame)
2273 (funcall handler window action data))))))
2274
2275 (defun mac-dnd-handle-drag-n-drop-event (event)
2276 "Receive drag and drop events."
2277 (interactive "e")
2278 (let ((window (posn-window (event-start event))))
2279 (when (windowp window) (select-window window))
2280 (dolist (item (mac-ae-list (mac-event-ae event)))
2281 (if (not (equal (car item) "null"))
2282 (mac-dnd-drop-data event (selected-frame) window
2283 (cdr item) (car item)))))
2284 (select-frame-set-input-focus (selected-frame)))
2285 \f
2286 ;;; Do the actual Windows setup here; the above code just defines
2287 ;;; functions and variables that we use now.
2288
2289 (setq command-line-args (x-handle-args command-line-args))
2290
2291 ;;; Make sure we have a valid resource name.
2292 (or (stringp x-resource-name)
2293 (let (i)
2294 (setq x-resource-name (invocation-name))
2295
2296 ;; Change any . or * characters in x-resource-name to hyphens,
2297 ;; so as not to choke when we use it in X resource queries.
2298 (while (setq i (string-match "[.*]" x-resource-name))
2299 (aset x-resource-name i ?-))))
2300
2301 (if (x-display-list)
2302 ;; On Mac OS 8/9, Most coding systems used in code conversion for
2303 ;; font names are not ready at the time when the terminal frame is
2304 ;; created. So we reconstruct font name table for the initial
2305 ;; frame.
2306 (mac-clear-font-name-table)
2307 (x-open-connection "Mac"
2308 x-command-line-resources
2309 ;; Exit Emacs with fatal error if this fails.
2310 t))
2311
2312 (setq frame-creation-function 'x-create-frame-with-faces)
2313
2314 (setq font-encoding-alist
2315 (append
2316 '(("mac-roman" . mac-roman)
2317 ("mac-centraleurroman" . mac-centraleurroman)
2318 ("mac-cyrillic" . mac-cyrillic)
2319 ("mac-symbol" . mac-symbol)
2320 ("mac-dingbats" . mac-dingbats))
2321 font-encoding-alist))
2322
2323 (defun fontset-add-mac-fonts (fontset &optional base-family)
2324 (dolist (elt `((latin . (,(or base-family "Monaco") . "mac-roman"))
2325 (mac-roman . (,base-family . "mac-roman"))
2326 (mac-centraleurroman . (,base-family . "mac-centraleurroman"))
2327 (mac-cyrillic . (,base-family . "mac-cyrillic"))
2328 (mac-symbol . (,base-family . "mac-symbol"))
2329 (mac-dingbats . (,base-family . "mac-dingbats"))))
2330 (set-fontset-font fontset (car elt) (cdr elt))))
2331
2332 (defun create-fontset-from-mac-roman-font (font &optional resolved-font
2333 fontset-name)
2334 "Create a fontset from a Mac roman font FONT.
2335
2336 Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If
2337 omitted, `x-resolve-font-name' is called to get the resolved name. At
2338 this time, if FONT is not available, error is signaled.
2339
2340 Optional 2nd arg FONTSET-NAME is a string to be used in
2341 `<CHARSET_ENCODING>' fields of a new fontset name. If it is omitted,
2342 an appropriate name is generated automatically.
2343
2344 It returns a name of the created fontset."
2345 (or resolved-font
2346 (setq resolved-font (x-resolve-font-name font)))
2347 (let ((base-family (aref (x-decompose-font-name resolved-font)
2348 xlfd-regexp-family-subnum)))
2349 (if (string= base-family "*")
2350 (setq base-family nil))
2351 (new-fontset fontset-name (list (cons 'ascii resolved-font)))
2352 (fontset-add-mac-fonts fontset-name base-family)))
2353
2354 ;; Adjust Courier font specifications in x-fixed-font-alist.
2355 (let ((courier-fonts (assoc "Courier" x-fixed-font-alist)))
2356 (if courier-fonts
2357 (dolist (label-fonts (cdr courier-fonts))
2358 (setcdr label-fonts
2359 (mapcar
2360 (lambda (font)
2361 (if (string-match "\\`-adobe-courier-\\([^-]*\\)-\\(.\\)-\\(.*\\)-iso8859-1\\'" font)
2362 (replace-match
2363 (if (string= (match-string 2 font) "o")
2364 "-*-courier-\\1-i-\\3-*-*"
2365 "-*-courier-\\1-\\2-\\3-*-*")
2366 t nil font)
2367 font))
2368 (cdr label-fonts))))))
2369
2370 ;; Setup the default fontset.
2371 (setup-default-fontset)
2372
2373 ;; Create a fontset that uses mac-roman font. With this fontset,
2374 ;; characters belonging to mac-roman charset (that contains ASCII and
2375 ;; more Latin characters) are displayed by a mac-roman font.
2376 (create-fontset-from-mac-roman-font
2377 "-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman" nil
2378 "-apple-Monaco-normal-r-*-*-12-*-*-*-*-*-fontset-standard")
2379
2380 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
2381 (create-fontset-from-x-resource)
2382
2383 ;; Apply a geometry resource to the initial frame. Put it at the end
2384 ;; of the alist, so that anything specified on the command line takes
2385 ;; precedence.
2386 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
2387 parsed)
2388 (if res-geometry
2389 (progn
2390 (setq parsed (x-parse-geometry res-geometry))
2391 ;; If the resource specifies a position,
2392 ;; call the position and size "user-specified".
2393 (if (or (assq 'top parsed) (assq 'left parsed))
2394 (setq parsed (cons '(user-position . t)
2395 (cons '(user-size . t) parsed))))
2396 ;; All geometry parms apply to the initial frame.
2397 (setq initial-frame-alist (append initial-frame-alist parsed))
2398 ;; The size parms apply to all frames.
2399 (if (assq 'height parsed)
2400 (setq default-frame-alist
2401 (cons (cons 'height (cdr (assq 'height parsed)))
2402 default-frame-alist)))
2403 (if (assq 'width parsed)
2404 (setq default-frame-alist
2405 (cons (cons 'width (cdr (assq 'width parsed)))
2406 default-frame-alist))))))
2407
2408 ;; Check the reverseVideo resource.
2409 (let ((case-fold-search t))
2410 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
2411 (if (and rv
2412 (string-match "^\\(true\\|yes\\|on\\)$" rv))
2413 (setq default-frame-alist
2414 (cons '(reverse . t) default-frame-alist)))))
2415
2416 (defun x-win-suspend-error ()
2417 (error "Suspending an Emacs running under Mac makes no sense"))
2418 (add-hook 'suspend-hook 'x-win-suspend-error)
2419
2420 ;;; Arrange for the kill and yank functions to set and check the clipboard.
2421 (setq interprogram-cut-function 'x-select-text)
2422 (setq interprogram-paste-function 'x-get-selection-value)
2423
2424 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
2425
2426 ;;; Turn off window-splitting optimization; Mac is usually fast enough
2427 ;;; that this is only annoying.
2428 (setq split-window-keep-point t)
2429
2430 ;; Don't show the frame name; that's redundant.
2431 (setq-default mode-line-frame-identification " ")
2432
2433 ;; Turn on support for mouse wheels.
2434 (mouse-wheel-mode 1)
2435
2436
2437 ;; Enable CLIPBOARD copy/paste through menu bar commands.
2438 (menu-bar-enable-clipboard)
2439
2440 ;; Initiate drag and drop
2441
2442 (define-key special-event-map [drag-n-drop] 'mac-dnd-handle-drag-n-drop-event)
2443 (define-key special-event-map [M-drag-n-drop] 'mac-dnd-handle-drag-n-drop-event)
2444
2445 \f
2446 ;;;; Non-toolkit Scroll bars
2447
2448 (unless x-toolkit-scroll-bars
2449
2450 ;; for debugging
2451 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
2452
2453 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
2454
2455 (global-set-key
2456 [vertical-scroll-bar down-mouse-1]
2457 'mac-handle-scroll-bar-event)
2458
2459 (global-unset-key [vertical-scroll-bar drag-mouse-1])
2460 (global-unset-key [vertical-scroll-bar mouse-1])
2461
2462 (defun mac-handle-scroll-bar-event (event)
2463 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
2464 (interactive "e")
2465 (let* ((position (event-start event))
2466 (window (nth 0 position))
2467 (bar-part (nth 4 position)))
2468 (select-window window)
2469 (cond
2470 ((eq bar-part 'up)
2471 (goto-char (window-start window))
2472 (mac-scroll-down-line))
2473 ((eq bar-part 'above-handle)
2474 (mac-scroll-down))
2475 ((eq bar-part 'handle)
2476 (scroll-bar-drag event))
2477 ((eq bar-part 'below-handle)
2478 (mac-scroll-up))
2479 ((eq bar-part 'down)
2480 (goto-char (window-start window))
2481 (mac-scroll-up-line)))))
2482
2483 (defun mac-scroll-ignore-events ()
2484 ;; Ignore confusing non-mouse events
2485 (while (not (memq (car-safe (read-event))
2486 '(mouse-1 double-mouse-1 triple-mouse-1))) nil))
2487
2488 (defun mac-scroll-down ()
2489 (track-mouse
2490 (mac-scroll-ignore-events)
2491 (scroll-down)))
2492
2493 (defun mac-scroll-down-line ()
2494 (track-mouse
2495 (mac-scroll-ignore-events)
2496 (scroll-down 1)))
2497
2498 (defun mac-scroll-up ()
2499 (track-mouse
2500 (mac-scroll-ignore-events)
2501 (scroll-up)))
2502
2503 (defun mac-scroll-up-line ()
2504 (track-mouse
2505 (mac-scroll-ignore-events)
2506 (scroll-up 1)))
2507
2508 )
2509
2510 \f
2511 ;;;; Others
2512
2513 (unless (eq system-type 'darwin)
2514 ;; This variable specifies the Unix program to call (as a process) to
2515 ;; determine the amount of free space on a file system (defaults to
2516 ;; df). If it is not set to nil, ls-lisp will not work correctly
2517 ;; unless an external application df is implemented on the Mac.
2518 (setq directory-free-space-program nil)
2519
2520 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
2521 ;; expand filenames Note no subprocess for the shell is actually
2522 ;; started (see run_mac_command in sysdep.c).
2523 (setq shell-file-name "sh")
2524
2525 ;; Some system variables are encoded with the system script code.
2526 (dolist (v '(system-name
2527 emacs-build-system ; Mac OS 9 version cannot dump
2528 user-login-name user-real-login-name user-full-name))
2529 (set v (decode-coding-string (symbol-value v) mac-system-coding-system))))
2530
2531 ;; Now the default directory is changed to the user's home directory
2532 ;; in emacs.c if invoked from the WindowServer (with -psn_* option).
2533 ;; (if (string= default-directory "/")
2534 ;; (cd "~"))
2535
2536 ;; Darwin 6- pty breakage is now controlled from the C code so that
2537 ;; it applies to all builds on darwin. See s/darwin.h PTY_ITERATION.
2538 ;; (setq process-connection-type t)
2539
2540 ;; Assume that fonts are always scalable on the Mac. This sometimes
2541 ;; results in characters with jagged edges. However, without it,
2542 ;; fonts with both truetype and bitmap representations but no italic
2543 ;; or bold bitmap versions will not display these variants correctly.
2544 (setq scalable-fonts-allowed t)
2545
2546 ;; arch-tag: 71dfcd14-cde8-4d66-b05c-85ec94fb23a6
2547 ;;; mac-win.el ends here