2012-04-26 12:43:28 +00:00
|
|
|
;;; ns-win.el --- lisp side of interface with NeXT/Open/GNUstep/MacOS X window system -*- lexical-binding: t -*-
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2014-01-01 07:43:34 +00:00
|
|
|
;; Copyright (C) 1993-1994, 2005-2014 Free Software Foundation, Inc.
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2009-01-10 22:08:37 +00:00
|
|
|
;; Authors: Carl Edman
|
|
|
|
;; Christian Limpach
|
|
|
|
;; Scott Bender
|
|
|
|
;; Christophe de Dinechin
|
|
|
|
;; Adrian Robert
|
2008-07-16 02:29:39 +00:00
|
|
|
;; Keywords: terminals
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; ns-win.el: this file is loaded from ../lisp/startup.el when it
|
|
|
|
;; recognizes that Nextstep windows are to be used. Command line
|
|
|
|
;; switches are parsed and those pertaining to Nextstep are processed
|
|
|
|
;; and removed from the command line. The Nextstep display is opened
|
|
|
|
;; and hooks are set for popping up the initial window.
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
;; startup.el will then examine startup files, and eventually call the hooks
|
|
|
|
;; which create the first window (s).
|
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; A number of other Nextstep convenience functions are defined in
|
|
|
|
;; this file, which works in close coordination with src/nsfns.m.
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
;;; Code:
|
2012-09-17 11:55:05 +00:00
|
|
|
(eval-when-compile (require 'cl-lib))
|
2010-10-26 02:59:05 +00:00
|
|
|
(or (featurep 'ns)
|
2008-10-04 18:45:30 +00:00
|
|
|
(error "%s: Loading ns-win.el but not compiled for GNUstep/MacOS"
|
2010-10-26 02:59:05 +00:00
|
|
|
(invocation-name)))
|
2008-07-16 20:06:14 +00:00
|
|
|
|
2010-10-27 06:48:04 +00:00
|
|
|
;; Documentation-purposes only: actually loaded in loadup.el.
|
2008-07-15 18:15:18 +00:00
|
|
|
(require 'frame)
|
|
|
|
(require 'mouse)
|
|
|
|
(require 'faces)
|
|
|
|
(require 'menu-bar)
|
|
|
|
(require 'fontset)
|
2013-12-19 10:25:48 +00:00
|
|
|
(require 'dnd)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2009-02-04 03:38:06 +00:00
|
|
|
(defgroup ns nil
|
|
|
|
"GNUstep/Mac OS X specific features."
|
|
|
|
:group 'environment)
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;;;; Command line argument handling.
|
|
|
|
|
2010-10-26 03:58:19 +00:00
|
|
|
(defvar x-invocation-args)
|
|
|
|
(defvar ns-command-line-resources nil) ; FIXME unused?
|
2008-07-17 02:36:16 +00:00
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
;; nsterm.m.
|
|
|
|
(defvar ns-input-file)
|
|
|
|
|
2012-04-26 12:43:28 +00:00
|
|
|
(defun ns-handle-nxopen (_switch &optional temp)
|
2010-10-27 06:48:04 +00:00
|
|
|
(setq unread-command-events (append unread-command-events
|
|
|
|
(if temp '(ns-open-temp-file)
|
|
|
|
'(ns-open-file)))
|
2010-10-26 03:58:19 +00:00
|
|
|
ns-input-file (append ns-input-file (list (pop x-invocation-args)))))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defun ns-handle-nxopentemp (switch)
|
2010-10-27 06:48:04 +00:00
|
|
|
(ns-handle-nxopen switch t))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2012-04-26 12:43:28 +00:00
|
|
|
(defun ns-ignore-1-arg (_switch)
|
2010-10-26 03:58:19 +00:00
|
|
|
(setq x-invocation-args (cdr x-invocation-args)))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2008-08-13 23:40:02 +00:00
|
|
|
(defun ns-parse-geometry (geom)
|
2008-08-11 01:24:31 +00:00
|
|
|
"Parse a Nextstep-style geometry string GEOM.
|
2008-07-15 18:15:18 +00:00
|
|
|
Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
|
|
|
|
The properties returned may include `top', `left', `height', and `width'."
|
2008-07-21 16:23:55 +00:00
|
|
|
(when (string-match "\\([0-9]+\\)\\( \\([0-9]+\\)\\( \\([0-9]+\\)\
|
|
|
|
\\( \\([0-9]+\\) ?\\)?\\)?\\)?"
|
|
|
|
geom)
|
|
|
|
(apply
|
|
|
|
'append
|
|
|
|
(list
|
|
|
|
(list (cons 'top (string-to-number (match-string 1 geom))))
|
|
|
|
(if (match-string 3 geom)
|
|
|
|
(list (cons 'left (string-to-number (match-string 3 geom)))))
|
|
|
|
(if (match-string 5 geom)
|
|
|
|
(list (cons 'height (string-to-number (match-string 5 geom)))))
|
|
|
|
(if (match-string 7 geom)
|
|
|
|
(list (cons 'width (string-to-number (match-string 7 geom)))))))))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
;;;; Keyboard mapping.
|
|
|
|
|
2010-10-26 02:59:05 +00:00
|
|
|
(define-obsolete-variable-alias 'ns-alternatives-map 'x-alternatives-map "24.1")
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; Here are some Nextstep-like bindings for command key sequences.
|
2009-03-29 00:00:30 +00:00
|
|
|
(define-key global-map [?\s-,] 'customize)
|
2008-07-15 18:15:18 +00:00
|
|
|
(define-key global-map [?\s-'] 'next-multiframe-window)
|
|
|
|
(define-key global-map [?\s-`] 'other-frame)
|
2010-07-13 10:41:49 +00:00
|
|
|
(define-key global-map [?\s-~] 'ns-prev-frame)
|
2008-07-15 18:15:18 +00:00
|
|
|
(define-key global-map [?\s--] 'center-line)
|
|
|
|
(define-key global-map [?\s-:] 'ispell)
|
|
|
|
(define-key global-map [?\s-?] 'info)
|
|
|
|
(define-key global-map [?\s-^] 'kill-some-buffers)
|
|
|
|
(define-key global-map [?\s-&] 'kill-this-buffer)
|
|
|
|
(define-key global-map [?\s-C] 'ns-popup-color-panel)
|
|
|
|
(define-key global-map [?\s-D] 'dired)
|
|
|
|
(define-key global-map [?\s-E] 'edit-abbrevs)
|
|
|
|
(define-key global-map [?\s-L] 'shell-command)
|
|
|
|
(define-key global-map [?\s-M] 'manual-entry)
|
|
|
|
(define-key global-map [?\s-S] 'ns-write-file-using-panel)
|
|
|
|
(define-key global-map [?\s-a] 'mark-whole-buffer)
|
|
|
|
(define-key global-map [?\s-c] 'ns-copy-including-secondary)
|
|
|
|
(define-key global-map [?\s-d] 'isearch-repeat-backward)
|
|
|
|
(define-key global-map [?\s-e] 'isearch-yank-kill)
|
|
|
|
(define-key global-map [?\s-f] 'isearch-forward)
|
|
|
|
(define-key global-map [?\s-g] 'isearch-repeat-forward)
|
|
|
|
(define-key global-map [?\s-h] 'ns-do-hide-emacs)
|
|
|
|
(define-key global-map [?\s-H] 'ns-do-hide-others)
|
|
|
|
(define-key global-map [?\s-j] 'exchange-point-and-mark)
|
|
|
|
(define-key global-map [?\s-k] 'kill-this-buffer)
|
|
|
|
(define-key global-map [?\s-l] 'goto-line)
|
|
|
|
(define-key global-map [?\s-m] 'iconify-frame)
|
|
|
|
(define-key global-map [?\s-n] 'make-frame)
|
|
|
|
(define-key global-map [?\s-o] 'ns-open-file-using-panel)
|
|
|
|
(define-key global-map [?\s-p] 'ns-print-buffer)
|
|
|
|
(define-key global-map [?\s-q] 'save-buffers-kill-emacs)
|
|
|
|
(define-key global-map [?\s-s] 'save-buffer)
|
|
|
|
(define-key global-map [?\s-t] 'ns-popup-font-panel)
|
|
|
|
(define-key global-map [?\s-u] 'revert-buffer)
|
|
|
|
(define-key global-map [?\s-v] 'yank)
|
|
|
|
(define-key global-map [?\s-w] 'delete-frame)
|
|
|
|
(define-key global-map [?\s-x] 'kill-region)
|
|
|
|
(define-key global-map [?\s-y] 'ns-paste-secondary)
|
|
|
|
(define-key global-map [?\s-z] 'undo)
|
|
|
|
(define-key global-map [?\s-|] 'shell-command-on-region)
|
|
|
|
(define-key global-map [s-kp-bar] 'shell-command-on-region)
|
2008-07-16 20:06:14 +00:00
|
|
|
;; (as in Terminal.app)
|
2008-07-15 18:15:18 +00:00
|
|
|
(define-key global-map [s-right] 'ns-next-frame)
|
|
|
|
(define-key global-map [s-left] 'ns-prev-frame)
|
|
|
|
|
|
|
|
(define-key global-map [home] 'beginning-of-buffer)
|
|
|
|
(define-key global-map [end] 'end-of-buffer)
|
|
|
|
(define-key global-map [kp-home] 'beginning-of-buffer)
|
|
|
|
(define-key global-map [kp-end] 'end-of-buffer)
|
2011-10-01 20:32:01 +00:00
|
|
|
(define-key global-map [kp-prior] 'scroll-down-command)
|
|
|
|
(define-key global-map [kp-next] 'scroll-up-command)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2010-10-27 06:48:04 +00:00
|
|
|
;; Allow shift-clicks to work similarly to under Nextstep.
|
2008-08-07 03:10:08 +00:00
|
|
|
(define-key global-map [S-mouse-1] 'mouse-save-then-kill)
|
|
|
|
(global-unset-key [S-down-mouse-1])
|
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; Special Nextstep-generated events are converted to function keys. Here
|
2010-10-26 13:20:00 +00:00
|
|
|
;; are the bindings for them. Note, these keys are actually declared in
|
|
|
|
;; x-setup-function-keys in common-win.
|
Unify shutdown handling under NS, via ns-power-off key event (where appropriate) and save-buffers-kill-emacs.
remove NS-specific preferences window that used to show NS-specific preferences.
Integrate preferences in Lisp accessible customization system where possible.
Remove ns-expand-space, because it can be set only during fontloading (i.e. not at runtime),
and because of redundancy with line-spacing frame parameter.
Remove loading of most and saving of all NS resources (from org.gnu.Emacs.plist).
nsterm.m (ns_shutdown_properly, -terminate): remove global state variable as it was never reset
(ns_term_init): remove initialization of Lisp-settable defaults and ns_expand_space
(-setPanelFromDefaultValues): remove ns_expand_space.
(-showPreferencesWindow): send new KEY_NS_SHOW_PREFS key.
nsfont.m (nsfont_open): remove ns_expand_space, assume -0.5 i.e. no additional spacing, similar to Carbon port.
nsterm.h: define KEY_NS_SHOW_PREFS key.
nsfns.m (ns-popup-prefs-panel): remove.
term/ns-win.el (ns-expand-space): remove.
(ns-show-prefs event): run `customize'.
(ns-power-off): run `save-buffers-kill-emacs', but ask user whether to save files (as is standard)
(clipboard-yank, clipboard-kill-ring-save, clipboard-kill-region)
(menu-bar-enable-clipboard): do not undefine these.
(ns-save-preferences,ns-save-options,ns-show-preferences-help): remove.
2009-03-14 21:19:56 +00:00
|
|
|
(define-key global-map [ns-power-off] 'save-buffers-kill-emacs)
|
2008-07-15 18:15:18 +00:00
|
|
|
(define-key global-map [ns-open-file] 'ns-find-file)
|
|
|
|
(define-key global-map [ns-open-temp-file] [ns-open-file])
|
|
|
|
(define-key global-map [ns-change-font] 'ns-respond-to-change-font)
|
|
|
|
(define-key global-map [ns-open-file-line] 'ns-open-file-select-line)
|
|
|
|
(define-key global-map [ns-spi-service-call] 'ns-spi-service-call)
|
2010-12-03 11:48:24 +00:00
|
|
|
(define-key global-map [ns-new-frame] 'make-frame)
|
2009-01-25 19:50:16 +00:00
|
|
|
(define-key global-map [ns-toggle-toolbar] 'ns-toggle-toolbar)
|
2010-12-03 11:48:24 +00:00
|
|
|
(define-key global-map [ns-show-prefs] 'customize)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
|
2008-07-18 16:54:12 +00:00
|
|
|
;; Set up a number of aliases and other layers to pretend we're using
|
|
|
|
;; the Choi/Mitsuharu Carbon port.
|
|
|
|
|
|
|
|
(defvaralias 'mac-allow-anti-aliasing 'ns-antialias-text)
|
|
|
|
(defvaralias 'mac-command-modifier 'ns-command-modifier)
|
2010-11-21 13:09:34 +00:00
|
|
|
(defvaralias 'mac-right-command-modifier 'ns-right-command-modifier)
|
2008-07-18 16:54:12 +00:00
|
|
|
(defvaralias 'mac-control-modifier 'ns-control-modifier)
|
2010-11-21 13:09:34 +00:00
|
|
|
(defvaralias 'mac-right-control-modifier 'ns-right-control-modifier)
|
2008-07-18 16:54:12 +00:00
|
|
|
(defvaralias 'mac-option-modifier 'ns-option-modifier)
|
2010-10-11 19:18:08 +00:00
|
|
|
(defvaralias 'mac-right-option-modifier 'ns-right-option-modifier)
|
2008-07-18 16:54:12 +00:00
|
|
|
(defvaralias 'mac-function-modifier 'ns-function-modifier)
|
2008-11-15 22:29:59 +00:00
|
|
|
(declare-function ns-do-applescript "nsfns.m" (script))
|
2008-07-27 19:20:38 +00:00
|
|
|
(defalias 'do-applescript 'ns-do-applescript)
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;;;; Services
|
2008-07-17 02:36:16 +00:00
|
|
|
(declare-function ns-perform-service "nsfns.m" (service send))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-define-service (path)
|
|
|
|
(let ((mapping [menu-bar services])
|
|
|
|
(service (mapconcat 'identity path "/"))
|
|
|
|
(name (intern
|
2008-07-16 20:06:14 +00:00
|
|
|
(subst-char-in-string
|
|
|
|
?\s ?-
|
|
|
|
(mapconcat 'identity (cons "ns-service" path) "-")))))
|
|
|
|
;; This defines the function.
|
|
|
|
(defalias name
|
2012-04-26 12:43:28 +00:00
|
|
|
(lambda (arg)
|
|
|
|
(interactive "p")
|
|
|
|
(let* ((in-string
|
|
|
|
(cond ((stringp arg) arg)
|
|
|
|
(mark-active
|
|
|
|
(buffer-substring (region-beginning) (region-end)))))
|
|
|
|
(out-string (ns-perform-service service in-string)))
|
|
|
|
(cond
|
|
|
|
((stringp arg) out-string)
|
|
|
|
((and out-string (or (not in-string)
|
|
|
|
(not (string= in-string out-string))))
|
|
|
|
(if mark-active (delete-region (region-beginning) (region-end)))
|
|
|
|
(insert out-string)
|
|
|
|
(setq deactivate-mark nil))))))
|
2008-07-15 18:15:18 +00:00
|
|
|
(cond
|
|
|
|
((lookup-key global-map mapping)
|
|
|
|
(while (cdr path)
|
|
|
|
(setq mapping (vconcat mapping (list (intern (car path)))))
|
|
|
|
(if (not (keymapp (lookup-key global-map mapping)))
|
|
|
|
(define-key global-map mapping
|
|
|
|
(cons (car path) (make-sparse-keymap (car path)))))
|
|
|
|
(setq path (cdr path)))
|
|
|
|
(setq mapping (vconcat mapping (list (intern (car path)))))
|
|
|
|
(define-key global-map mapping (cons (car path) name))))
|
|
|
|
name))
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
;; nsterm.m
|
|
|
|
(defvar ns-input-spi-name)
|
|
|
|
(defvar ns-input-spi-arg)
|
|
|
|
|
2008-08-11 01:23:07 +00:00
|
|
|
(declare-function dnd-open-file "dnd" (uri action))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-spi-service-call ()
|
2008-07-18 17:45:01 +00:00
|
|
|
"Respond to a service request."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
|
|
|
(cond ((string-equal ns-input-spi-name "open-selection")
|
|
|
|
(switch-to-buffer (generate-new-buffer "*untitled*"))
|
|
|
|
(insert ns-input-spi-arg))
|
|
|
|
((string-equal ns-input-spi-name "open-file")
|
|
|
|
(dnd-open-file ns-input-spi-arg nil))
|
|
|
|
((string-equal ns-input-spi-name "mail-selection")
|
|
|
|
(compose-mail)
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
(forward-line 1)
|
|
|
|
(insert ns-input-spi-arg))
|
|
|
|
((string-equal ns-input-spi-name "mail-to")
|
|
|
|
(compose-mail ns-input-spi-arg))
|
|
|
|
(t (error (concat "Service " ns-input-spi-name " not recognized")))))
|
|
|
|
|
|
|
|
|
2009-02-24 21:11:53 +00:00
|
|
|
;; Composed key sequence handling for Nextstep system input methods.
|
|
|
|
;; (On Nextstep systems, input methods are provided for CJK
|
|
|
|
;; characters, etc. which require multiple keystrokes, and during
|
|
|
|
;; entry a partial ("working") result is typically shown in the
|
|
|
|
;; editing window.)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defface ns-working-text-face
|
|
|
|
'((t :underline t))
|
|
|
|
"Face used to highlight working text during compose sequence insert."
|
|
|
|
:group 'ns)
|
|
|
|
|
|
|
|
(defvar ns-working-overlay nil
|
2009-02-24 21:11:53 +00:00
|
|
|
"Overlay used to highlight working text during compose sequence insert.
|
|
|
|
When text is in th echo area, this just stores the length of the working text.")
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2009-01-25 19:50:16 +00:00
|
|
|
(defvar ns-working-text) ; nsterm.m
|
|
|
|
|
|
|
|
;; Test if in echo area, based on mac-win.el 2007/08/26 unicode-2.
|
|
|
|
;; This will fail if called from a NONASCII_KEYSTROKE event on the global map.
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-in-echo-area ()
|
|
|
|
"Whether, for purposes of inserting working composition text, the minibuffer
|
|
|
|
is currently being used."
|
|
|
|
(or isearch-mode
|
|
|
|
(and cursor-in-echo-area (current-message))
|
|
|
|
;; Overlay strings are not shown in some cases.
|
|
|
|
(get-char-property (point) 'invisible)
|
|
|
|
(and (not (bobp))
|
|
|
|
(or (and (get-char-property (point) 'display)
|
|
|
|
(eq (get-char-property (1- (point)) 'display)
|
|
|
|
(get-char-property (point) 'display)))
|
|
|
|
(and (get-char-property (point) 'composition)
|
|
|
|
(eq (get-char-property (1- (point)) 'composition)
|
|
|
|
(get-char-property (point) 'composition)))))))
|
|
|
|
|
2009-01-23 13:00:21 +00:00
|
|
|
;; The 'interactive' here stays for subinvocations, so the ns-in-echo-area
|
|
|
|
;; always returns nil for some reason. If this WASN'T the case, we could
|
|
|
|
;; map this to [ns-insert-working-text] and eliminate Fevals in nsterm.m.
|
2009-01-25 19:50:16 +00:00
|
|
|
;; These functions test whether in echo area and delegate accordingly.
|
2009-01-23 13:00:21 +00:00
|
|
|
(defun ns-put-working-text ()
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
2009-01-23 13:00:21 +00:00
|
|
|
(if (ns-in-echo-area) (ns-echo-working-text) (ns-insert-working-text)))
|
2009-01-25 19:50:16 +00:00
|
|
|
(defun ns-unput-working-text ()
|
|
|
|
(interactive)
|
2009-02-24 21:11:53 +00:00
|
|
|
(ns-delete-working-text))
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2009-01-23 13:00:21 +00:00
|
|
|
(defun ns-insert-working-text ()
|
2009-05-03 23:19:35 +00:00
|
|
|
"Insert contents of `ns-working-text' as UTF-8 string and mark with
|
2009-02-24 21:11:53 +00:00
|
|
|
`ns-working-overlay'. Any previously existing working text is cleared first.
|
|
|
|
The overlay is assigned the face `ns-working-text-face'."
|
|
|
|
;; FIXME: if buffer is read-only, don't try to insert anything
|
|
|
|
;; and if text is bound to a command, execute that instead (Bug#1453)
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
2009-02-24 21:11:53 +00:00
|
|
|
(ns-delete-working-text)
|
2008-07-15 18:15:18 +00:00
|
|
|
(let ((start (point)))
|
|
|
|
(insert ns-working-text)
|
|
|
|
(overlay-put (setq ns-working-overlay (make-overlay start (point)
|
|
|
|
(current-buffer) nil t))
|
2009-02-24 21:11:53 +00:00
|
|
|
'face 'ns-working-text-face)))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defun ns-echo-working-text ()
|
2009-05-03 23:19:35 +00:00
|
|
|
"Echo contents of `ns-working-text' in message display area.
|
2009-02-24 21:11:53 +00:00
|
|
|
See `ns-insert-working-text'."
|
|
|
|
(ns-delete-working-text)
|
2008-07-15 18:15:18 +00:00
|
|
|
(let* ((msg (current-message))
|
|
|
|
(msglen (length msg))
|
|
|
|
message-log-max)
|
2009-02-24 21:11:53 +00:00
|
|
|
(setq ns-working-overlay (length ns-working-text))
|
2008-07-15 18:15:18 +00:00
|
|
|
(setq msg (concat msg ns-working-text))
|
2009-02-24 21:11:53 +00:00
|
|
|
(put-text-property msglen (+ msglen ns-working-overlay)
|
2009-01-24 10:27:03 +00:00
|
|
|
'face 'ns-working-text-face msg)
|
2009-02-24 21:11:53 +00:00
|
|
|
(message "%s" msg)))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defun ns-delete-working-text()
|
2009-02-24 21:11:53 +00:00
|
|
|
"Delete working text and clear `ns-working-overlay'."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
2009-02-24 21:11:53 +00:00
|
|
|
(cond
|
|
|
|
((and (overlayp ns-working-overlay)
|
|
|
|
;; Still alive?
|
|
|
|
(overlay-buffer ns-working-overlay))
|
|
|
|
(with-current-buffer (overlay-buffer ns-working-overlay)
|
|
|
|
(delete-region (overlay-start ns-working-overlay)
|
|
|
|
(overlay-end ns-working-overlay))
|
|
|
|
(delete-overlay ns-working-overlay)))
|
|
|
|
((integerp ns-working-overlay)
|
|
|
|
(let ((msg (current-message))
|
|
|
|
message-log-max)
|
|
|
|
(setq msg (substring msg 0 (- (length msg) ns-working-overlay)))
|
|
|
|
(message "%s" msg))))
|
|
|
|
(setq ns-working-overlay nil))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
(declare-function ns-convert-utf8-nfd-to-nfc "nsfns.m" (str))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;;;; OS X file system Unicode UTF-8 NFD (decomposed form) support
|
|
|
|
;; Lisp code based on utf-8m.el, by Seiji Zenitani, Eiji Honjoh, and
|
|
|
|
;; Carsten Bormann.
|
2010-10-27 03:48:28 +00:00
|
|
|
(when (eq system-type 'darwin)
|
|
|
|
(defun ns-utf8-nfd-post-read-conversion (length)
|
|
|
|
"Calls `ns-convert-utf8-nfd-to-nfc' to compose char sequences."
|
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region (point) (+ (point) length))
|
|
|
|
(let ((str (buffer-string)))
|
|
|
|
(delete-region (point-min) (point-max))
|
|
|
|
(insert (ns-convert-utf8-nfd-to-nfc str))
|
2010-10-27 06:48:04 +00:00
|
|
|
(- (point-max) (point-min))))))
|
2010-10-27 03:48:28 +00:00
|
|
|
|
|
|
|
(define-coding-system 'utf-8-nfd
|
|
|
|
"UTF-8 NFD (decomposed) encoding."
|
|
|
|
:coding-type 'utf-8
|
|
|
|
:mnemonic ?U
|
|
|
|
:charset-list '(unicode)
|
|
|
|
:post-read-conversion 'ns-utf8-nfd-post-read-conversion)
|
|
|
|
(set-file-name-coding-system 'utf-8-nfd))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
;;;; Inter-app communications support.
|
|
|
|
|
|
|
|
(defun ns-insert-file ()
|
2009-05-03 23:19:35 +00:00
|
|
|
"Insert contents of file `ns-input-file' like insert-file but with less
|
|
|
|
prompting. If file is a directory perform a `find-file' on it."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
2010-10-27 07:39:34 +00:00
|
|
|
(let ((f (pop ns-input-file)))
|
2008-07-15 18:15:18 +00:00
|
|
|
(if (file-directory-p f)
|
|
|
|
(find-file f)
|
2010-10-27 06:48:04 +00:00
|
|
|
(push-mark (+ (point) (cadr (insert-file-contents f)))))))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defvar ns-select-overlay nil
|
2008-07-21 16:23:55 +00:00
|
|
|
"Overlay used to highlight areas in files requested by Nextstep apps.")
|
2008-07-15 18:15:18 +00:00
|
|
|
(make-variable-buffer-local 'ns-select-overlay)
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
(defvar ns-input-line) ; nsterm.m
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-open-file-select-line ()
|
2008-07-18 17:09:23 +00:00
|
|
|
"Open a buffer containing the file `ns-input-file'.
|
|
|
|
Lines are highlighted according to `ns-input-line'."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
|
|
|
(ns-find-file)
|
|
|
|
(cond
|
|
|
|
((and ns-input-line (buffer-modified-p))
|
|
|
|
(if ns-select-overlay
|
|
|
|
(setq ns-select-overlay (delete-overlay ns-select-overlay)))
|
|
|
|
(deactivate-mark)
|
2009-09-01 03:18:44 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(forward-line (1- (if (consp ns-input-line)
|
|
|
|
(min (car ns-input-line) (cdr ns-input-line))
|
|
|
|
ns-input-line))))
|
2008-07-15 18:15:18 +00:00
|
|
|
(ns-input-line
|
|
|
|
(if (not ns-select-overlay)
|
2009-08-21 07:31:10 +00:00
|
|
|
(overlay-put (setq ns-select-overlay (make-overlay (point-min)
|
|
|
|
(point-min)))
|
2008-07-15 18:15:18 +00:00
|
|
|
'face 'highlight))
|
|
|
|
(let ((beg (save-excursion
|
2009-08-21 07:31:10 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(line-beginning-position
|
|
|
|
(if (consp ns-input-line)
|
|
|
|
(min (car ns-input-line) (cdr ns-input-line))
|
|
|
|
ns-input-line))))
|
2008-07-15 18:15:18 +00:00
|
|
|
(end (save-excursion
|
2009-08-21 07:31:10 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(line-beginning-position
|
|
|
|
(1+ (if (consp ns-input-line)
|
|
|
|
(max (car ns-input-line) (cdr ns-input-line))
|
|
|
|
ns-input-line))))))
|
2008-07-15 18:15:18 +00:00
|
|
|
(move-overlay ns-select-overlay beg end)
|
|
|
|
(deactivate-mark)
|
|
|
|
(goto-char beg)))
|
|
|
|
(t
|
|
|
|
(if ns-select-overlay
|
|
|
|
(setq ns-select-overlay (delete-overlay ns-select-overlay))))))
|
|
|
|
|
|
|
|
(defun ns-unselect-line ()
|
2008-07-21 16:23:55 +00:00
|
|
|
"Removes any Nextstep highlight a buffer may contain."
|
2008-07-15 18:15:18 +00:00
|
|
|
(if ns-select-overlay
|
|
|
|
(setq ns-select-overlay (delete-overlay ns-select-overlay))))
|
|
|
|
|
|
|
|
(add-hook 'first-change-hook 'ns-unselect-line)
|
|
|
|
|
|
|
|
;;;; Preferences handling.
|
2008-07-16 02:29:39 +00:00
|
|
|
(declare-function ns-get-resource "nsfns.m" (owner name))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defun get-lisp-resource (arg1 arg2)
|
|
|
|
(let ((res (ns-get-resource arg1 arg2)))
|
|
|
|
(cond
|
|
|
|
((not res) 'unbound)
|
|
|
|
((string-equal (upcase res) "YES") t)
|
|
|
|
((string-equal (upcase res) "NO") nil)
|
|
|
|
(t (read res)))))
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
;; nsterm.m
|
Unify shutdown handling under NS, via ns-power-off key event (where appropriate) and save-buffers-kill-emacs.
remove NS-specific preferences window that used to show NS-specific preferences.
Integrate preferences in Lisp accessible customization system where possible.
Remove ns-expand-space, because it can be set only during fontloading (i.e. not at runtime),
and because of redundancy with line-spacing frame parameter.
Remove loading of most and saving of all NS resources (from org.gnu.Emacs.plist).
nsterm.m (ns_shutdown_properly, -terminate): remove global state variable as it was never reset
(ns_term_init): remove initialization of Lisp-settable defaults and ns_expand_space
(-setPanelFromDefaultValues): remove ns_expand_space.
(-showPreferencesWindow): send new KEY_NS_SHOW_PREFS key.
nsfont.m (nsfont_open): remove ns_expand_space, assume -0.5 i.e. no additional spacing, similar to Carbon port.
nsterm.h: define KEY_NS_SHOW_PREFS key.
nsfns.m (ns-popup-prefs-panel): remove.
term/ns-win.el (ns-expand-space): remove.
(ns-show-prefs event): run `customize'.
(ns-power-off): run `save-buffers-kill-emacs', but ask user whether to save files (as is standard)
(clipboard-yank, clipboard-kill-ring-save, clipboard-kill-region)
(menu-bar-enable-clipboard): do not undefine these.
(ns-save-preferences,ns-save-options,ns-show-preferences-help): remove.
2009-03-14 21:19:56 +00:00
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
(declare-function ns-read-file-name "nsfns.m"
|
2012-10-07 17:47:41 +00:00
|
|
|
(prompt &optional dir mustmatch init dir_only_p))
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;;;; File handling.
|
|
|
|
|
2012-09-30 13:43:47 +00:00
|
|
|
(defun x-file-dialog (prompt dir default_filename mustmatch only_dir_p)
|
|
|
|
"Read file name, prompting with PROMPT in directory DIR.
|
|
|
|
Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
|
|
|
|
selection box, if specified. If MUSTMATCH is non-nil, the returned file
|
|
|
|
or directory must exist.
|
|
|
|
|
|
|
|
This function is only defined on NS, MS Windows, and X Windows with the
|
|
|
|
Motif or Gtk toolkits. With the Motif toolkit, ONLY-DIR-P is ignored.
|
|
|
|
Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories."
|
|
|
|
(ns-read-file-name prompt dir mustmatch default_filename only_dir_p))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-open-file-using-panel ()
|
|
|
|
"Pop up open-file panel, and load the result in a buffer."
|
|
|
|
(interactive)
|
2008-07-16 20:06:14 +00:00
|
|
|
;; Prompt dir defaultName isLoad initial.
|
2008-07-15 18:15:18 +00:00
|
|
|
(setq ns-input-file (ns-read-file-name "Select File to Load" nil t nil))
|
|
|
|
(if ns-input-file
|
|
|
|
(and (setq ns-input-file (list ns-input-file)) (ns-find-file))))
|
|
|
|
|
|
|
|
(defun ns-write-file-using-panel ()
|
|
|
|
"Pop up save-file panel, and save buffer in resulting name."
|
|
|
|
(interactive)
|
|
|
|
(let (ns-output-file)
|
2008-07-16 20:06:14 +00:00
|
|
|
;; Prompt dir defaultName isLoad initial.
|
2008-07-15 18:15:18 +00:00
|
|
|
(setq ns-output-file (ns-read-file-name "Save As" nil nil nil))
|
|
|
|
(message ns-output-file)
|
|
|
|
(if ns-output-file (write-file ns-output-file))))
|
|
|
|
|
2009-04-07 03:19:44 +00:00
|
|
|
(defcustom ns-pop-up-frames 'fresh
|
|
|
|
"Non-nil means open files upon request from the Workspace in a new frame.
|
2008-07-16 02:29:39 +00:00
|
|
|
If t, always do so. Any other non-nil value means open a new frame
|
2009-04-07 03:19:44 +00:00
|
|
|
unless the current buffer is a scratch buffer."
|
|
|
|
:type '(choice (const :tag "Never" nil)
|
|
|
|
(const :tag "Always" t)
|
|
|
|
(other :tag "Except for scratch buffer" fresh))
|
|
|
|
:version "23.1"
|
|
|
|
:group 'ns)
|
2008-07-16 02:29:39 +00:00
|
|
|
|
|
|
|
(declare-function ns-hide-emacs "nsfns.m" (on))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-find-file ()
|
2009-05-03 23:19:35 +00:00
|
|
|
"Do a `find-file' with the `ns-input-file' as argument."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
2011-01-31 23:54:50 +00:00
|
|
|
(let* ((f (file-truename
|
|
|
|
(expand-file-name (pop ns-input-file)
|
|
|
|
command-line-default-directory)))
|
2010-10-27 07:39:34 +00:00
|
|
|
(file (find-file-noselect f))
|
|
|
|
(bufwin1 (get-buffer-window file 'visible))
|
2011-11-23 07:03:56 +00:00
|
|
|
(bufwin2 (get-buffer-window "*scratch*" 'visible)))
|
2008-07-15 18:15:18 +00:00
|
|
|
(cond
|
|
|
|
(bufwin1
|
|
|
|
(select-frame (window-frame bufwin1))
|
|
|
|
(raise-frame (window-frame bufwin1))
|
|
|
|
(select-window bufwin1))
|
|
|
|
((and (eq ns-pop-up-frames 'fresh) bufwin2)
|
|
|
|
(ns-hide-emacs 'activate)
|
|
|
|
(select-frame (window-frame bufwin2))
|
|
|
|
(raise-frame (window-frame bufwin2))
|
|
|
|
(select-window bufwin2)
|
|
|
|
(find-file f))
|
|
|
|
(ns-pop-up-frames
|
|
|
|
(ns-hide-emacs 'activate)
|
|
|
|
(let ((pop-up-frames t)) (pop-to-buffer file nil)))
|
|
|
|
(t
|
|
|
|
(ns-hide-emacs 'activate)
|
|
|
|
(find-file f)))))
|
|
|
|
|
2013-12-19 10:25:48 +00:00
|
|
|
|
|
|
|
(defun ns-drag-n-drop (event &optional new-frame force-text)
|
|
|
|
"Edit the files listed in the drag-n-drop EVENT.
|
|
|
|
Switch to a buffer editing the last file dropped."
|
|
|
|
(interactive "e")
|
|
|
|
(let* ((window (posn-window (event-start event)))
|
|
|
|
(arg (car (cdr (cdr event))))
|
|
|
|
(type (car arg))
|
|
|
|
(data (car (cdr arg)))
|
|
|
|
(url-or-string (cond ((eq type 'file)
|
|
|
|
(concat "file:" data))
|
|
|
|
(t data))))
|
|
|
|
(set-frame-selected-window nil window)
|
|
|
|
(when new-frame
|
|
|
|
(select-frame (make-frame)))
|
|
|
|
(raise-frame)
|
|
|
|
(setq window (selected-window))
|
|
|
|
(if force-text
|
|
|
|
(dnd-insert-text window 'private data)
|
|
|
|
(dnd-handle-one-url window 'private url-or-string))))
|
|
|
|
|
|
|
|
|
|
|
|
(defun ns-drag-n-drop-other-frame (event)
|
|
|
|
"Edit the files listed in the drag-n-drop EVENT, in other frames.
|
|
|
|
May create new frames, or reuse existing ones. The frame editing
|
|
|
|
the last file dropped is selected."
|
|
|
|
(interactive "e")
|
|
|
|
(ns-drag-n-drop event t))
|
|
|
|
|
|
|
|
(defun ns-drag-n-drop-as-text (event)
|
|
|
|
"Drop the data in EVENT as text."
|
|
|
|
(interactive "e")
|
|
|
|
(ns-drag-n-drop event nil t))
|
|
|
|
|
|
|
|
(defun ns-drag-n-drop-as-text-other-frame (event)
|
|
|
|
"Drop the data in EVENT as text in a new frame."
|
|
|
|
(interactive "e")
|
|
|
|
(ns-drag-n-drop event t t))
|
|
|
|
|
|
|
|
(global-set-key [drag-n-drop] 'ns-drag-n-drop)
|
|
|
|
(global-set-key [C-drag-n-drop] 'ns-drag-n-drop-other-frame)
|
|
|
|
(global-set-key [M-drag-n-drop] 'ns-drag-n-drop-as-text)
|
|
|
|
(global-set-key [C-M-drag-n-drop] 'ns-drag-n-drop-as-text-other-frame)
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;;;; Frame-related functions.
|
|
|
|
|
2010-10-27 03:48:28 +00:00
|
|
|
;; nsterm.m
|
|
|
|
(defvar ns-alternate-modifier)
|
|
|
|
(defvar ns-right-alternate-modifier)
|
2010-11-21 13:09:34 +00:00
|
|
|
(defvar ns-right-command-modifier)
|
|
|
|
(defvar ns-right-control-modifier)
|
2010-10-27 03:48:28 +00:00
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;; You say tomAYto, I say tomAHto..
|
|
|
|
(defvaralias 'ns-option-modifier 'ns-alternate-modifier)
|
2010-10-11 19:18:08 +00:00
|
|
|
(defvaralias 'ns-right-option-modifier 'ns-right-alternate-modifier)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(defun ns-do-hide-emacs ()
|
|
|
|
(interactive)
|
|
|
|
(ns-hide-emacs t))
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
(declare-function ns-hide-others "nsfns.m" ())
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-do-hide-others ()
|
|
|
|
(interactive)
|
|
|
|
(ns-hide-others))
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
(declare-function ns-emacs-info-panel "nsfns.m" ())
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-do-emacs-info-panel ()
|
|
|
|
(interactive)
|
|
|
|
(ns-emacs-info-panel))
|
|
|
|
|
|
|
|
(defun ns-next-frame ()
|
|
|
|
"Switch to next visible frame."
|
|
|
|
(interactive)
|
|
|
|
(other-frame 1))
|
2009-05-03 23:19:35 +00:00
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-prev-frame ()
|
|
|
|
"Switch to previous visible frame."
|
|
|
|
(interactive)
|
|
|
|
(other-frame -1))
|
|
|
|
|
2013-09-12 20:21:41 +00:00
|
|
|
;; Frame will be focused anyway, so select it
|
2012-06-02 10:56:09 +00:00
|
|
|
;; (if this is not done, mode line is dimmed until first interaction)
|
2013-09-12 20:21:41 +00:00
|
|
|
;; FIXME: Sounds like we're working around a bug in the underlying code.
|
2008-07-15 18:15:18 +00:00
|
|
|
(add-hook 'after-make-frame-functions 'select-frame)
|
|
|
|
|
2008-08-11 01:23:07 +00:00
|
|
|
(defvar tool-bar-mode)
|
|
|
|
(declare-function tool-bar-mode "tool-bar" (&optional arg))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
;; Based on a function by David Reitter <dreitter@inf.ed.ac.uk> ;
|
|
|
|
;; see http://lists.gnu.org/archive/html/emacs-devel/2005-09/msg00681.html .
|
|
|
|
(defun ns-toggle-toolbar (&optional frame)
|
|
|
|
"Switches the tool bar on and off in frame FRAME.
|
|
|
|
If FRAME is nil, the change applies to the selected frame."
|
|
|
|
(interactive)
|
2008-07-16 20:06:14 +00:00
|
|
|
(modify-frame-parameters
|
|
|
|
frame (list (cons 'tool-bar-lines
|
2008-07-15 18:15:18 +00:00
|
|
|
(if (> (or (frame-parameter frame 'tool-bar-lines) 0) 0)
|
|
|
|
0 1)) ))
|
|
|
|
(if (not tool-bar-mode) (tool-bar-mode t)))
|
|
|
|
|
|
|
|
|
|
|
|
;;;; Dialog-related functions.
|
|
|
|
|
|
|
|
;; Ask user for confirm before printing. Due to Kevin Rodgers.
|
|
|
|
(defun ns-print-buffer ()
|
|
|
|
"Interactive front-end to `print-buffer': asks for user confirmation first."
|
|
|
|
(interactive)
|
2009-10-02 03:48:36 +00:00
|
|
|
(if (and (called-interactively-p 'interactive)
|
2008-07-16 20:06:14 +00:00
|
|
|
(or (listp last-nonmenu-event)
|
|
|
|
(and (char-or-string-p (event-basic-type last-command-event))
|
|
|
|
(memq 'super (event-modifiers last-command-event)))))
|
|
|
|
(let ((last-nonmenu-event (if (listp last-nonmenu-event)
|
|
|
|
last-nonmenu-event
|
|
|
|
;; Fake it:
|
|
|
|
`(mouse-1 POSITION 1))))
|
|
|
|
(if (y-or-n-p (format "Print buffer %s? " (buffer-name)))
|
|
|
|
(print-buffer)
|
2014-01-06 06:25:30 +00:00
|
|
|
(error "Canceled")))
|
2008-07-15 18:15:18 +00:00
|
|
|
(print-buffer)))
|
|
|
|
|
|
|
|
;;;; Font support.
|
|
|
|
|
|
|
|
;; Needed for font listing functions under both backend and normal
|
|
|
|
(setq scalable-fonts-allowed t)
|
|
|
|
|
|
|
|
;; Set to use font panel instead
|
2008-11-15 22:29:59 +00:00
|
|
|
(declare-function ns-popup-font-panel "nsfns.m" (&optional frame))
|
2009-07-13 10:18:03 +00:00
|
|
|
(defalias 'x-select-font 'ns-popup-font-panel "Pop up the font panel.
|
2009-05-03 23:19:35 +00:00
|
|
|
This function has been overloaded in Nextstep.")
|
2009-03-29 00:00:30 +00:00
|
|
|
(defalias 'mouse-set-font 'ns-popup-font-panel "Pop up the font panel.
|
2009-05-03 23:19:35 +00:00
|
|
|
This function has been overloaded in Nextstep.")
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
;; nsterm.m
|
|
|
|
(defvar ns-input-font)
|
|
|
|
(defvar ns-input-fontsize)
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-respond-to-change-font ()
|
2009-05-03 23:19:35 +00:00
|
|
|
"Respond to changeFont: event, expecting `ns-input-font' and\n\
|
|
|
|
`ns-input-fontsize' of new font."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive)
|
|
|
|
(modify-frame-parameters (selected-frame)
|
2012-10-07 17:47:41 +00:00
|
|
|
(list (cons 'fontsize ns-input-fontsize)))
|
|
|
|
(modify-frame-parameters (selected-frame)
|
|
|
|
(list (cons 'font ns-input-font)))
|
2008-07-15 18:15:18 +00:00
|
|
|
(set-frame-font ns-input-font))
|
|
|
|
|
|
|
|
|
|
|
|
;; Default fontset for Mac OS X. This is mainly here to show how a fontset
|
|
|
|
;; can be set up manually. Ordinarily, fontsets are auto-created whenever
|
2009-05-03 23:19:35 +00:00
|
|
|
;; a font is chosen by
|
2008-07-15 18:15:18 +00:00
|
|
|
(defvar ns-standard-fontset-spec
|
2008-07-16 20:06:14 +00:00
|
|
|
;; Only some code supports this so far, so use uglier XLFD version
|
|
|
|
;; "-ns-*-*-*-*-*-10-*-*-*-*-*-fontset-standard,latin:Courier,han:Kai"
|
|
|
|
(mapconcat 'identity
|
|
|
|
'("-ns-*-*-*-*-*-10-*-*-*-*-*-fontset-standard"
|
|
|
|
"latin:-*-Courier-*-*-*-*-10-*-*-*-*-*-iso10646-1"
|
|
|
|
"han:-*-Kai-*-*-*-*-10-*-*-*-*-*-iso10646-1"
|
|
|
|
"cyrillic:-*-Trebuchet$MS-*-*-*-*-10-*-*-*-*-*-iso10646-1")
|
|
|
|
",")
|
|
|
|
"String of fontset spec of the standard fontset.
|
2008-07-15 18:15:18 +00:00
|
|
|
This defines a fontset consisting of the Courier and other fonts that
|
2009-05-03 23:19:35 +00:00
|
|
|
come with OS X.
|
|
|
|
See the documentation of `create-fontset-from-fontset-spec' for the format.")
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2009-09-24 03:22:40 +00:00
|
|
|
(defvar ns-reg-to-script) ; nsfont.m
|
|
|
|
|
2009-09-23 02:35:33 +00:00
|
|
|
;; This maps font registries (not exposed by NS APIs for font selection) to
|
2011-11-20 19:35:27 +00:00
|
|
|
;; Unicode scripts (which can be mapped to Unicode character ranges which are).
|
2009-09-23 02:35:33 +00:00
|
|
|
;; See ../international/fontset.el
|
|
|
|
(setq ns-reg-to-script
|
|
|
|
'(("iso8859-1" . latin)
|
|
|
|
("iso8859-2" . latin)
|
|
|
|
("iso8859-3" . latin)
|
|
|
|
("iso8859-4" . latin)
|
|
|
|
("iso8859-5" . cyrillic)
|
|
|
|
("microsoft-cp1251" . cyrillic)
|
|
|
|
("koi8-r" . cyrillic)
|
|
|
|
("iso8859-6" . arabic)
|
|
|
|
("iso8859-7" . greek)
|
|
|
|
("iso8859-8" . hebrew)
|
|
|
|
("iso8859-9" . latin)
|
|
|
|
("iso8859-10" . latin)
|
|
|
|
("iso8859-11" . thai)
|
|
|
|
("tis620" . thai)
|
|
|
|
("iso8859-13" . latin)
|
|
|
|
("iso8859-14" . latin)
|
|
|
|
("iso8859-15" . latin)
|
|
|
|
("iso8859-16" . latin)
|
|
|
|
("viscii1.1-1" . latin)
|
|
|
|
("jisx0201" . kana)
|
|
|
|
("jisx0208" . han)
|
|
|
|
("jisx0212" . han)
|
|
|
|
("jisx0213" . han)
|
|
|
|
("gb2312.1980" . han)
|
|
|
|
("gb18030" . han)
|
|
|
|
("gbk-0" . han)
|
|
|
|
("big5" . han)
|
|
|
|
("cns11643" . han)
|
|
|
|
("sisheng_cwnn" . bopomofo)
|
|
|
|
("ksc5601.1987" . hangul)
|
|
|
|
("ethiopic-unicode" . ethiopic)
|
|
|
|
("is13194-devanagari" . indian-is13194)
|
|
|
|
("iso10646.indian-1" . devanagari)))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
;;;; Pasteboard support.
|
|
|
|
|
2011-12-18 13:49:38 +00:00
|
|
|
(declare-function ns-get-selection-internal "nsselect.m" (buffer))
|
|
|
|
(declare-function ns-store-selection-internal "nsselect.m" (buffer string))
|
|
|
|
|
|
|
|
(define-obsolete-function-alias 'ns-get-cut-buffer-internal
|
|
|
|
'ns-get-selection-internal "24.1")
|
|
|
|
(define-obsolete-function-alias 'ns-store-cut-buffer-internal
|
|
|
|
'ns-store-selection-internal "24.1")
|
|
|
|
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-get-pasteboard ()
|
|
|
|
"Returns the value of the pasteboard."
|
2011-12-18 13:49:38 +00:00
|
|
|
(ns-get-selection-internal 'CLIPBOARD))
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-set-pasteboard (string)
|
2008-07-21 16:23:55 +00:00
|
|
|
"Store STRING into the pasteboard of the Nextstep display server."
|
2008-07-15 18:15:18 +00:00
|
|
|
;; Check the data type of STRING.
|
|
|
|
(if (not (stringp string)) (error "Nonstring given to pasteboard"))
|
2011-12-18 13:49:38 +00:00
|
|
|
(ns-store-selection-internal 'CLIPBOARD string))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2008-07-16 20:06:14 +00:00
|
|
|
;; We keep track of the last text selected here, so we can check the
|
|
|
|
;; current selection against it, and avoid passing back our own text
|
Removed cut-buffer code.
* lisp/mouse-sel.el (mouse-sel-get-selection-function):
x-cut-buffer-or-selection-value renamed to x-selection-value.
(x-select-text): Optional push removed.
* lisp/select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
* lisp/simple.el (interprogram-cut-function): Remove mention of PUSH.
* lisp/w32-fns.el (x-last-selected-text):
x-cut-buffer-or-selection-value renamed to x-selection-value.
(x-cut-buffer-max): Remove.
(x-select-text): Remove argument PUSH, update documentation.
* lisp/emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
* lisp/term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
x-cut-buffer-or-selection-value renamed to x-selection-value
(x-selection-value): Renamed from x-cut-buffer-or-selection-value.
(x-select-text): Remove argument PUSH, update documentation.
* lisp/term/pc-win.el (x-last-selected-text):
x-cut-buffer-or-selection-value renamed to x-selection-value
(x-select-text): Remove argument PUSH, update documentation.
* lisp/term/x-win.el: Update documentation for x-last-selected-text-*.
(x-last-selected-text-cut, x-last-selected-text-cut-encoded)
(x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
(x-select-text): Remove argument PUSH, update documentation. Remove
cut-buffer code.
(x-selection-value-internal): Was previously x-selection-value.
(x-selection-value): Renamed from x-cut-buffer-or-selection-value.
Update documentation, remove cut-buffer code. Call
x-selection-value-internal.
(x-clipboard-yank): Call x-selection-value-internal.
(x-initialize-window-system): Remove setting of x-cut-buffer-max.
* src/xselect.c: Remove declaration of cut-buffer objects and functions.
(symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
(x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
(Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
(Fx_rotate_cut_buffers_internal): Remove.
(syms_of_xselect): Remove defsubr of above.
Remove intern of QCUT_BUFFERn.
* src/xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
* src/xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
2010-09-02 09:47:08 +00:00
|
|
|
;; from x-selection-value.
|
2008-07-15 18:15:18 +00:00
|
|
|
(defvar ns-last-selected-text nil)
|
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; Return the value of the current Nextstep selection. For
|
|
|
|
;; compatibility with older Nextstep applications, this checks cut
|
|
|
|
;; buffer 0 before retrieving the value of the primary selection.
|
Removed cut-buffer code.
* lisp/mouse-sel.el (mouse-sel-get-selection-function):
x-cut-buffer-or-selection-value renamed to x-selection-value.
(x-select-text): Optional push removed.
* lisp/select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
* lisp/simple.el (interprogram-cut-function): Remove mention of PUSH.
* lisp/w32-fns.el (x-last-selected-text):
x-cut-buffer-or-selection-value renamed to x-selection-value.
(x-cut-buffer-max): Remove.
(x-select-text): Remove argument PUSH, update documentation.
* lisp/emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
* lisp/term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
x-cut-buffer-or-selection-value renamed to x-selection-value
(x-selection-value): Renamed from x-cut-buffer-or-selection-value.
(x-select-text): Remove argument PUSH, update documentation.
* lisp/term/pc-win.el (x-last-selected-text):
x-cut-buffer-or-selection-value renamed to x-selection-value
(x-select-text): Remove argument PUSH, update documentation.
* lisp/term/x-win.el: Update documentation for x-last-selected-text-*.
(x-last-selected-text-cut, x-last-selected-text-cut-encoded)
(x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
(x-select-text): Remove argument PUSH, update documentation. Remove
cut-buffer code.
(x-selection-value-internal): Was previously x-selection-value.
(x-selection-value): Renamed from x-cut-buffer-or-selection-value.
Update documentation, remove cut-buffer code. Call
x-selection-value-internal.
(x-clipboard-yank): Call x-selection-value-internal.
(x-initialize-window-system): Remove setting of x-cut-buffer-max.
* src/xselect.c: Remove declaration of cut-buffer objects and functions.
(symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
(x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
(Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
(Fx_rotate_cut_buffers_internal): Remove.
(syms_of_xselect): Remove defsubr of above.
Remove intern of QCUT_BUFFERn.
* src/xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
* src/xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
2010-09-02 09:47:08 +00:00
|
|
|
(defun x-selection-value ()
|
2008-07-15 18:15:18 +00:00
|
|
|
(let (text)
|
2010-09-02 10:17:02 +00:00
|
|
|
;; Consult the selection. Treat empty strings as if they were unset.
|
2008-07-15 18:15:18 +00:00
|
|
|
(or text (setq text (ns-get-pasteboard)))
|
|
|
|
(if (string= text "") (setq text nil))
|
|
|
|
(cond
|
|
|
|
((not text) nil)
|
|
|
|
((eq text ns-last-selected-text) nil)
|
|
|
|
((string= text ns-last-selected-text)
|
|
|
|
;; Record the newer string, so subsequent calls can use the `eq' test.
|
|
|
|
(setq ns-last-selected-text text)
|
|
|
|
nil)
|
|
|
|
(t
|
|
|
|
(setq ns-last-selected-text text)))))
|
|
|
|
|
|
|
|
(defun ns-copy-including-secondary ()
|
|
|
|
(interactive)
|
|
|
|
(call-interactively 'kill-ring-save)
|
2011-12-18 13:49:38 +00:00
|
|
|
(ns-store-selection-internal 'SECONDARY
|
|
|
|
(buffer-substring (point) (mark t))))
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-paste-secondary ()
|
|
|
|
(interactive)
|
2011-12-18 13:49:38 +00:00
|
|
|
(insert (ns-get-selection-internal 'SECONDARY)))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
;;;; Scrollbar handling.
|
|
|
|
|
|
|
|
(global-set-key [vertical-scroll-bar down-mouse-1] 'ns-handle-scroll-bar-event)
|
|
|
|
(global-unset-key [vertical-scroll-bar mouse-1])
|
|
|
|
(global-unset-key [vertical-scroll-bar drag-mouse-1])
|
|
|
|
|
2008-08-11 01:23:07 +00:00
|
|
|
(declare-function scroll-bar-scale "scroll-bar" (num-denom whole))
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(defun ns-scroll-bar-move (event)
|
2008-08-07 03:10:08 +00:00
|
|
|
"Scroll the frame according to a Nextstep scroller event."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive "e")
|
|
|
|
(let* ((pos (event-end event))
|
|
|
|
(window (nth 0 pos))
|
|
|
|
(scale (nth 2 pos)))
|
* url-util.el (url-insert-entities-in-string):
* url-nfs.el (url-nfs-unescape):
* url-ldap.el (url-ldap):
* url-imap.el (url-imap):
* url-cid.el (url-cid-gnus, url-cid): Use with-current-buffer.
* erc.el (erc-display-line-1, erc-process-away):
* erc-truncate.el (erc-truncate-buffer-to-size):
Use with-current-buffer.
* term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
* play/mpuz.el (mpuz-create-buffer):
* play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
(lm-print-y,s,noise, lm-print-w0, lm-init):
* play/gomoku.el (gomoku-prompt-for-move):
* play/fortune.el (fortune-in-buffer):
* play/dissociate.el (dissociated-press):
* play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
(decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
* mail/supercite.el (sc-eref-show):
* mail/smtpmail.el (smtpmail-send-it):
* mail/rmailsum.el (rmail-summary-next-labeled-message)
(rmail-summary-previous-labeled-message, rmail-summary-wipe)
(rmail-summary-undelete-many, rmail-summary-rmail-update)
(rmail-summary-goto-msg, rmail-summary-expunge)
(rmail-summary-get-new-mail, rmail-summary-search-backward)
(rmail-summary-add-label, rmail-summary-output-menu)
(rmail-summary-output-body):
* mail/rfc822.el (rfc822-addresses):
* mail/reporter.el (reporter-dump-variable, reporter-dump-state):
* mail/mailpost.el (post-mail-send-it):
* mail/hashcash.el (hashcash-generate-payment):
* mail/feedmail.el (feedmail-run-the-queue)
(feedmail-queue-send-edit-prompt-help-first)
(feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
(feedmail-deduce-address-list):
* eshell/esh-ext.el (eshell-remote-command):
* eshell/em-unix.el (eshell-occur-mode-mouse-goto):
* emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
(viper-wildcard-to-regexp, viper-glob-mswindows-files)
(viper-save-string-in-file, viper-valid-marker):
* emulation/viper-keym.el (viper-toggle-key):
* emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
(ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
(ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
* emulation/viper-cmd.el (viper-exec-form-in-vi)
(viper-exec-form-in-emacs, viper-brac-function):
* emulation/viper.el (viper-delocalize-var):
* emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
(vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
(vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
(ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
* emulation/vi.el (vi-switch-mode, vi-ex-cmd):
* emulation/edt.el (edt-electric-helpify):
* emulation/cua-rect.el (cua--rectangle-aux-replace):
* emulation/cua-gmrk.el (cua--insert-at-global-mark)
(cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
(cua-indent-to-global-mark-column):
* calendar/diary-lib.el (calendar-mark-1):
* calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
Use with-current-buffer.
* emulation/viper.el (viper-delocalize-var): Use dolist.
2009-11-03 02:04:29 +00:00
|
|
|
(with-current-buffer (window-buffer window)
|
2008-07-15 18:15:18 +00:00
|
|
|
(cond
|
|
|
|
((eq (car scale) (cdr scale))
|
|
|
|
(goto-char (point-max)))
|
|
|
|
((= (car scale) 0)
|
|
|
|
(goto-char (point-min)))
|
|
|
|
(t
|
|
|
|
(goto-char (+ (point-min) 1
|
|
|
|
(scroll-bar-scale scale (- (point-max) (point-min)))))))
|
|
|
|
(beginning-of-line)
|
|
|
|
(set-window-start window (point))
|
|
|
|
(vertical-motion (/ (window-height window) 2) window))))
|
|
|
|
|
|
|
|
(defun ns-handle-scroll-bar-event (event)
|
2008-08-07 03:10:08 +00:00
|
|
|
"Handle scroll bar EVENT to emulate Nextstep style scrolling."
|
2008-07-15 18:15:18 +00:00
|
|
|
(interactive "e")
|
|
|
|
(let* ((position (event-start event))
|
|
|
|
(bar-part (nth 4 position))
|
|
|
|
(window (nth 0 position))
|
|
|
|
(old-window (selected-window)))
|
|
|
|
(cond
|
|
|
|
((eq bar-part 'ratio)
|
|
|
|
(ns-scroll-bar-move event))
|
|
|
|
((eq bar-part 'handle)
|
|
|
|
(if (eq window (selected-window))
|
|
|
|
(track-mouse (ns-scroll-bar-move event))
|
2008-07-16 20:06:14 +00:00
|
|
|
;; track-mouse faster for selected window, slower for unselected.
|
2008-07-15 18:15:18 +00:00
|
|
|
(ns-scroll-bar-move event)))
|
|
|
|
(t
|
|
|
|
(select-window window)
|
|
|
|
(cond
|
|
|
|
((eq bar-part 'up)
|
|
|
|
(goto-char (window-start window))
|
|
|
|
(scroll-down 1))
|
|
|
|
((eq bar-part 'above-handle)
|
|
|
|
(scroll-down))
|
|
|
|
((eq bar-part 'below-handle)
|
|
|
|
(scroll-up))
|
|
|
|
((eq bar-part 'down)
|
|
|
|
(goto-char (window-start window))
|
|
|
|
(scroll-up 1)))
|
|
|
|
(select-window old-window)))))
|
|
|
|
|
|
|
|
|
|
|
|
;;;; Color support.
|
|
|
|
|
|
|
|
;; Functions for color panel + drag
|
|
|
|
(defun ns-face-at-pos (pos)
|
|
|
|
(let* ((frame (car pos))
|
|
|
|
(frame-pos (cons (cadr pos) (cddr pos)))
|
|
|
|
(window (window-at (car frame-pos) (cdr frame-pos) frame))
|
|
|
|
(window-pos (coordinates-in-window-p frame-pos window))
|
|
|
|
(buffer (window-buffer window))
|
|
|
|
(edges (window-edges window)))
|
|
|
|
(cond
|
|
|
|
((not window-pos)
|
|
|
|
nil)
|
|
|
|
((eq window-pos 'mode-line)
|
2012-06-02 10:56:09 +00:00
|
|
|
'mode-line)
|
2008-07-15 18:15:18 +00:00
|
|
|
((eq window-pos 'vertical-line)
|
|
|
|
'default)
|
|
|
|
((consp window-pos)
|
* url-util.el (url-insert-entities-in-string):
* url-nfs.el (url-nfs-unescape):
* url-ldap.el (url-ldap):
* url-imap.el (url-imap):
* url-cid.el (url-cid-gnus, url-cid): Use with-current-buffer.
* erc.el (erc-display-line-1, erc-process-away):
* erc-truncate.el (erc-truncate-buffer-to-size):
Use with-current-buffer.
* term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
* play/mpuz.el (mpuz-create-buffer):
* play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
(lm-print-y,s,noise, lm-print-w0, lm-init):
* play/gomoku.el (gomoku-prompt-for-move):
* play/fortune.el (fortune-in-buffer):
* play/dissociate.el (dissociated-press):
* play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
(decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
* mail/supercite.el (sc-eref-show):
* mail/smtpmail.el (smtpmail-send-it):
* mail/rmailsum.el (rmail-summary-next-labeled-message)
(rmail-summary-previous-labeled-message, rmail-summary-wipe)
(rmail-summary-undelete-many, rmail-summary-rmail-update)
(rmail-summary-goto-msg, rmail-summary-expunge)
(rmail-summary-get-new-mail, rmail-summary-search-backward)
(rmail-summary-add-label, rmail-summary-output-menu)
(rmail-summary-output-body):
* mail/rfc822.el (rfc822-addresses):
* mail/reporter.el (reporter-dump-variable, reporter-dump-state):
* mail/mailpost.el (post-mail-send-it):
* mail/hashcash.el (hashcash-generate-payment):
* mail/feedmail.el (feedmail-run-the-queue)
(feedmail-queue-send-edit-prompt-help-first)
(feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
(feedmail-deduce-address-list):
* eshell/esh-ext.el (eshell-remote-command):
* eshell/em-unix.el (eshell-occur-mode-mouse-goto):
* emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
(viper-wildcard-to-regexp, viper-glob-mswindows-files)
(viper-save-string-in-file, viper-valid-marker):
* emulation/viper-keym.el (viper-toggle-key):
* emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
(ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
(ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
* emulation/viper-cmd.el (viper-exec-form-in-vi)
(viper-exec-form-in-emacs, viper-brac-function):
* emulation/viper.el (viper-delocalize-var):
* emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
(vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
(vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
(ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
* emulation/vi.el (vi-switch-mode, vi-ex-cmd):
* emulation/edt.el (edt-electric-helpify):
* emulation/cua-rect.el (cua--rectangle-aux-replace):
* emulation/cua-gmrk.el (cua--insert-at-global-mark)
(cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
(cua-indent-to-global-mark-column):
* calendar/diary-lib.el (calendar-mark-1):
* calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
Use with-current-buffer.
* emulation/viper.el (viper-delocalize-var): Use dolist.
2009-11-03 02:04:29 +00:00
|
|
|
(with-current-buffer buffer
|
2008-07-15 18:15:18 +00:00
|
|
|
(let ((p (car (compute-motion (window-start window)
|
|
|
|
(cons (nth 0 edges) (nth 1 edges))
|
|
|
|
(window-end window)
|
|
|
|
frame-pos
|
|
|
|
(- (window-width window) 1)
|
|
|
|
nil
|
|
|
|
window))))
|
|
|
|
(cond
|
|
|
|
((eq p (window-point window))
|
|
|
|
'cursor)
|
|
|
|
((and mark-active (< (region-beginning) p) (< p (region-end)))
|
|
|
|
'region)
|
|
|
|
(t
|
|
|
|
(let ((faces (get-char-property p 'face window)))
|
|
|
|
(if (consp faces) (car faces) faces)))))))
|
|
|
|
(t
|
|
|
|
nil))))
|
|
|
|
|
2014-02-02 14:10:50 +00:00
|
|
|
(defun ns-suspend-error ()
|
|
|
|
;; Don't allow suspending if any of the frames are NS frames.
|
|
|
|
(if (memq 'ns (mapcar 'window-system (frame-list)))
|
|
|
|
(error "Cannot suspend Emacs while running under NS")))
|
|
|
|
|
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; Set some options to be as Nextstep-like as possible.
|
2008-07-15 18:15:18 +00:00
|
|
|
(setq frame-title-format t
|
|
|
|
icon-title-format t)
|
|
|
|
|
|
|
|
|
|
|
|
(defvar ns-initialized nil
|
2008-07-21 16:23:55 +00:00
|
|
|
"Non-nil if Nextstep windowing has been initialized.")
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2013-09-18 04:36:34 +00:00
|
|
|
(declare-function x-handle-args "common-win" (args))
|
2008-07-16 02:29:39 +00:00
|
|
|
(declare-function ns-list-services "nsfns.m" ())
|
2009-01-22 12:31:36 +00:00
|
|
|
(declare-function x-open-connection "nsfns.m"
|
2008-08-11 01:23:07 +00:00
|
|
|
(display &optional xrm-string must-succeed))
|
2011-06-30 02:54:16 +00:00
|
|
|
(declare-function ns-set-resource "nsfns.m" (owner name value))
|
2008-07-16 02:29:39 +00:00
|
|
|
|
2008-07-21 16:23:55 +00:00
|
|
|
;; Do the actual Nextstep Windows setup here; the above code just
|
|
|
|
;; defines functions and variables that we use now.
|
2013-04-16 02:41:37 +00:00
|
|
|
(defun ns-initialize-window-system (&optional _display)
|
2008-07-21 16:23:55 +00:00
|
|
|
"Initialize Emacs for Nextstep (Cocoa / GNUstep) windowing."
|
2012-09-17 11:55:05 +00:00
|
|
|
(cl-assert (not ns-initialized))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2008-07-16 20:06:14 +00:00
|
|
|
;; PENDING: not needed?
|
2010-10-26 03:58:19 +00:00
|
|
|
(setq command-line-args (x-handle-args command-line-args))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2012-11-24 17:55:48 +00:00
|
|
|
;; Setup the default fontset.
|
|
|
|
(create-default-fontset)
|
|
|
|
;; Create the standard fontset.
|
|
|
|
(condition-case err
|
|
|
|
(create-fontset-from-fontset-spec ns-standard-fontset-spec t)
|
|
|
|
(error (display-warning
|
|
|
|
'initialization
|
|
|
|
(format "Creation of the standard fontset failed: %s" err)
|
|
|
|
:error)))
|
|
|
|
|
2008-07-21 17:48:37 +00:00
|
|
|
(x-open-connection (system-name) nil t)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
2014-01-20 19:44:56 +00:00
|
|
|
;; Add GNUstep menu items Services, Hide and Quit. Rename Help to Info
|
2013-10-20 09:26:15 +00:00
|
|
|
;; and put it first (i.e. omit from menu-bar-final-items.
|
2013-10-20 08:50:34 +00:00
|
|
|
(if (featurep 'gnustep)
|
|
|
|
(progn
|
|
|
|
(setq menu-bar-final-items '(buffer services hide-app quit))
|
2013-10-20 09:26:15 +00:00
|
|
|
|
|
|
|
;; If running under GNUstep, "Help" is moved and renamed "Info".
|
|
|
|
(bindings--define-key global-map [menu-bar help-menu]
|
|
|
|
(cons "Info" menu-bar-help-menu))
|
2013-10-20 08:50:34 +00:00
|
|
|
(bindings--define-key global-map [menu-bar quit]
|
|
|
|
'(menu-item "Quit" save-buffers-kill-emacs
|
|
|
|
:help "Save unsaved buffers, then exit"))
|
|
|
|
(bindings--define-key global-map [menu-bar hide-app]
|
|
|
|
'(menu-item "Hide" ns-do-hide-emacs
|
|
|
|
:help "Hide Emacs"))
|
|
|
|
(bindings--define-key global-map [menu-bar services]
|
|
|
|
(cons "Services" (make-sparse-keymap "Services")))))
|
|
|
|
|
|
|
|
|
2008-07-16 20:06:14 +00:00
|
|
|
(dolist (service (ns-list-services))
|
|
|
|
(if (eq (car service) 'undefined)
|
|
|
|
(ns-define-service (cdr service))
|
|
|
|
(define-key global-map (vector (car service))
|
|
|
|
(ns-define-service (cdr service)))))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
|
|
(if (and (eq (get-lisp-resource nil "NXAutoLaunch") t)
|
|
|
|
(eq (get-lisp-resource nil "HideOnAutoLaunch") t))
|
|
|
|
(add-hook 'after-init-hook 'ns-do-hide-emacs))
|
|
|
|
|
2008-07-16 20:06:14 +00:00
|
|
|
;; FIXME: This will surely lead to "MODIFIED OUTSIDE CUSTOM" warnings.
|
2008-07-15 18:15:18 +00:00
|
|
|
(menu-bar-mode (if (get-lisp-resource nil "Menus") 1 -1))
|
|
|
|
|
2013-10-01 18:22:48 +00:00
|
|
|
;; For Darwin nothing except UTF-8 makes sense.
|
|
|
|
(when (eq system-type 'darwin)
|
|
|
|
(add-hook 'before-init-hook
|
|
|
|
#'(lambda ()
|
|
|
|
(setq locale-coding-system 'utf-8-unix)
|
|
|
|
(setq default-process-coding-system
|
|
|
|
'(utf-8-unix . utf-8-unix)))))
|
2013-09-29 17:09:39 +00:00
|
|
|
|
2011-06-30 02:54:16 +00:00
|
|
|
;; OS X Lion introduces PressAndHold, which is unsupported by this port.
|
2011-06-21 18:45:36 +00:00
|
|
|
;; See this thread for more details:
|
|
|
|
;; http://lists.gnu.org/archive/html/emacs-devel/2011-06/msg00505.html
|
|
|
|
(ns-set-resource nil "ApplePressAndHoldEnabled" "NO")
|
|
|
|
|
2012-04-27 05:40:46 +00:00
|
|
|
(x-apply-session-resources)
|
2014-02-02 14:10:50 +00:00
|
|
|
|
|
|
|
;; Don't let Emacs suspend under NS.
|
|
|
|
(add-hook 'suspend-hook 'ns-suspend-error)
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
(setq ns-initialized t))
|
|
|
|
|
2013-07-02 18:16:09 +00:00
|
|
|
;; Any display name is OK.
|
|
|
|
(add-to-list 'display-format-alist '(".*" . ns))
|
2010-10-26 03:58:19 +00:00
|
|
|
(add-to-list 'handle-args-function-alist '(ns . x-handle-args))
|
2008-07-15 18:15:18 +00:00
|
|
|
(add-to-list 'frame-creation-function-alist '(ns . x-create-frame-with-faces))
|
|
|
|
(add-to-list 'window-system-initialization-alist '(ns . ns-initialize-window-system))
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'ns-win)
|
|
|
|
|
|
|
|
;;; ns-win.el ends here
|