1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

Added cua-mode based files [split from original cua.el]:

cua-base.el, cua-rect.el, cua-gmrk.el, and keypad.el
This commit is contained in:
Kim F. Storm 2002-04-28 21:48:39 +00:00
parent b098e75323
commit 72cc582e69
4 changed files with 3078 additions and 0 deletions

1133
lisp/emulation/cua-base.el Normal file

File diff suppressed because it is too large Load Diff

385
lisp/emulation/cua-gmrk.el Normal file
View File

@ -0,0 +1,385 @@
;;; cua-gmrk.el --- CUA unified global mark support
;; Copyright (C) 1997-2002 Free Software Foundation, Inc.
;; Author: Kim F. Storm <storm@cua.dk>
;; Keywords: keyboard emulations convenience cua mark
;; 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 2, 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; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
(provide 'cua-gmrk)
(eval-when-compile
(require 'cua-base)
(require 'cua-rect)
)
;;; Global Marker
;; Non-nil when global marker is active.
(defvar cua--global-mark-active nil)
;; Global mark position marker.
(defvar cua--global-mark-marker nil)
;; Overlay for global mark position.
(defvar cua--global-mark-overlay nil)
;; Initialize global mark things once...
(defvar cua--global-mark-initialized nil)
;; Saved configured blink-cursor-interval
(defvar cua--orig-blink-cursor-interval nil)
(defun cua--deactivate-global-mark (&optional msg)
(when cua--global-mark-overlay
(delete-overlay cua--global-mark-overlay)
(setq cua--global-mark-overlay nil))
(if (markerp cua--global-mark-marker)
(move-marker cua--global-mark-marker nil))
(if cua--orig-blink-cursor-interval
(setq blink-cursor-interval cua--orig-blink-cursor-interval
cua--orig-blink-cursor-interval nil))
(setq cua--global-mark-active nil)
(if msg
(message "Global Mark Cleared")))
(defun cua--activate-global-mark (&optional msg)
(if (not (markerp cua--global-mark-marker))
(setq cua--global-mark-marker (make-marker)))
(when (eobp)
(insert " ")
(backward-char 1))
(move-marker cua--global-mark-marker (point))
(if (overlayp cua--global-mark-overlay)
(move-overlay cua--global-mark-overlay (point) (1+ (point)))
(setq cua--global-mark-overlay
(make-overlay (point) (1+ (point))))
(overlay-put cua--global-mark-overlay 'face 'cua-global-mark-face))
(if (and cua-global-mark-blink-cursor-interval
(not cua--orig-blink-cursor-interval))
(setq cua--orig-blink-cursor-interval blink-cursor-interval
blink-cursor-interval cua-global-mark-blink-cursor-interval))
(setq cua--global-mark-active t)
(if msg
(message "Global Mark Set")))
(defun cua--global-mark-active ()
(if cua--global-mark-active
(or (and (markerp cua--global-mark-marker)
(marker-buffer cua--global-mark-marker))
(and (cua--deactivate-global-mark nil)
nil))))
(defun cua-toggle-global-mark (stay)
"Set or cancel the global marker.
When the global marker is set, CUA cut and copy commands will automatically
insert the deleted or copied text before the global marker, even when the
global marker is in another buffer.
If the global marker isn't set, set the global marker at point in the current
buffer. Otherwise jump to the global marker position and cancel it.
With prefix argument, don't jump to global mark when cancelling it."
(interactive "P")
(unless cua--global-mark-initialized
(cua--init-global-mark))
(if (not (cua--global-mark-active))
(if (not buffer-read-only)
(cua--activate-global-mark t)
(ding)
(message "Cannot set global mark in read-only buffer."))
(when (not stay)
(pop-to-buffer (marker-buffer cua--global-mark-marker))
(goto-char cua--global-mark-marker))
(cua--deactivate-global-mark t)))
(defun cua--insert-at-global-mark (str &optional msg)
;; Insert string at global marker and move marker
(save-excursion
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(insert-for-yank str)
(cua--activate-global-mark))
(if msg
(message "%s %d to global mark in %s:%d" msg
(length str)
(buffer-name (marker-buffer cua--global-mark-marker))
(marker-position cua--global-mark-marker))))
(defun cua--delete-at-global-mark (arg &optional msg)
;; Delete chars at global marker
(save-excursion
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(delete-char arg))
(if msg
(message "%s %d chars at global mark in %s:%d" msg arg
(buffer-name (marker-buffer cua--global-mark-marker))
(marker-position cua--global-mark-marker))))
(defun cua-copy-region-to-global-mark (start end)
"Copy region to global mark buffer/position."
(interactive "r")
(if (cua--global-mark-active)
(let ((src-buf (current-buffer)))
(save-excursion
(if (equal (marker-buffer cua--global-mark-marker) src-buf)
(let ((text (buffer-substring-no-properties start end)))
(goto-char (marker-position cua--global-mark-marker))
(insert text))
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(insert-buffer-substring-as-yank src-buf start end))
(cua--activate-global-mark)
(message "Copied %d to global mark in %s:%d"
(abs (- end start))
(buffer-name (marker-buffer cua--global-mark-marker))
(marker-position cua--global-mark-marker))))
(cua--deactivate-global-mark)
(message "No Global Mark")))
(defun cua-cut-region-to-global-mark (start end)
"Move region to global buffer/position."
(interactive "r")
(if (cua--global-mark-active)
(let ((src-buf (current-buffer)))
(save-excursion
(if (equal (marker-buffer cua--global-mark-marker) src-buf)
(if (and (< start (marker-position cua--global-mark-marker))
(< (marker-position cua--global-mark-marker) end))
(message "Can't move region into itself.")
(let ((text (buffer-substring-no-properties start end))
(p1 (copy-marker start))
(p2 (copy-marker end)))
(goto-char (marker-position cua--global-mark-marker))
(insert text)
(cua--activate-global-mark)
(delete-region (marker-position p1) (marker-position p2))
(move-marker p1 nil)
(move-marker p2 nil)))
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(insert-buffer-substring src-buf start end)
(message "Moved %d to global mark in %s:%d"
(abs (- end start))
(buffer-name (marker-buffer cua--global-mark-marker))
(marker-position cua--global-mark-marker))
(cua--activate-global-mark)
(set-buffer src-buf)
(delete-region start end))))
(cua--deactivate-global-mark)
(message "No Global Mark")))
(defun cua--copy-rectangle-to-global-mark (as-text)
;; Copy rectangle to global mark buffer/position.
(if (cua--global-mark-active)
(let ((src-buf (current-buffer))
(text (cua--extract-rectangle)))
(save-excursion
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(if as-text
(while text
(insert-for-yank (car text))
(if (setq text (cdr text))
(insert "\n")))
(cua--insert-rectangle text 'auto))
(cua--activate-global-mark)
(message "Copied rectangle to global mark in %s:%d"
(buffer-name (marker-buffer cua--global-mark-marker))
(marker-position cua--global-mark-marker))))
(cua--deactivate-global-mark)
(message "No Global Mark")))
(defun cua--cut-rectangle-to-global-mark (as-text)
;; Move rectangle to global buffer/position.
(if (cua--global-mark-active)
(let ((src-buf (current-buffer)))
(save-excursion
(if (equal (marker-buffer cua--global-mark-marker) src-buf)
(let ((olist (overlays-at (marker-position cua--global-mark-marker)))
in-rect)
(while olist
(if (eq (overlay-get (car olist) 'face) 'cua-rectangle-face)
(setq in-rect t olist nil)
(setq olist (cdr olist))))
(if in-rect
(message "Can't move rectangle into itself.")
(let ((text (cua--extract-rectangle)))
(cua--delete-rectangle)
(goto-char (marker-position cua--global-mark-marker))
(if as-text
(while text
(insert-for-yank (car text))
(if (setq text (cdr text))
(insert "\n")))
(cua--insert-rectangle text 'auto))
(cua--activate-global-mark))))
(let ((text (cua--extract-rectangle)))
(cua--delete-rectangle)
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(cua--insert-rectangle text 'auto))
(message "Moved rectangle to global mark in %s:%d"
(buffer-name (marker-buffer cua--global-mark-marker))
(marker-position cua--global-mark-marker))
(cua--activate-global-mark))))
(cua--deactivate-global-mark)
(message "No Global Mark")))
(defun cua-copy-to-global-mark ()
"Copy active region/rectangle to global mark buffer/position."
(interactive)
(setq cua--last-killed-rectangle nil)
(if cua--rectangle
(cua--copy-rectangle-to-global-mark nil)
(let ((start (mark)) (end (point)))
(or (<= start end)
(setq start (prog1 end (setq end start))))
(cua-copy-region-to-global-mark start end))))
(defun cua-copy-next-to-global-mark (n)
"Copy the following N characters in buffer to global mark buffer/position."
(interactive "p")
(setq cua--last-killed-rectangle nil)
(or (eobp)
(let ((p (point)))
(goto-char (+ p n))
(cua-copy-region-to-global-mark p (point)))))
(defun cua-cut-to-global-mark ()
"Move active region/rectangle to global mark buffer/position."
(interactive)
(if buffer-read-only
(cua-copy-to-global-mark)
(setq cua--last-killed-rectangle nil)
(if cua--rectangle
(cua--cut-rectangle-to-global-mark nil)
(let ((start (mark)) (end (point)))
(or (<= start end)
(setq start (prog1 end (setq end start))))
(cua-cut-region-to-global-mark start end)))))
(defun cua-cut-next-to-global-mark (n)
"Move the following N characters in buffer to global mark buffer/position."
(interactive "p")
(setq cua--last-killed-rectangle nil)
(or (eobp)
(let ((p (point)))
(goto-char (+ p n))
(cua-cut-region-to-global-mark p (point)))))
(defun cua-delete-char-at-global-mark (arg)
"Delete character following the global mark position."
(interactive "p")
(cua--delete-at-global-mark arg "Deleted"))
(defun cua-delete-backward-char-at-global-mark (arg)
"Delete character before the global mark position."
(interactive "p")
(cua--delete-at-global-mark (- arg) "Deleted backward"))
(defun cua-insert-char-at-global-mark ()
"Insert the character you type at the global mark position."
(interactive)
(cua--insert-at-global-mark (char-to-string (aref (this-single-command-keys) 0)) "Inserted"))
(defun cua-insert-newline-at-global-mark ()
"Insert a newline at the global mark position."
(interactive)
(cua--insert-at-global-mark "\n"))
(defun cua-indent-to-global-mark-column ()
"Indent current line or rectangle to global mark column."
(interactive "*")
(if (cua--global-mark-active)
(let (col)
(save-excursion
(set-buffer (marker-buffer cua--global-mark-marker))
(goto-char (marker-position cua--global-mark-marker))
(setq col (current-column)))
(if cua--rectangle
(cua--indent-rectangle nil col t)
(indent-to col))
(if (eq (current-buffer) (marker-buffer cua--global-mark-marker))
(save-excursion
(goto-char (marker-position cua--global-mark-marker))
(move-to-column col)
(move-marker cua--global-mark-marker (point))
(move-overlay cua--global-mark-overlay (point) (1+ (point))))))))
(defun cua-cancel-global-mark ()
"Cancel the global mark."
(interactive)
(if mark-active
(cua-cancel)
(if (cua--global-mark-active)
(cua--deactivate-global-mark t)))
(cua--fallback))
;;; Post-command hook for global mark.
(defun cua--global-mark-post-command ()
(when (and (cua--global-mark-active) ;; Updates cua--global-mark-active variable
cua-global-mark-keep-visible)
;; keep global mark position visible
(sit-for 0)
(if (or (not (eq (current-buffer) (marker-buffer cua--global-mark-marker)))
(not (pos-visible-in-window-p (marker-position cua--global-mark-marker))))
(let ((w (selected-window)) (p (point)) h)
;; The following code is an attempt to keep the global mark visible in
;; other window -- but it doesn't work.
(switch-to-buffer-other-window (marker-buffer cua--global-mark-marker) t)
(goto-char (marker-position cua--global-mark-marker))
(if (not (pos-visible-in-window-p (marker-position cua--global-mark-marker)))
(recenter (if (> (setq h (- (window-height) 4)) 1) h '(4))))
(select-window w)
(goto-char p)))))
;;; Initialization
(defun cua--init-global-mark ()
(unless (face-background 'cua-global-mark-face)
(copy-face 'region 'cua-global-mark-face)
(set-face-foreground 'cua-global-mark-face "black")
(set-face-background 'cua-global-mark-face "cyan"))
(define-key cua--global-mark-keymap [remap copy-region-as-kill] 'cua-copy-to-global-mark)
(define-key cua--global-mark-keymap [remap kill-ring-save] 'cua-copy-to-global-mark)
(define-key cua--global-mark-keymap [remap kill-region] 'cua-cut-to-global-mark)
(define-key cua--global-mark-keymap [remap yank] 'cua-copy-next-to-global-mark)
(define-key cua--global-mark-keymap [remap keyboard-escape-quit] 'cua-cancel-global-mark)
(define-key cua--global-mark-keymap [remap keyboard-quit] 'cua-cancel-global-mark)
(define-key cua--global-mark-keymap [(control ?d)] 'cua-cut-next-to-global-mark)
(define-key cua--global-mark-keymap [remap delete-backward-char] 'cua-delete-backward-char-at-global-mark)
(define-key cua--global-mark-keymap [remap backward-delete-char] 'cua-delete-backward-char-at-global-mark)
(define-key cua--global-mark-keymap [remap backward-delete-char-untabify] 'cua-delete-backward-char-at-global-mark)
(define-key cua--global-mark-keymap [remap self-insert-command] 'cua-insert-char-at-global-mark)
(define-key cua--global-mark-keymap [remap self-insert-iso] 'cua-insert-char-at-global-mark)
(define-key cua--global-mark-keymap [remap newline] 'cua-insert-newline-at-global-mark)
(define-key cua--global-mark-keymap [remap newline-and-indent] 'cua-insert-newline-at-global-mark)
(define-key cua--global-mark-keymap "\r" 'cua-insert-newline-at-global-mark)
(define-key cua--global-mark-keymap "\t" 'cua-indent-to-global-mark-column)
(setq cua--global-mark-initialized t))
;;; cua-gmrk.el ends here

1375
lisp/emulation/cua-rect.el Normal file

File diff suppressed because it is too large Load Diff

185
lisp/emulation/keypad.el Normal file
View File

@ -0,0 +1,185 @@
;;; keypad.el --- simplified keypad bindings
;; Copyright (C) 2002 Free Software Foundation, Inc.
;; Author: Kim F. Storm <storm@cua.dk>
;; Keywords: keyboard convenience
;; 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 2, 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; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;; The keypad package allows easy binding of the keypad keys to
;; various commonly used sets of commands.
;;
;; With the following setup, the keypad can be used for numeric data
;; entry, or to give numeric prefix arguments to emacs commands.
;;
;; (keypad-setup 'numeric)
;; (keypad-setup 'prefix t)
;;
;; +--------+--------+--------+
;; | M-7 | M-8 | M-9 |
;; | 7 | 8 | 9 |
;; +--------+--------+--------+
;; | M-4 | M-5 | M-6 |
;; | 4 | 5 | 6 |
;; +--------+--------+--------+
;; | M-1 | M-2 | M-3 |
;; | 1 | 2 | 3 |
;; +--------+--------+--------+
;; | M-0 | M-- |
;; | 0 | . |
;; +-----------------+--------+
;; The following keypad setup is used for navigation:
;;
;; (keypad-setup 'cursor)
;; (keypad-setup 'S-cursor t)
;;
;; +--------+--------+--------+
;; | S-home | S-up | S-PgUp |
;; | Home | up | PgUp |
;; +--------+--------+--------+
;; | S-left |S-space |S-right |
;; | left | space | right |
;; +--------+--------+--------+
;; | S-end | S-down | S-PgDn |
;; | end | down | PgDn |
;; +--------+--------+--------+
;; | S-insert |S-delete|
;; | insert | delete |
;; +-----------------+--------+
;;; Code:
(provide 'keypad)
;;; Customization
;;;###autoload
(defcustom keypad-setup nil
"Specifies the keypad setup for unshifted keypad keys.
The options are:
'prefix Numeric prefix argument, i.e. M-0 .. M-9 and M--
'cursor Cursor movement keys.
'S-cursor Shifted cursor movement keys.
'numeric Plain numeric, i.e. 0 .. 9 and . (or DECIMAL arg)
'none Removes all bindings for keypad keys in function-key-map.
nil Keep existing bindings for the keypad keys."
:set (lambda (symbol value)
(if value
(keypad-setup value nil keypad-decimal-key)))
:initialize 'custom-initialize-default
:set-after '(keypad-decimal-key)
:require 'keypad
:link '(emacs-commentary-link "keypad.el")
:version "21.4"
:type '(choice (const :tag "Numeric prefix arguments" prefix)
(const :tag "Cursor keys" cursor)
(const :tag "Shifted cursor keys" S-cursor)
(const :tag "Plain Numeric Keypad" numeric)
(const :tag "Remove bindings" none)
(other :tag "Keep existing bindings" :value nil))
:group 'keyboard)
(defcustom keypad-decimal-key ?.
"Character produced by the unshifted decimal key on the keypad."
:type 'character
:group 'keyboard)
;;;###autoload
(defcustom keypad-shifted-setup nil
"Specifies the keypad setup for shifted keypad keys.
See `keypad-setup' for available options."
:set (lambda (symbol value)
(if value
(keypad-setup value t keypad-shifted-decimal-key)))
:initialize 'custom-initialize-default
:set-after '(keypad-shifted-decimal-key)
:require 'keypad
:link '(emacs-commentary-link "keypad.el")
:version "21.4"
:type '(choice (const :tag "Numeric prefix arguments" prefix)
(const :tag "Cursor keys" cursor)
(const :tag "Shifted cursor keys" S-cursor)
(const :tag "Plain Numeric Keypad" numeric)
(const :tag "Remove bindings" none)
(other :tag "Keep existing bindings" :value nil))
:group 'keyboard)
(defcustom keypad-shifted-decimal-key ?.
"Character produced by the unshifted decimal key on the keypad."
:type 'character
:group 'keyboard)
;;;###autoload
(defun keypad-setup (setup &optional numlock decimal)
"Set keypad bindings in function-key-map according to SETUP.
If optional second argument NUMLOCK is non-nil, the NumLock On bindings
are changed. Otherwise, the NumLock Off bindings are changed.
Setup Binding
-------------------------------------------------------------
'prefix Command prefix argument, i.e. M-0 .. M-9 and M--
'S-cursor Bind shifted keypad keys to the shifted cursor movement keys.
'cursor Bind keypad keys to the cursor movement keys.
'numeric Plain numeric, i.e. 0 .. 9 and . (or DECIMAL arg)
'none Removes all bindings for keypad keys in function-key-map.
If SETUP is 'numeric and the optional third argument DECIMAL is non-nil,
the decimal key on the keypad is mapped to DECIMAL instead of `.'"
(let ((i 0)
(kp
(cond
(numlock
[kp-decimal kp-0 kp-1 kp-2 kp-3 kp-4
kp-5 kp-6 kp-7 kp-8 kp-9])
(t
[kp-delete kp-insert kp-end kp-down kp-next kp-left
kp-space kp-right kp-home kp-up kp-prior])))
(bind
(cond
((eq setup 'numeric)
(vector (or decimal ?.) ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9))
((eq setup 'prefix)
[?\M-- ?\M-0 ?\M-1 ?\M-2 ?\M-3 ?\M-4
?\M-5 ?\M-6 ?\M-7 ?\M-8 ?\M-9])
((eq setup 'cursor)
[delete insert end down next left
space right home up prior])
((eq setup 'S-cursor)
[S-delete S-insert S-end S-down S-next S-left
S-space S-right S-home S-up S-prior])
((eq setup 'none)
nil)
(t
(signal 'error (list "Unknown keypad setup: " setup))))))
;; Bind the keys in KP list to BIND list in function-key-map.
;; If BIND is nil, all bindings for the keys are removed.
(if (not (boundp 'function-key-map))
(setq function-key-map (make-sparse-keymap)))
(while (< i 11)
(define-key function-key-map (vector (aref kp i))
(if bind (vector (aref bind i))))
(setq i (1+ i)))))
;;; keypad.el ends here