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