Add NEWS placeholder.
[bpt/emacs.git] / lisp / term / ns-win.el
CommitLineData
c0642f6d
GM
1;;; ns-win.el --- lisp side of interface with NeXT/Open/GNUstep/MacOS X window system
2
114f9c96 3;; Copyright (C) 1993, 1994, 2005, 2006, 2007, 2008, 2009, 2010
a5e1066d 4;; Free Software Foundation, Inc.
c0642f6d 5
c5220417
GM
6;; Authors: Carl Edman
7;; Christian Limpach
8;; Scott Bender
9;; Christophe de Dinechin
10;; Adrian Robert
c0642f6d
GM
11;; Keywords: terminals
12
13;; This file is part of GNU Emacs.
14
15;; GNU Emacs is free software: you can redistribute it and/or modify
16;; it under the terms of the GNU General Public License as published by
17;; the Free Software Foundation, either version 3 of the License, or
18;; (at your option) any later version.
19
20;; GNU Emacs is distributed in the hope that it will be useful,
21;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;; GNU General Public License for more details.
24
25;; You should have received a copy of the GNU General Public License
26;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
edfda783
AR
27
28;;; Commentary:
29
a5a1b464
CY
30;; ns-win.el: this file is loaded from ../lisp/startup.el when it
31;; recognizes that Nextstep windows are to be used. Command line
32;; switches are parsed and those pertaining to Nextstep are processed
33;; and removed from the command line. The Nextstep display is opened
34;; and hooks are set for popping up the initial window.
edfda783
AR
35
36;; startup.el will then examine startup files, and eventually call the hooks
37;; which create the first window (s).
38
a5a1b464
CY
39;; A number of other Nextstep convenience functions are defined in
40;; this file, which works in close coordination with src/nsfns.m.
edfda783
AR
41
42;;; Code:
43
44
601fb9b8 45(if (not (featurep 'ns))
3dcdb6ea 46 (error "%s: Loading ns-win.el but not compiled for GNUstep/MacOS"
edfda783
AR
47 (invocation-name)))
48
ebe68042
SM
49(eval-when-compile (require 'cl))
50
edfda783
AR
51;; Documentation-purposes only: actually loaded in loadup.el
52(require 'frame)
53(require 'mouse)
54(require 'faces)
55(require 'easymenu)
56(require 'menu-bar)
57(require 'fontset)
58
ebe68042
SM
59;; Not needed?
60;;(require 'ispell)
edfda783 61
20bc68dd
GM
62(defgroup ns nil
63 "GNUstep/Mac OS X specific features."
64 :group 'environment)
65
c0642f6d
GM
66;; nsterm.m
67(defvar ns-version-string)
c0642f6d
GM
68(defvar ns-alternate-modifier)
69
edfda783
AR
70;;;; Command line argument handling.
71
72(defvar ns-invocation-args nil)
73(defvar ns-command-line-resources nil)
74
75;; Handler for switches of the form "-switch value" or "-switch".
d377ef4a 76(defun ns-handle-switch (switch &optional numeric)
edfda783
AR
77 (let ((aelt (assoc switch command-line-ns-option-alist)))
78 (if aelt
d377ef4a
GM
79 (setq default-frame-alist
80 (cons (cons (nth 3 aelt)
81 (if numeric
82 (string-to-number (pop ns-invocation-args))
83 (or (nth 4 aelt) (pop ns-invocation-args))))
84 default-frame-alist)))))
edfda783
AR
85
86;; Handler for switches of the form "-switch n"
87(defun ns-handle-numeric-switch (switch)
d377ef4a 88 (ns-handle-switch switch t))
edfda783
AR
89
90;; Make -iconic apply only to the initial frame!
91(defun ns-handle-iconic (switch)
92 (setq initial-frame-alist
93 (cons '(visibility . icon) initial-frame-alist)))
94
82a330df 95;; Handle the -name option, set the name of the initial frame.
edfda783
AR
96(defun ns-handle-name-switch (switch)
97 (or (consp ns-invocation-args)
98 (error "%s: missing argument to `%s' option" (invocation-name) switch))
d377ef4a
GM
99 (setq initial-frame-alist (cons (cons 'name (pop ns-invocation-args))
100 initial-frame-alist)))
101
102;; Set (but not used?) in frame.el.
9e50ff0c 103(defvar x-display-name nil
5cc443fe
GM
104 "The name of the window display on which Emacs was started.
105On X, the display name of individual X frames is recorded in the
106`display' frame parameter.")
edfda783 107
c0642f6d
GM
108;; nsterm.m.
109(defvar ns-input-file)
110
edfda783
AR
111(defun ns-handle-nxopen (switch)
112 (setq unread-command-events (append unread-command-events '(ns-open-file))
d377ef4a 113 ns-input-file (append ns-input-file (list (pop ns-invocation-args)))))
edfda783
AR
114
115(defun ns-handle-nxopentemp (switch)
d377ef4a
GM
116 (setq unread-command-events (append unread-command-events
117 '(ns-open-temp-file))
118 ns-input-file (append ns-input-file (list (pop ns-invocation-args)))))
edfda783 119
edfda783
AR
120(defun ns-ignore-1-arg (switch)
121 (setq ns-invocation-args (cdr ns-invocation-args)))
122(defun ns-ignore-2-arg (switch)
123 (setq ns-invocation-args (cddr ns-invocation-args)))
124
125(defun ns-handle-args (args)
a5a1b464 126 "Process Nextstep-related command line options.
82a330df 127This is run before the user's startup file is loaded.
a5a1b464
CY
128The options in ARGS are copied to `ns-invocation-args'.
129The Nextstep-related settings are then applied using the handlers
82a330df 130defined in `command-line-ns-option-alist'.
a5a1b464 131The return value is ARGS minus the number of arguments processed."
edfda783
AR
132 ;; We use ARGS to accumulate the args that we don't handle here, to return.
133 (setq ns-invocation-args args
134 args nil)
135 (while ns-invocation-args
d377ef4a 136 (let* ((this-switch (pop ns-invocation-args))
edfda783
AR
137 (orig-this-switch this-switch)
138 completion argval aelt handler)
edfda783
AR
139 ;; Check for long options with attached arguments
140 ;; and separate out the attached option argument into argval.
141 (if (string-match "^--[^=]*=" this-switch)
142 (setq argval (substring this-switch (match-end 0))
143 this-switch (substring this-switch 0 (1- (match-end 0)))))
144 ;; Complete names of long options.
145 (if (string-match "^--" this-switch)
146 (progn
147 (setq completion (try-completion this-switch
148 command-line-ns-option-alist))
149 (if (eq completion t)
150 ;; Exact match for long option.
151 nil
152 (if (stringp completion)
153 (let ((elt (assoc completion command-line-ns-option-alist)))
154 ;; Check for abbreviated long option.
155 (or elt
156 (error "Option `%s' is ambiguous" this-switch))
157 (setq this-switch completion))))))
158 (setq aelt (assoc this-switch command-line-ns-option-alist))
159 (if aelt (setq handler (nth 2 aelt)))
160 (if handler
161 (if argval
162 (let ((ns-invocation-args
163 (cons argval ns-invocation-args)))
164 (funcall handler this-switch))
165 (funcall handler this-switch))
166 (setq args (cons orig-this-switch args)))))
167 (nreverse args))
168
489382c5 169(defun ns-parse-geometry (geom)
ba0c843d 170 "Parse a Nextstep-style geometry string GEOM.
edfda783
AR
171Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
172The properties returned may include `top', `left', `height', and `width'."
a5a1b464
CY
173 (when (string-match "\\([0-9]+\\)\\( \\([0-9]+\\)\\( \\([0-9]+\\)\
174\\( \\([0-9]+\\) ?\\)?\\)?\\)?"
175 geom)
176 (apply
177 'append
178 (list
179 (list (cons 'top (string-to-number (match-string 1 geom))))
180 (if (match-string 3 geom)
181 (list (cons 'left (string-to-number (match-string 3 geom)))))
182 (if (match-string 5 geom)
183 (list (cons 'height (string-to-number (match-string 5 geom)))))
184 (if (match-string 7 geom)
185 (list (cons 'width (string-to-number (match-string 7 geom)))))))))
edfda783
AR
186
187;;;; Keyboard mapping.
188
55e8d9a5
AR
189(defvar ns-alternatives-map
190 (let ((map (make-sparse-keymap)))
191 ;; Map certain keypad keys into ASCII characters
192 ;; that people usually expect.
79cb9c05 193 (define-key map [S-tab] [backtab])
55e8d9a5
AR
194 (define-key map [M-backspace] [?\M-\d])
195 (define-key map [M-delete] [?\M-\d])
196 (define-key map [M-tab] [?\M-\t])
197 (define-key map [M-linefeed] [?\M-\n])
198 (define-key map [M-clear] [?\M-\C-l])
199 (define-key map [M-return] [?\M-\C-m])
200 (define-key map [M-escape] [?\M-\e])
201 map)
2b4e72e1 202 "Keymap of alternative meanings for some keys under Nextstep.")
edfda783 203
a5a1b464 204;; Here are some Nextstep-like bindings for command key sequences.
4c785fa7 205(define-key global-map [?\s-,] 'customize)
edfda783
AR
206(define-key global-map [?\s-'] 'next-multiframe-window)
207(define-key global-map [?\s-`] 'other-frame)
79cb9c05 208(define-key global-map [?\s-~] 'ns-prev-frame)
edfda783
AR
209(define-key global-map [?\s--] 'center-line)
210(define-key global-map [?\s-:] 'ispell)
211(define-key global-map [?\s-\;] 'ispell-next)
212(define-key global-map [?\s-?] 'info)
213(define-key global-map [?\s-^] 'kill-some-buffers)
214(define-key global-map [?\s-&] 'kill-this-buffer)
215(define-key global-map [?\s-C] 'ns-popup-color-panel)
216(define-key global-map [?\s-D] 'dired)
217(define-key global-map [?\s-E] 'edit-abbrevs)
218(define-key global-map [?\s-L] 'shell-command)
219(define-key global-map [?\s-M] 'manual-entry)
220(define-key global-map [?\s-S] 'ns-write-file-using-panel)
221(define-key global-map [?\s-a] 'mark-whole-buffer)
222(define-key global-map [?\s-c] 'ns-copy-including-secondary)
223(define-key global-map [?\s-d] 'isearch-repeat-backward)
224(define-key global-map [?\s-e] 'isearch-yank-kill)
225(define-key global-map [?\s-f] 'isearch-forward)
226(define-key global-map [?\s-g] 'isearch-repeat-forward)
227(define-key global-map [?\s-h] 'ns-do-hide-emacs)
228(define-key global-map [?\s-H] 'ns-do-hide-others)
229(define-key global-map [?\s-j] 'exchange-point-and-mark)
230(define-key global-map [?\s-k] 'kill-this-buffer)
231(define-key global-map [?\s-l] 'goto-line)
232(define-key global-map [?\s-m] 'iconify-frame)
233(define-key global-map [?\s-n] 'make-frame)
234(define-key global-map [?\s-o] 'ns-open-file-using-panel)
235(define-key global-map [?\s-p] 'ns-print-buffer)
236(define-key global-map [?\s-q] 'save-buffers-kill-emacs)
237(define-key global-map [?\s-s] 'save-buffer)
238(define-key global-map [?\s-t] 'ns-popup-font-panel)
239(define-key global-map [?\s-u] 'revert-buffer)
240(define-key global-map [?\s-v] 'yank)
241(define-key global-map [?\s-w] 'delete-frame)
242(define-key global-map [?\s-x] 'kill-region)
243(define-key global-map [?\s-y] 'ns-paste-secondary)
244(define-key global-map [?\s-z] 'undo)
245(define-key global-map [?\s-|] 'shell-command-on-region)
246(define-key global-map [s-kp-bar] 'shell-command-on-region)
ebe68042 247;; (as in Terminal.app)
edfda783
AR
248(define-key global-map [s-right] 'ns-next-frame)
249(define-key global-map [s-left] 'ns-prev-frame)
250
251(define-key global-map [home] 'beginning-of-buffer)
252(define-key global-map [end] 'end-of-buffer)
253(define-key global-map [kp-home] 'beginning-of-buffer)
254(define-key global-map [kp-end] 'end-of-buffer)
255(define-key global-map [kp-prior] 'scroll-down)
256(define-key global-map [kp-next] 'scroll-up)
257
55e8d9a5
AR
258;;; Allow shift-clicks to work similarly to under Nextstep
259(define-key global-map [S-mouse-1] 'mouse-save-then-kill)
260(global-unset-key [S-down-mouse-1])
261
edfda783 262
a5a1b464 263;; Special Nextstep-generated events are converted to function keys. Here
edfda783 264;; are the bindings for them.
c6c62e78 265(define-key global-map [ns-power-off] 'save-buffers-kill-emacs)
edfda783
AR
266(define-key global-map [ns-open-file] 'ns-find-file)
267(define-key global-map [ns-open-temp-file] [ns-open-file])
268(define-key global-map [ns-drag-file] 'ns-insert-file)
269(define-key global-map [ns-drag-color] 'ns-set-foreground-at-mouse)
270(define-key global-map [S-ns-drag-color] 'ns-set-background-at-mouse)
271(define-key global-map [ns-drag-text] 'ns-insert-text)
272(define-key global-map [ns-change-font] 'ns-respond-to-change-font)
273(define-key global-map [ns-open-file-line] 'ns-open-file-select-line)
edfda783 274(define-key global-map [ns-spi-service-call] 'ns-spi-service-call)
4e622592 275(define-key global-map [ns-new-frame] 'make-frame)
33b35792 276(define-key global-map [ns-toggle-toolbar] 'ns-toggle-toolbar)
c6c62e78 277(define-key global-map [ns-show-prefs] 'customize)
edfda783
AR
278
279
2f93961f
CY
280;; Set up a number of aliases and other layers to pretend we're using
281;; the Choi/Mitsuharu Carbon port.
282
283(defvaralias 'mac-allow-anti-aliasing 'ns-antialias-text)
284(defvaralias 'mac-command-modifier 'ns-command-modifier)
285(defvaralias 'mac-control-modifier 'ns-control-modifier)
286(defvaralias 'mac-option-modifier 'ns-option-modifier)
287(defvaralias 'mac-function-modifier 'ns-function-modifier)
406aaa6f 288(declare-function ns-do-applescript "nsfns.m" (script))
583ff3c3
AR
289(defalias 'do-applescript 'ns-do-applescript)
290
edfda783 291(defun x-setup-function-keys (frame)
5cc443fe 292 "Set up `function-key-map' on the graphical frame FRAME."
edfda783
AR
293 (unless (terminal-parameter frame 'x-setup-function-keys)
294 (with-selected-frame frame
9e50ff0c
DN
295 (setq interprogram-cut-function 'x-select-text
296 interprogram-paste-function 'x-cut-buffer-or-selection-value)
55e8d9a5
AR
297 (let ((map (copy-keymap ns-alternatives-map)))
298 (set-keymap-parent map (keymap-parent local-function-key-map))
299 (set-keymap-parent local-function-key-map map))
ebe68042
SM
300 (setq system-key-alist
301 (list
302 (cons (logior (lsh 0 16) 1) 'ns-power-off)
303 (cons (logior (lsh 0 16) 2) 'ns-open-file)
304 (cons (logior (lsh 0 16) 3) 'ns-open-temp-file)
305 (cons (logior (lsh 0 16) 4) 'ns-drag-file)
306 (cons (logior (lsh 0 16) 5) 'ns-drag-color)
307 (cons (logior (lsh 0 16) 6) 'ns-drag-text)
308 (cons (logior (lsh 0 16) 7) 'ns-change-font)
309 (cons (logior (lsh 0 16) 8) 'ns-open-file-line)
33b35792
AR
310; (cons (logior (lsh 0 16) 9) 'ns-insert-working-text)
311; (cons (logior (lsh 0 16) 10) 'ns-delete-working-text)
ebe68042 312 (cons (logior (lsh 0 16) 11) 'ns-spi-service-call)
4c785fa7
DR
313 (cons (logior (lsh 0 16) 12) 'ns-new-frame)
314 (cons (logior (lsh 0 16) 13) 'ns-toggle-toolbar)
315 (cons (logior (lsh 0 16) 14) 'ns-show-prefs)
316 (cons (logior (lsh 1 16) 32) 'f1)
ebe68042
SM
317 (cons (logior (lsh 1 16) 33) 'f2)
318 (cons (logior (lsh 1 16) 34) 'f3)
319 (cons (logior (lsh 1 16) 35) 'f4)
320 (cons (logior (lsh 1 16) 36) 'f5)
321 (cons (logior (lsh 1 16) 37) 'f6)
322 (cons (logior (lsh 1 16) 38) 'f7)
323 (cons (logior (lsh 1 16) 39) 'f8)
324 (cons (logior (lsh 1 16) 40) 'f9)
325 (cons (logior (lsh 1 16) 41) 'f10)
326 (cons (logior (lsh 1 16) 42) 'f11)
327 (cons (logior (lsh 1 16) 43) 'f12)
328 (cons (logior (lsh 1 16) 44) 'kp-insert)
329 (cons (logior (lsh 1 16) 45) 'kp-delete)
330 (cons (logior (lsh 1 16) 46) 'kp-home)
331 (cons (logior (lsh 1 16) 47) 'kp-end)
332 (cons (logior (lsh 1 16) 48) 'kp-prior)
333 (cons (logior (lsh 1 16) 49) 'kp-next)
334 (cons (logior (lsh 1 16) 50) 'print-screen)
335 (cons (logior (lsh 1 16) 51) 'scroll-lock)
336 (cons (logior (lsh 1 16) 52) 'pause)
337 (cons (logior (lsh 1 16) 53) 'system)
338 (cons (logior (lsh 1 16) 54) 'break)
339 (cons (logior (lsh 1 16) 56) 'please-tell-carl-what-this-key-is-called-56)
340 (cons (logior (lsh 1 16) 61) 'please-tell-carl-what-this-key-is-called-61)
341 (cons (logior (lsh 1 16) 62) 'please-tell-carl-what-this-key-is-called-62)
342 (cons (logior (lsh 1 16) 63) 'please-tell-carl-what-this-key-is-called-63)
343 (cons (logior (lsh 1 16) 64) 'please-tell-carl-what-this-key-is-called-64)
344 (cons (logior (lsh 1 16) 69) 'please-tell-carl-what-this-key-is-called-69)
345 (cons (logior (lsh 1 16) 70) 'please-tell-carl-what-this-key-is-called-70)
346 (cons (logior (lsh 1 16) 71) 'please-tell-carl-what-this-key-is-called-71)
347 (cons (logior (lsh 1 16) 72) 'please-tell-carl-what-this-key-is-called-72)
348 (cons (logior (lsh 1 16) 73) 'please-tell-carl-what-this-key-is-called-73)
349 (cons (logior (lsh 2 16) 3) 'kp-enter)
350 (cons (logior (lsh 2 16) 9) 'kp-tab)
351 (cons (logior (lsh 2 16) 28) 'kp-quit)
352 (cons (logior (lsh 2 16) 35) 'kp-hash)
353 (cons (logior (lsh 2 16) 42) 'kp-multiply)
354 (cons (logior (lsh 2 16) 43) 'kp-add)
355 (cons (logior (lsh 2 16) 44) 'kp-separator)
356 (cons (logior (lsh 2 16) 45) 'kp-subtract)
357 (cons (logior (lsh 2 16) 46) 'kp-decimal)
358 (cons (logior (lsh 2 16) 47) 'kp-divide)
359 (cons (logior (lsh 2 16) 48) 'kp-0)
360 (cons (logior (lsh 2 16) 49) 'kp-1)
361 (cons (logior (lsh 2 16) 50) 'kp-2)
362 (cons (logior (lsh 2 16) 51) 'kp-3)
363 (cons (logior (lsh 2 16) 52) 'kp-4)
364 (cons (logior (lsh 2 16) 53) 'kp-5)
365 (cons (logior (lsh 2 16) 54) 'kp-6)
366 (cons (logior (lsh 2 16) 55) 'kp-7)
367 (cons (logior (lsh 2 16) 56) 'kp-8)
368 (cons (logior (lsh 2 16) 57) 'kp-9)
369 (cons (logior (lsh 2 16) 60) 'kp-less)
370 (cons (logior (lsh 2 16) 61) 'kp-equal)
371 (cons (logior (lsh 2 16) 62) 'kp-more)
372 (cons (logior (lsh 2 16) 64) 'kp-at)
373 (cons (logior (lsh 2 16) 92) 'kp-backslash)
374 (cons (logior (lsh 2 16) 96) 'kp-backtick)
375 (cons (logior (lsh 2 16) 124) 'kp-bar)
376 (cons (logior (lsh 2 16) 126) 'kp-tilde)
377 (cons (logior (lsh 2 16) 157) 'kp-mu)
378 (cons (logior (lsh 2 16) 165) 'kp-yen)
379 (cons (logior (lsh 2 16) 167) 'kp-paragraph)
380 (cons (logior (lsh 2 16) 172) 'left)
381 (cons (logior (lsh 2 16) 173) 'up)
382 (cons (logior (lsh 2 16) 174) 'right)
383 (cons (logior (lsh 2 16) 175) 'down)
384 (cons (logior (lsh 2 16) 176) 'kp-ring)
385 (cons (logior (lsh 2 16) 201) 'kp-square)
386 (cons (logior (lsh 2 16) 204) 'kp-cube)
387 (cons (logior (lsh 3 16) 8) 'backspace)
388 (cons (logior (lsh 3 16) 9) 'tab)
389 (cons (logior (lsh 3 16) 10) 'linefeed)
390 (cons (logior (lsh 3 16) 11) 'clear)
391 (cons (logior (lsh 3 16) 13) 'return)
392 (cons (logior (lsh 3 16) 18) 'pause)
393 (cons (logior (lsh 3 16) 25) 'S-tab)
394 (cons (logior (lsh 3 16) 27) 'escape)
395 (cons (logior (lsh 3 16) 127) 'delete)
55e8d9a5
AR
396 )))
397 (set-terminal-parameter frame 'x-setup-function-keys t)))
edfda783
AR
398
399
edfda783
AR
400;; Add a couple of menus and rearrange some others; easiest just to redo toplvl
401;; Note keymap defns must be given last-to-first
402(define-key global-map [menu-bar] (make-sparse-keymap "menu-bar"))
403
ebe68042
SM
404(setq menu-bar-final-items
405 (cond ((eq system-type 'darwin)
406 '(buffer windows services help-menu))
407 ;; Otherwise, GNUstep.
408 (t
409 '(buffer windows services hide-app quit))))
edfda783 410
ebe68042
SM
411;; Add standard top-level items to GNUstep menu.
412(unless (eq system-type 'darwin)
413 (define-key global-map [menu-bar quit] '("Quit" . save-buffers-kill-emacs))
414 (define-key global-map [menu-bar hide-app] '("Hide" . ns-do-hide-emacs)))
edfda783
AR
415
416(define-key global-map [menu-bar services]
417 (cons "Services" (make-sparse-keymap "Services")))
edfda783
AR
418(define-key global-map [menu-bar buffer]
419 (cons "Buffers" global-buffers-menu-map))
420;; (cons "Buffers" (make-sparse-keymap "Buffers")))
421(define-key global-map [menu-bar tools] (cons "Tools" menu-bar-tools-menu))
422(define-key global-map [menu-bar options] (cons "Options" menu-bar-options-menu))
423(define-key global-map [menu-bar edit] (cons "Edit" menu-bar-edit-menu))
424(define-key global-map [menu-bar file] (cons "File" menu-bar-file-menu))
425
426;; If running under GNUstep, rename "Help" to "Info"
427(cond ((eq system-type 'darwin)
428 (define-key global-map [menu-bar help-menu]
429 (cons "Help" menu-bar-help-menu)))
430 (t
431 (let ((contents (reverse (cdr menu-bar-help-menu))))
432 (setq menu-bar-help-menu
433 (append (list 'keymap) (cdr contents) (list "Info"))))
434 (define-key global-map [menu-bar help-menu]
435 (cons "Info" menu-bar-help-menu))))
436
edfda783
AR
437(if (not (eq system-type 'darwin))
438 ;; in OS X it's in the app menu already
439 (define-key menu-bar-help-menu [info-panel]
440 '("About Emacs..." . ns-do-emacs-info-panel)))
441
edfda783
AR
442;;;; Edit menu: Modify slightly
443
ebe68042 444;; Substitute a Copy function that works better under X (for GNUstep).
edfda783
AR
445(easy-menu-remove-item global-map '("menu-bar" "edit") 'copy)
446(define-key-after menu-bar-edit-menu [copy]
447 '(menu-item "Copy" ns-copy-including-secondary
ebe68042
SM
448 :enable mark-active
449 :help "Copy text in region between mark and current position")
edfda783
AR
450 'cut)
451
ebe68042
SM
452;; Change to same precondition as select-and-paste, as we don't have
453;; `x-selection-exists-p'.
edfda783
AR
454(easy-menu-remove-item global-map '("menu-bar" "edit") 'paste)
455(define-key-after menu-bar-edit-menu [paste]
456 '(menu-item "Paste" yank
ebe68042
SM
457 :enable (and (cdr yank-menu) (not buffer-read-only))
458 :help "Paste (yank) text most recently cut/copied")
edfda783
AR
459 'copy)
460
ebe68042 461;; Change text to be more consistent with surrounding menu items `paste', etc.
edfda783
AR
462(easy-menu-remove-item global-map '("menu-bar" "edit") 'paste-from-menu)
463(define-key-after menu-bar-edit-menu [select-paste]
464 '(menu-item "Select and Paste" yank-menu
ebe68042
SM
465 :enable (and (cdr yank-menu) (not buffer-read-only))
466 :help "Choose a string from the kill ring and paste it")
edfda783
AR
467 'paste)
468
ebe68042 469;; Separate undo from cut/paste section, add spell for platform consistency.
edfda783
AR
470(define-key-after menu-bar-edit-menu [separator-undo] '("--") 'undo)
471(define-key-after menu-bar-edit-menu [spell] '("Spell" . ispell-menu-map) 'fill)
472
edfda783
AR
473
474;;;; Services
d377ef4a
GM
475(declare-function ns-perform-service "nsfns.m" (service send))
476
edfda783
AR
477(defun ns-define-service (path)
478 (let ((mapping [menu-bar services])
479 (service (mapconcat 'identity path "/"))
480 (name (intern
ebe68042
SM
481 (subst-char-in-string
482 ?\s ?-
483 (mapconcat 'identity (cons "ns-service" path) "-")))))
484 ;; This defines the function.
485 (defalias name
486 (lexical-let ((service service))
487 (lambda (arg)
488 (interactive "p")
489 (let* ((in-string
490 (cond ((stringp arg) arg)
491 (mark-active
492 (buffer-substring (region-beginning) (region-end)))))
493 (out-string (ns-perform-service service in-string)))
494 (cond
495 ((stringp arg) out-string)
496 ((and out-string (or (not in-string)
497 (not (string= in-string out-string))))
498 (if mark-active (delete-region (region-beginning) (region-end)))
499 (insert out-string)
500 (setq deactivate-mark nil)))))))
edfda783
AR
501 (cond
502 ((lookup-key global-map mapping)
503 (while (cdr path)
504 (setq mapping (vconcat mapping (list (intern (car path)))))
505 (if (not (keymapp (lookup-key global-map mapping)))
506 (define-key global-map mapping
507 (cons (car path) (make-sparse-keymap (car path)))))
508 (setq path (cdr path)))
509 (setq mapping (vconcat mapping (list (intern (car path)))))
510 (define-key global-map mapping (cons (car path) name))))
511 name))
512
c0642f6d
GM
513;; nsterm.m
514(defvar ns-input-spi-name)
515(defvar ns-input-spi-arg)
516
f2d9c15f
GM
517(declare-function dnd-open-file "dnd" (uri action))
518
edfda783 519(defun ns-spi-service-call ()
82a330df 520 "Respond to a service request."
edfda783
AR
521 (interactive)
522 (cond ((string-equal ns-input-spi-name "open-selection")
523 (switch-to-buffer (generate-new-buffer "*untitled*"))
524 (insert ns-input-spi-arg))
525 ((string-equal ns-input-spi-name "open-file")
526 (dnd-open-file ns-input-spi-arg nil))
527 ((string-equal ns-input-spi-name "mail-selection")
528 (compose-mail)
529 (rfc822-goto-eoh)
530 (forward-line 1)
531 (insert ns-input-spi-arg))
532 ((string-equal ns-input-spi-name "mail-to")
533 (compose-mail ns-input-spi-arg))
534 (t (error (concat "Service " ns-input-spi-name " not recognized")))))
535
536
537;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
538
539
540
43c660bc
SM
541;; Composed key sequence handling for Nextstep system input methods.
542;; (On Nextstep systems, input methods are provided for CJK
543;; characters, etc. which require multiple keystrokes, and during
544;; entry a partial ("working") result is typically shown in the
545;; editing window.)
edfda783
AR
546
547(defface ns-working-text-face
548 '((t :underline t))
549 "Face used to highlight working text during compose sequence insert."
550 :group 'ns)
551
552(defvar ns-working-overlay nil
43c660bc
SM
553 "Overlay used to highlight working text during compose sequence insert.
554When text is in th echo area, this just stores the length of the working text.")
edfda783 555
33b35792
AR
556(defvar ns-working-text) ; nsterm.m
557
558;; Test if in echo area, based on mac-win.el 2007/08/26 unicode-2.
559;; This will fail if called from a NONASCII_KEYSTROKE event on the global map.
edfda783
AR
560(defun ns-in-echo-area ()
561 "Whether, for purposes of inserting working composition text, the minibuffer
562is currently being used."
563 (or isearch-mode
564 (and cursor-in-echo-area (current-message))
565 ;; Overlay strings are not shown in some cases.
566 (get-char-property (point) 'invisible)
567 (and (not (bobp))
568 (or (and (get-char-property (point) 'display)
569 (eq (get-char-property (1- (point)) 'display)
570 (get-char-property (point) 'display)))
571 (and (get-char-property (point) 'composition)
572 (eq (get-char-property (1- (point)) 'composition)
573 (get-char-property (point) 'composition)))))))
574
9d8f6d31
AR
575;; The 'interactive' here stays for subinvocations, so the ns-in-echo-area
576;; always returns nil for some reason. If this WASN'T the case, we could
577;; map this to [ns-insert-working-text] and eliminate Fevals in nsterm.m.
33b35792 578;; These functions test whether in echo area and delegate accordingly.
9d8f6d31 579(defun ns-put-working-text ()
edfda783 580 (interactive)
9d8f6d31 581 (if (ns-in-echo-area) (ns-echo-working-text) (ns-insert-working-text)))
33b35792
AR
582(defun ns-unput-working-text ()
583 (interactive)
43c660bc 584 (ns-delete-working-text))
c0642f6d 585
9d8f6d31 586(defun ns-insert-working-text ()
2b4e72e1 587 "Insert contents of `ns-working-text' as UTF-8 string and mark with
43c660bc
SM
588`ns-working-overlay'. Any previously existing working text is cleared first.
589The overlay is assigned the face `ns-working-text-face'."
590 ;; FIXME: if buffer is read-only, don't try to insert anything
591 ;; and if text is bound to a command, execute that instead (Bug#1453)
edfda783 592 (interactive)
43c660bc 593 (ns-delete-working-text)
edfda783
AR
594 (let ((start (point)))
595 (insert ns-working-text)
596 (overlay-put (setq ns-working-overlay (make-overlay start (point)
597 (current-buffer) nil t))
43c660bc 598 'face 'ns-working-text-face)))
edfda783
AR
599
600(defun ns-echo-working-text ()
2b4e72e1 601 "Echo contents of `ns-working-text' in message display area.
43c660bc
SM
602See `ns-insert-working-text'."
603 (ns-delete-working-text)
edfda783
AR
604 (let* ((msg (current-message))
605 (msglen (length msg))
606 message-log-max)
43c660bc 607 (setq ns-working-overlay (length ns-working-text))
edfda783 608 (setq msg (concat msg ns-working-text))
43c660bc 609 (put-text-property msglen (+ msglen ns-working-overlay)
08324aaa 610 'face 'ns-working-text-face msg)
43c660bc 611 (message "%s" msg)))
edfda783
AR
612
613(defun ns-delete-working-text()
43c660bc 614 "Delete working text and clear `ns-working-overlay'."
edfda783 615 (interactive)
43c660bc
SM
616 (cond
617 ((and (overlayp ns-working-overlay)
618 ;; Still alive?
619 (overlay-buffer ns-working-overlay))
620 (with-current-buffer (overlay-buffer ns-working-overlay)
621 (delete-region (overlay-start ns-working-overlay)
622 (overlay-end ns-working-overlay))
623 (delete-overlay ns-working-overlay)))
624 ((integerp ns-working-overlay)
625 (let ((msg (current-message))
626 message-log-max)
627 (setq msg (substring msg 0 (- (length msg) ns-working-overlay)))
628 (message "%s" msg))))
629 (setq ns-working-overlay nil))
edfda783
AR
630
631
c0642f6d
GM
632(declare-function ns-convert-utf8-nfd-to-nfc "nsfns.m" (str))
633
edfda783
AR
634;;;; OS X file system Unicode UTF-8 NFD (decomposed form) support
635;; Lisp code based on utf-8m.el, by Seiji Zenitani, Eiji Honjoh, and
636;; Carsten Bormann.
637(if (eq system-type 'darwin)
638 (progn
639
640 (defun ns-utf8-nfd-post-read-conversion (length)
2b4e72e1 641 "Calls `ns-convert-utf8-nfd-to-nfc' to compose char sequences."
edfda783
AR
642 (save-excursion
643 (save-restriction
644 (narrow-to-region (point) (+ (point) length))
645 (let ((str (buffer-string)))
646 (delete-region (point-min) (point-max))
647 (insert (ns-convert-utf8-nfd-to-nfc str))
648 (- (point-max) (point-min))
649 ))))
650
651 (define-coding-system 'utf-8-nfd
652 "UTF-8 NFD (decomposed) encoding."
653 :coding-type 'utf-8
654 :mnemonic ?U
655 :charset-list '(unicode)
656 :post-read-conversion 'ns-utf8-nfd-post-read-conversion)
657 (set-file-name-coding-system 'utf-8-nfd)))
658
edfda783
AR
659
660
661;;;; Inter-app communications support.
662
c0642f6d
GM
663(defvar ns-input-text) ; nsterm.m
664
edfda783 665(defun ns-insert-text ()
2b4e72e1 666 "Insert contents of `ns-input-text' at point."
edfda783
AR
667 (interactive)
668 (insert ns-input-text)
669 (setq ns-input-text nil))
c0642f6d 670
edfda783 671(defun ns-insert-file ()
2b4e72e1
JB
672 "Insert contents of file `ns-input-file' like insert-file but with less
673prompting. If file is a directory perform a `find-file' on it."
edfda783
AR
674 (interactive)
675 (let ((f))
676 (setq f (car ns-input-file))
677 (setq ns-input-file (cdr ns-input-file))
678 (if (file-directory-p f)
679 (find-file f)
680 (push-mark (+ (point) (car (cdr (insert-file-contents f))))))))
681
682(defvar ns-select-overlay nil
a5a1b464 683 "Overlay used to highlight areas in files requested by Nextstep apps.")
edfda783
AR
684(make-variable-buffer-local 'ns-select-overlay)
685
c0642f6d
GM
686(defvar ns-input-line) ; nsterm.m
687
edfda783 688(defun ns-open-file-select-line ()
b90cc058
CY
689 "Open a buffer containing the file `ns-input-file'.
690Lines are highlighted according to `ns-input-line'."
edfda783
AR
691 (interactive)
692 (ns-find-file)
693 (cond
694 ((and ns-input-line (buffer-modified-p))
695 (if ns-select-overlay
696 (setq ns-select-overlay (delete-overlay ns-select-overlay)))
697 (deactivate-mark)
5f68c1b7
GM
698 (goto-char (point-min))
699 (forward-line (1- (if (consp ns-input-line)
700 (min (car ns-input-line) (cdr ns-input-line))
701 ns-input-line))))
edfda783
AR
702 (ns-input-line
703 (if (not ns-select-overlay)
d93e053b
GM
704 (overlay-put (setq ns-select-overlay (make-overlay (point-min)
705 (point-min)))
edfda783
AR
706 'face 'highlight))
707 (let ((beg (save-excursion
d93e053b
GM
708 (goto-char (point-min))
709 (line-beginning-position
710 (if (consp ns-input-line)
711 (min (car ns-input-line) (cdr ns-input-line))
712 ns-input-line))))
edfda783 713 (end (save-excursion
d93e053b
GM
714 (goto-char (point-min))
715 (line-beginning-position
716 (1+ (if (consp ns-input-line)
717 (max (car ns-input-line) (cdr ns-input-line))
718 ns-input-line))))))
edfda783
AR
719 (move-overlay ns-select-overlay beg end)
720 (deactivate-mark)
721 (goto-char beg)))
722 (t
723 (if ns-select-overlay
724 (setq ns-select-overlay (delete-overlay ns-select-overlay))))))
725
726(defun ns-unselect-line ()
a5a1b464 727 "Removes any Nextstep highlight a buffer may contain."
edfda783
AR
728 (if ns-select-overlay
729 (setq ns-select-overlay (delete-overlay ns-select-overlay))))
730
731(add-hook 'first-change-hook 'ns-unselect-line)
732
733
734
735;;;; Preferences handling.
c0642f6d 736(declare-function ns-get-resource "nsfns.m" (owner name))
edfda783
AR
737
738(defun get-lisp-resource (arg1 arg2)
739 (let ((res (ns-get-resource arg1 arg2)))
740 (cond
741 ((not res) 'unbound)
742 ((string-equal (upcase res) "YES") t)
743 ((string-equal (upcase res) "NO") nil)
744 (t (read res)))))
745
c0642f6d 746;; nsterm.m
c6c62e78 747
c0642f6d
GM
748(declare-function ns-read-file-name "nsfns.m"
749 (prompt &optional dir isLoad init))
750
edfda783
AR
751;;;; File handling.
752
753(defun ns-open-file-using-panel ()
754 "Pop up open-file panel, and load the result in a buffer."
755 (interactive)
ebe68042 756 ;; Prompt dir defaultName isLoad initial.
edfda783
AR
757 (setq ns-input-file (ns-read-file-name "Select File to Load" nil t nil))
758 (if ns-input-file
759 (and (setq ns-input-file (list ns-input-file)) (ns-find-file))))
760
761(defun ns-write-file-using-panel ()
762 "Pop up save-file panel, and save buffer in resulting name."
763 (interactive)
764 (let (ns-output-file)
ebe68042 765 ;; Prompt dir defaultName isLoad initial.
edfda783
AR
766 (setq ns-output-file (ns-read-file-name "Save As" nil nil nil))
767 (message ns-output-file)
768 (if ns-output-file (write-file ns-output-file))))
769
73f6360c
GM
770(defcustom ns-pop-up-frames 'fresh
771 "Non-nil means open files upon request from the Workspace in a new frame.
c0642f6d 772If t, always do so. Any other non-nil value means open a new frame
73f6360c
GM
773unless the current buffer is a scratch buffer."
774 :type '(choice (const :tag "Never" nil)
775 (const :tag "Always" t)
776 (other :tag "Except for scratch buffer" fresh))
777 :version "23.1"
778 :group 'ns)
c0642f6d
GM
779
780(declare-function ns-hide-emacs "nsfns.m" (on))
781
edfda783 782(defun ns-find-file ()
2b4e72e1 783 "Do a `find-file' with the `ns-input-file' as argument."
edfda783
AR
784 (interactive)
785 (let ((f) (file) (bufwin1) (bufwin2))
786 (setq f (file-truename (car ns-input-file)))
787 (setq ns-input-file (cdr ns-input-file))
788 (setq file (find-file-noselect f))
789 (setq bufwin1 (get-buffer-window file 'visible))
790 (setq bufwin2 (get-buffer-window "*scratch*" 'visibile))
791 (cond
792 (bufwin1
793 (select-frame (window-frame bufwin1))
794 (raise-frame (window-frame bufwin1))
795 (select-window bufwin1))
796 ((and (eq ns-pop-up-frames 'fresh) bufwin2)
797 (ns-hide-emacs 'activate)
798 (select-frame (window-frame bufwin2))
799 (raise-frame (window-frame bufwin2))
800 (select-window bufwin2)
801 (find-file f))
802 (ns-pop-up-frames
803 (ns-hide-emacs 'activate)
804 (let ((pop-up-frames t)) (pop-to-buffer file nil)))
805 (t
806 (ns-hide-emacs 'activate)
807 (find-file f)))))
808
809
810
811;;;; Frame-related functions.
812
a5a1b464 813;; Don't show the frame name; that's redundant with Nextstep.
edfda783
AR
814(setq-default mode-line-frame-identification '(" "))
815
edfda783
AR
816;; You say tomAYto, I say tomAHto..
817(defvaralias 'ns-option-modifier 'ns-alternate-modifier)
818
819(defun ns-do-hide-emacs ()
820 (interactive)
821 (ns-hide-emacs t))
822
c0642f6d
GM
823(declare-function ns-hide-others "nsfns.m" ())
824
edfda783
AR
825(defun ns-do-hide-others ()
826 (interactive)
827 (ns-hide-others))
828
c0642f6d
GM
829(declare-function ns-emacs-info-panel "nsfns.m" ())
830
edfda783
AR
831(defun ns-do-emacs-info-panel ()
832 (interactive)
833 (ns-emacs-info-panel))
834
835(defun ns-next-frame ()
836 "Switch to next visible frame."
837 (interactive)
838 (other-frame 1))
2b4e72e1 839
edfda783
AR
840(defun ns-prev-frame ()
841 "Switch to previous visible frame."
842 (interactive)
843 (other-frame -1))
844
ebe68042 845;; If no position specified, make new frame offset by 25 from current.
e5744c66 846(defvar parameters) ; dynamically bound in make-frame
edfda783 847(add-hook 'before-make-frame-hook
ebe68042
SM
848 (lambda ()
849 (let ((left (cdr (assq 'left (frame-parameters))))
850 (top (cdr (assq 'top (frame-parameters)))))
851 (if (consp left) (setq left (cadr left)))
852 (if (consp top) (setq top (cadr top)))
853 (cond
854 ((or (assq 'top parameters) (assq 'left parameters)))
855 ((or (not left) (not top)))
856 (t
857 (setq parameters (cons (cons 'left (+ left 25))
858 (cons (cons 'top (+ top 25))
859 parameters))))))))
860
861;; frame will be focused anyway, so select it
55e8d9a5 862;; (if this is not done, modeline is dimmed until first interaction)
edfda783
AR
863(add-hook 'after-make-frame-functions 'select-frame)
864
f2d9c15f
GM
865(defvar tool-bar-mode)
866(declare-function tool-bar-mode "tool-bar" (&optional arg))
867
edfda783
AR
868;; Based on a function by David Reitter <dreitter@inf.ed.ac.uk> ;
869;; see http://lists.gnu.org/archive/html/emacs-devel/2005-09/msg00681.html .
870(defun ns-toggle-toolbar (&optional frame)
871 "Switches the tool bar on and off in frame FRAME.
872 If FRAME is nil, the change applies to the selected frame."
873 (interactive)
ebe68042
SM
874 (modify-frame-parameters
875 frame (list (cons 'tool-bar-lines
edfda783
AR
876 (if (> (or (frame-parameter frame 'tool-bar-lines) 0) 0)
877 0 1)) ))
878 (if (not tool-bar-mode) (tool-bar-mode t)))
879
edfda783
AR
880
881
882;;;; Dialog-related functions.
883
33b35792 884
edfda783
AR
885;; Ask user for confirm before printing. Due to Kevin Rodgers.
886(defun ns-print-buffer ()
887 "Interactive front-end to `print-buffer': asks for user confirmation first."
888 (interactive)
32226619 889 (if (and (called-interactively-p 'interactive)
ebe68042
SM
890 (or (listp last-nonmenu-event)
891 (and (char-or-string-p (event-basic-type last-command-event))
892 (memq 'super (event-modifiers last-command-event)))))
893 (let ((last-nonmenu-event (if (listp last-nonmenu-event)
894 last-nonmenu-event
895 ;; Fake it:
896 `(mouse-1 POSITION 1))))
897 (if (y-or-n-p (format "Print buffer %s? " (buffer-name)))
898 (print-buffer)
edfda783
AR
899 (error "Cancelled")))
900 (print-buffer)))
901
edfda783
AR
902
903;;;; Font support.
904
edfda783
AR
905;; Needed for font listing functions under both backend and normal
906(setq scalable-fonts-allowed t)
907
908;; Set to use font panel instead
406aaa6f 909(declare-function ns-popup-font-panel "nsfns.m" (&optional frame))
28571246 910(defalias 'x-select-font 'ns-popup-font-panel "Pop up the font panel.
2b4e72e1 911This function has been overloaded in Nextstep.")
4c785fa7 912(defalias 'mouse-set-font 'ns-popup-font-panel "Pop up the font panel.
2b4e72e1 913This function has been overloaded in Nextstep.")
edfda783 914
c0642f6d
GM
915;; nsterm.m
916(defvar ns-input-font)
917(defvar ns-input-fontsize)
918
edfda783 919(defun ns-respond-to-change-font ()
2b4e72e1
JB
920 "Respond to changeFont: event, expecting `ns-input-font' and\n\
921`ns-input-fontsize' of new font."
edfda783
AR
922 (interactive)
923 (modify-frame-parameters (selected-frame)
924 (list (cons 'font ns-input-font)
925 (cons 'fontsize ns-input-fontsize)))
926 (set-frame-font ns-input-font))
927
928
929;; Default fontset for Mac OS X. This is mainly here to show how a fontset
930;; can be set up manually. Ordinarily, fontsets are auto-created whenever
2b4e72e1 931;; a font is chosen by
edfda783 932(defvar ns-standard-fontset-spec
ebe68042
SM
933 ;; Only some code supports this so far, so use uglier XLFD version
934 ;; "-ns-*-*-*-*-*-10-*-*-*-*-*-fontset-standard,latin:Courier,han:Kai"
935 (mapconcat 'identity
936 '("-ns-*-*-*-*-*-10-*-*-*-*-*-fontset-standard"
937 "latin:-*-Courier-*-*-*-*-10-*-*-*-*-*-iso10646-1"
938 "han:-*-Kai-*-*-*-*-10-*-*-*-*-*-iso10646-1"
939 "cyrillic:-*-Trebuchet$MS-*-*-*-*-10-*-*-*-*-*-iso10646-1")
940 ",")
941 "String of fontset spec of the standard fontset.
edfda783 942This defines a fontset consisting of the Courier and other fonts that
2b4e72e1
JB
943come with OS X.
944See the documentation of `create-fontset-from-fontset-spec' for the format.")
edfda783 945
ebe68042 946;; Conditional on new-fontset so bootstrapping works on non-GUI compiles.
edfda783
AR
947(if (fboundp 'new-fontset)
948 (progn
949 ;; Setup the default fontset.
2c035993 950 (create-default-fontset)
edfda783 951 ;; Create the standard fontset.
2c035993
KH
952 (condition-case err
953 (create-fontset-from-fontset-spec ns-standard-fontset-spec t)
2b4e72e1 954 (error (display-warning
2c035993
KH
955 'initialization
956 (format "Creation of the standard fontset failed: %s" err)
957 :error)))))
edfda783 958
6125167c
GM
959(defvar ns-reg-to-script) ; nsfont.m
960
a3b4b363
AR
961;; This maps font registries (not exposed by NS APIs for font selection) to
962;; unicode scripts (which can be mapped to unicode character ranges which are).
963;; See ../international/fontset.el
964(setq ns-reg-to-script
965 '(("iso8859-1" . latin)
966 ("iso8859-2" . latin)
967 ("iso8859-3" . latin)
968 ("iso8859-4" . latin)
969 ("iso8859-5" . cyrillic)
970 ("microsoft-cp1251" . cyrillic)
971 ("koi8-r" . cyrillic)
972 ("iso8859-6" . arabic)
973 ("iso8859-7" . greek)
974 ("iso8859-8" . hebrew)
975 ("iso8859-9" . latin)
976 ("iso8859-10" . latin)
977 ("iso8859-11" . thai)
978 ("tis620" . thai)
979 ("iso8859-13" . latin)
980 ("iso8859-14" . latin)
981 ("iso8859-15" . latin)
982 ("iso8859-16" . latin)
983 ("viscii1.1-1" . latin)
984 ("jisx0201" . kana)
985 ("jisx0208" . han)
986 ("jisx0212" . han)
987 ("jisx0213" . han)
988 ("gb2312.1980" . han)
989 ("gb18030" . han)
990 ("gbk-0" . han)
991 ("big5" . han)
992 ("cns11643" . han)
993 ("sisheng_cwnn" . bopomofo)
994 ("ksc5601.1987" . hangul)
995 ("ethiopic-unicode" . ethiopic)
996 ("is13194-devanagari" . indian-is13194)
997 ("iso10646.indian-1" . devanagari)))
998
edfda783
AR
999
1000;;;; Pasteboard support.
1001
c0642f6d
GM
1002(declare-function ns-get-cut-buffer-internal "nsselect.m" (buffer))
1003
edfda783
AR
1004(defun ns-get-pasteboard ()
1005 "Returns the value of the pasteboard."
1006 (ns-get-cut-buffer-internal 'PRIMARY))
1007
c0642f6d
GM
1008(declare-function ns-store-cut-buffer-internal "nsselect.m" (buffer string))
1009
edfda783 1010(defun ns-set-pasteboard (string)
a5a1b464 1011 "Store STRING into the pasteboard of the Nextstep display server."
edfda783
AR
1012 ;; Check the data type of STRING.
1013 (if (not (stringp string)) (error "Nonstring given to pasteboard"))
1014 (ns-store-cut-buffer-internal 'PRIMARY string))
1015
ebe68042
SM
1016;; We keep track of the last text selected here, so we can check the
1017;; current selection against it, and avoid passing back our own text
9e50ff0c 1018;; from x-cut-buffer-or-selection-value.
edfda783
AR
1019(defvar ns-last-selected-text nil)
1020
9e50ff0c 1021(defun x-select-text (text &optional push)
3077d1f6
EZ
1022 "Select TEXT, a string, according to the window system.
1023
1024On X, put TEXT in the primary X selection. For backward
1025compatibility with older X applications, set the value of X cut
1026buffer 0 as well, and if the optional argument PUSH is non-nil,
1027rotate the cut buffers. If `x-select-enable-clipboard' is
1028non-nil, copy the text to the X clipboard as well.
1029
1030On Windows, make TEXT the current selection. If
1031`x-select-enable-clipboard' is non-nil, copy the text to the
1032clipboard as well. The argument PUSH is ignored.
1033
1034On Nextstep, put TEXT in the pasteboard; PUSH is ignored."
edfda783
AR
1035 ;; Don't send the pasteboard too much text.
1036 ;; It becomes slow, and if really big it causes errors.
1037 (ns-set-pasteboard text)
1038 (setq ns-last-selected-text text))
1039
a5a1b464
CY
1040;; Return the value of the current Nextstep selection. For
1041;; compatibility with older Nextstep applications, this checks cut
1042;; buffer 0 before retrieving the value of the primary selection.
9e50ff0c 1043(defun x-cut-buffer-or-selection-value ()
edfda783 1044 (let (text)
d377ef4a 1045
edfda783
AR
1046 ;; Consult the selection, then the cut buffer. Treat empty strings
1047 ;; as if they were unset.
1048 (or text (setq text (ns-get-pasteboard)))
1049 (if (string= text "") (setq text nil))
d377ef4a 1050
edfda783
AR
1051 (cond
1052 ((not text) nil)
1053 ((eq text ns-last-selected-text) nil)
1054 ((string= text ns-last-selected-text)
1055 ;; Record the newer string, so subsequent calls can use the `eq' test.
1056 (setq ns-last-selected-text text)
1057 nil)
1058 (t
1059 (setq ns-last-selected-text text)))))
1060
1061(defun ns-copy-including-secondary ()
1062 (interactive)
1063 (call-interactively 'kill-ring-save)
1064 (ns-store-cut-buffer-internal 'SECONDARY
1065 (buffer-substring (point) (mark t))))
1066(defun ns-paste-secondary ()
1067 (interactive)
1068 (insert (ns-get-cut-buffer-internal 'SECONDARY)))
1069
edfda783
AR
1070
1071
1072;;;; Scrollbar handling.
1073
1074(global-set-key [vertical-scroll-bar down-mouse-1] 'ns-handle-scroll-bar-event)
1075(global-unset-key [vertical-scroll-bar mouse-1])
1076(global-unset-key [vertical-scroll-bar drag-mouse-1])
1077
f2d9c15f
GM
1078(declare-function scroll-bar-scale "scroll-bar" (num-denom whole))
1079
edfda783 1080(defun ns-scroll-bar-move (event)
55e8d9a5 1081 "Scroll the frame according to a Nextstep scroller event."
edfda783
AR
1082 (interactive "e")
1083 (let* ((pos (event-end event))
1084 (window (nth 0 pos))
1085 (scale (nth 2 pos)))
937e6a56 1086 (with-current-buffer (window-buffer window)
edfda783
AR
1087 (cond
1088 ((eq (car scale) (cdr scale))
1089 (goto-char (point-max)))
1090 ((= (car scale) 0)
1091 (goto-char (point-min)))
1092 (t
1093 (goto-char (+ (point-min) 1
1094 (scroll-bar-scale scale (- (point-max) (point-min)))))))
1095 (beginning-of-line)
1096 (set-window-start window (point))
1097 (vertical-motion (/ (window-height window) 2) window))))
1098
1099(defun ns-handle-scroll-bar-event (event)
55e8d9a5 1100 "Handle scroll bar EVENT to emulate Nextstep style scrolling."
edfda783
AR
1101 (interactive "e")
1102 (let* ((position (event-start event))
1103 (bar-part (nth 4 position))
1104 (window (nth 0 position))
1105 (old-window (selected-window)))
1106 (cond
1107 ((eq bar-part 'ratio)
1108 (ns-scroll-bar-move event))
1109 ((eq bar-part 'handle)
1110 (if (eq window (selected-window))
1111 (track-mouse (ns-scroll-bar-move event))
ebe68042 1112 ;; track-mouse faster for selected window, slower for unselected.
edfda783
AR
1113 (ns-scroll-bar-move event)))
1114 (t
1115 (select-window window)
1116 (cond
1117 ((eq bar-part 'up)
1118 (goto-char (window-start window))
1119 (scroll-down 1))
1120 ((eq bar-part 'above-handle)
1121 (scroll-down))
1122 ((eq bar-part 'below-handle)
1123 (scroll-up))
1124 ((eq bar-part 'down)
1125 (goto-char (window-start window))
1126 (scroll-up 1)))
1127 (select-window old-window)))))
1128
1129
1130;;;; Color support.
1131
c0642f6d
GM
1132(declare-function ns-list-colors "nsfns.m" (&optional frame))
1133
edfda783 1134(defvar x-colors (ns-list-colors)
3077d1f6
EZ
1135 "List of basic colors available on color displays.
1136For X, the list comes from the `rgb.txt' file,v 10.41 94/02/20.
1137For Nextstep, this is a list of non-PANTONE colors returned by
1138the operating system.")
edfda783 1139
9e50ff0c 1140(defun xw-defined-colors (&optional frame)
3077d1f6 1141 "Internal function called by `defined-colors'."
edfda783
AR
1142 (or frame (setq frame (selected-frame)))
1143 (let ((all-colors x-colors)
1144 (this-color nil)
1145 (defined-colors nil))
1146 (while all-colors
1147 (setq this-color (car all-colors)
1148 all-colors (cdr all-colors))
ebe68042
SM
1149 ;; (and (face-color-supported-p frame this-color t)
1150 (setq defined-colors (cons this-color defined-colors))) ;;)
edfda783 1151 defined-colors))
edfda783 1152
edfda783
AR
1153;; Functions for color panel + drag
1154(defun ns-face-at-pos (pos)
1155 (let* ((frame (car pos))
1156 (frame-pos (cons (cadr pos) (cddr pos)))
1157 (window (window-at (car frame-pos) (cdr frame-pos) frame))
1158 (window-pos (coordinates-in-window-p frame-pos window))
1159 (buffer (window-buffer window))
1160 (edges (window-edges window)))
1161 (cond
1162 ((not window-pos)
1163 nil)
1164 ((eq window-pos 'mode-line)
1165 'modeline)
1166 ((eq window-pos 'vertical-line)
1167 'default)
1168 ((consp window-pos)
937e6a56 1169 (with-current-buffer buffer
edfda783
AR
1170 (let ((p (car (compute-motion (window-start window)
1171 (cons (nth 0 edges) (nth 1 edges))
1172 (window-end window)
1173 frame-pos
1174 (- (window-width window) 1)
1175 nil
1176 window))))
1177 (cond
1178 ((eq p (window-point window))
1179 'cursor)
1180 ((and mark-active (< (region-beginning) p) (< p (region-end)))
1181 'region)
1182 (t
1183 (let ((faces (get-char-property p 'face window)))
1184 (if (consp faces) (car faces) faces)))))))
1185 (t
1186 nil))))
1187
c0642f6d
GM
1188(defvar ns-input-color) ; nsterm.m
1189
edfda783 1190(defun ns-set-foreground-at-mouse ()
2b4e72e1 1191 "Set the foreground color at the mouse location to `ns-input-color'."
edfda783
AR
1192 (interactive)
1193 (let* ((pos (mouse-position))
1194 (frame (car pos))
1195 (face (ns-face-at-pos pos)))
1196 (cond
1197 ((eq face 'cursor)
c0642f6d 1198 (modify-frame-parameters frame (list (cons 'cursor-color
edfda783
AR
1199 ns-input-color))))
1200 ((not face)
1201 (modify-frame-parameters frame (list (cons 'foreground-color
1202 ns-input-color))))
1203 (t
1204 (set-face-foreground face ns-input-color frame)))))
1205
1206(defun ns-set-background-at-mouse ()
2b4e72e1 1207 "Set the background color at the mouse location to `ns-input-color'."
edfda783
AR
1208 (interactive)
1209 (let* ((pos (mouse-position))
1210 (frame (car pos))
1211 (face (ns-face-at-pos pos)))
1212 (cond
1213 ((eq face 'cursor)
1214 (modify-frame-parameters frame (list (cons 'cursor-color
1215 ns-input-color))))
1216 ((not face)
1217 (modify-frame-parameters frame (list (cons 'background-color
1218 ns-input-color))))
1219 (t
1220 (set-face-background face ns-input-color frame)))))
1221
a5a1b464 1222;; Set some options to be as Nextstep-like as possible.
edfda783
AR
1223(setq frame-title-format t
1224 icon-title-format t)
1225
edfda783
AR
1226
1227(defvar ns-initialized nil
a5a1b464 1228 "Non-nil if Nextstep windowing has been initialized.")
edfda783 1229
c0642f6d 1230(declare-function ns-list-services "nsfns.m" ())
b51a3365 1231(declare-function x-open-connection "nsfns.m"
f2d9c15f 1232 (display &optional xrm-string must-succeed))
c0642f6d 1233
a5a1b464
CY
1234;; Do the actual Nextstep Windows setup here; the above code just
1235;; defines functions and variables that we use now.
edfda783 1236(defun ns-initialize-window-system ()
a5a1b464 1237 "Initialize Emacs for Nextstep (Cocoa / GNUstep) windowing."
edfda783 1238
ebe68042 1239 ;; PENDING: not needed?
edfda783
AR
1240 (setq command-line-args (ns-handle-args command-line-args))
1241
9e50ff0c 1242 (x-open-connection (system-name) nil t)
edfda783 1243
ebe68042
SM
1244 (dolist (service (ns-list-services))
1245 (if (eq (car service) 'undefined)
1246 (ns-define-service (cdr service))
1247 (define-key global-map (vector (car service))
1248 (ns-define-service (cdr service)))))
edfda783
AR
1249
1250 (if (and (eq (get-lisp-resource nil "NXAutoLaunch") t)
1251 (eq (get-lisp-resource nil "HideOnAutoLaunch") t))
1252 (add-hook 'after-init-hook 'ns-do-hide-emacs))
1253
ebe68042 1254 ;; FIXME: This will surely lead to "MODIFIED OUTSIDE CUSTOM" warnings.
edfda783 1255 (menu-bar-mode (if (get-lisp-resource nil "Menus") 1 -1))
edfda783
AR
1256
1257 (setq ns-initialized t))
1258
1259(add-to-list 'handle-args-function-alist '(ns . ns-handle-args))
1260(add-to-list 'frame-creation-function-alist '(ns . x-create-frame-with-faces))
1261(add-to-list 'window-system-initialization-alist '(ns . ns-initialize-window-system))
1262
1263
1264(provide 'ns-win)
1265
0ae1e5e5 1266;; arch-tag: eb138a45-4e2e-4d68-b1c9-a39665731644
edfda783 1267;;; ns-win.el ends here