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