1992-05-30 22:12:04 +00:00
|
|
|
|
;;; mouse.el --- window system-independent mouse support.
|
1992-07-16 04:23:17 +00:00
|
|
|
|
|
1992-07-22 02:58:21 +00:00
|
|
|
|
;;; Copyright (C) 1988, 1992 Free Software Foundation, Inc.
|
|
|
|
|
|
1992-07-16 04:23:17 +00:00
|
|
|
|
;; Maintainer: FSF
|
|
|
|
|
;; Keywords: hardware
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; This file is part of GNU Emacs.
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; 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
|
1992-06-10 01:34:51 +00:00
|
|
|
|
;;; the Free Software Foundation; either version 2, or (at your option)
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; any later version.
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; 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.
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; 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, 675 Mass Ave, Cambridge, MA 02139, USA.
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; Utility functions.
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(defun mouse-movement-p (event)
|
|
|
|
|
(and (consp event)
|
|
|
|
|
(eq (car event) 'mouse-movement)))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(defun event-window (event) (nth 1 event))
|
|
|
|
|
(defun event-point (event) (nth 2 event))
|
|
|
|
|
(defun mouse-coords (event) (nth 3 event))
|
|
|
|
|
(defun mouse-timestamp (event) (nth 4 event))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; Indent track-mouse like progn.
|
|
|
|
|
(put 'track-mouse 'lisp-indent-function 0)
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
|
|
|
|
(defun mouse-delete-window (click)
|
|
|
|
|
"Delete the window clicked on.
|
|
|
|
|
This must be bound to a mouse click."
|
|
|
|
|
(interactive "K")
|
|
|
|
|
(delete-window (event-window click)))
|
|
|
|
|
|
|
|
|
|
(defun mouse-delete-other-windows (click)
|
|
|
|
|
"Select Emacs window clicked on, then kill all other Emacs windows.
|
|
|
|
|
This must be bound to a mouse click."
|
|
|
|
|
(interactive "K")
|
|
|
|
|
(select-window (event-window click))
|
|
|
|
|
(delete-other-windows))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(defun mouse-split-window-vertically (click)
|
|
|
|
|
"Select Emacs window mouse is on, then split it vertically in half.
|
|
|
|
|
The window is split at the line clicked on.
|
|
|
|
|
This command must be bound to a mouse click."
|
|
|
|
|
(interactive "K")
|
|
|
|
|
(select-window (event-window click))
|
|
|
|
|
(split-window-vertically (1+ (cdr (mouse-coords click)))))
|
|
|
|
|
|
|
|
|
|
(defun mouse-set-point (click)
|
|
|
|
|
"Move point to the position clicked on with the mouse.
|
|
|
|
|
This must be bound to a mouse click."
|
|
|
|
|
(interactive "K")
|
|
|
|
|
(select-window (event-window click))
|
1992-08-29 02:14:58 +00:00
|
|
|
|
(if (numberp (event-point click))
|
|
|
|
|
(goto-char (event-point click))))
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
|
|
|
|
(defun mouse-set-mark (click)
|
|
|
|
|
"Set mark at the position clicked on with the mouse.
|
|
|
|
|
Display cursor at that position for a second.
|
|
|
|
|
This must be bound to a mouse click."
|
|
|
|
|
(interactive "K")
|
1990-06-19 20:28:34 +00:00
|
|
|
|
(let ((point-save (point)))
|
|
|
|
|
(unwind-protect
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(progn (mouse-set-point click)
|
1990-06-19 20:28:34 +00:00
|
|
|
|
(push-mark nil t)
|
1991-02-20 08:29:50 +00:00
|
|
|
|
(sit-for 1))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
(goto-char point-save))))
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(defun mouse-kill (click)
|
|
|
|
|
"Kill the region between point and the mouse click.
|
|
|
|
|
The text is saved in the kill ring, as with \\[kill-region]."
|
|
|
|
|
(interactive "K")
|
1992-07-10 22:19:56 +00:00
|
|
|
|
(let ((click-posn (event-point click)))
|
1992-08-29 02:14:58 +00:00
|
|
|
|
(if (numberp click-posn)
|
|
|
|
|
(kill-region (min (point) click-posn)
|
|
|
|
|
(max (point) click-posn)))))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1992-06-10 01:34:51 +00:00
|
|
|
|
(defun mouse-yank-at-click (click arg)
|
|
|
|
|
"Insert the last stretch of killed text at the position clicked on.
|
|
|
|
|
Prefix arguments are interpreted as with \\[yank]."
|
|
|
|
|
(interactive "K\nP")
|
|
|
|
|
(mouse-set-point click)
|
|
|
|
|
(yank arg))
|
|
|
|
|
|
|
|
|
|
(defun mouse-kill-ring-save (click)
|
1991-12-20 07:15:37 +00:00
|
|
|
|
"Copy the region between point and the mouse click in the kill ring.
|
|
|
|
|
This does not delete the region; it acts like \\[kill-ring-save]."
|
|
|
|
|
(interactive "K")
|
|
|
|
|
(mouse-set-mark click)
|
1992-06-10 01:34:51 +00:00
|
|
|
|
(call-interactively 'kill-ring-save))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Commands for the scroll bar.
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-down (nlines)
|
|
|
|
|
(interactive "@p")
|
|
|
|
|
(scroll-down nlines))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-up (nlines)
|
|
|
|
|
(interactive "@p")
|
|
|
|
|
(scroll-up nlines))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-down-full ()
|
|
|
|
|
(interactive "@")
|
|
|
|
|
(scroll-down nil))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-up-full ()
|
|
|
|
|
(interactive "@")
|
|
|
|
|
(scroll-up nil))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-move-cursor (nlines)
|
|
|
|
|
(interactive "@p")
|
|
|
|
|
(move-to-window-line nlines))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-absolute (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(let* ((pos (car event))
|
|
|
|
|
(position (car pos))
|
|
|
|
|
(length (car (cdr pos))))
|
|
|
|
|
(if (<= length 0) (setq length 1))
|
|
|
|
|
(let* ((scale-factor (max 1 (/ length (/ 8000000 (buffer-size)))))
|
|
|
|
|
(newpos (* (/ (* (/ (buffer-size) scale-factor)
|
|
|
|
|
position)
|
|
|
|
|
length)
|
|
|
|
|
scale-factor)))
|
|
|
|
|
(goto-char newpos)
|
|
|
|
|
(recenter '(4)))))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-left (ncolumns)
|
|
|
|
|
(interactive "@p")
|
|
|
|
|
(scroll-left ncolumns))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-right (ncolumns)
|
|
|
|
|
(interactive "@p")
|
|
|
|
|
(scroll-right ncolumns))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-left-full ()
|
|
|
|
|
(interactive "@")
|
|
|
|
|
(scroll-left nil))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-right-full ()
|
|
|
|
|
(interactive "@")
|
|
|
|
|
(scroll-right nil))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-move-cursor-horizontally (ncolumns)
|
|
|
|
|
(interactive "@p")
|
|
|
|
|
(move-to-column ncolumns))
|
|
|
|
|
|
|
|
|
|
(defun mouse-scroll-absolute-horizontally (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(let* ((pos (car event))
|
|
|
|
|
(position (car pos))
|
|
|
|
|
(length (car (cdr pos))))
|
|
|
|
|
(set-window-hscroll (selected-window) 33)))
|
|
|
|
|
|
|
|
|
|
;; Set up these commands, including the prefix keys for the scroll bar.
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; (fset 'mouse-vertical-scroll-bar-prefix (make-sparse-keymap))
|
|
|
|
|
;;; (define-key global-mouse-map mouse-vertical-scroll-bar-prefix
|
|
|
|
|
;;; 'mouse-vertical-scroll-bar-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; (defun mouse-scroll-motion (event)
|
|
|
|
|
;;; (interactive "e")
|
|
|
|
|
;;; (let ((pos (car (car event)))
|
|
|
|
|
;;; (length (car (cdr (car event)))))
|
|
|
|
|
;;; (message "[%d %d]" pos length)))
|
|
|
|
|
;;;
|
|
|
|
|
;;; (let ((map (function mouse-vertical-scroll-bar-prefix)))
|
|
|
|
|
;;; (define-key map mouse-button-right 'mouse-scroll-down)
|
|
|
|
|
;;; (define-key map mouse-button-left 'mouse-scroll-up)
|
|
|
|
|
;;; (define-key map mouse-button-middle 'mouse-scroll-absolute)
|
|
|
|
|
;;; (define-key map mouse-motion 'x-horizontal-line))
|
|
|
|
|
;;;
|
|
|
|
|
;;; ;(fset 'mouse-vertical-slider-prefix (make-sparse-keymap))
|
|
|
|
|
;;; ;(define-key global-mouse-map mouse-vertical-slider-prefix
|
|
|
|
|
;;; ; 'mouse-vertical-slider-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; ;(let ((map (function mouse-vertical-slider-prefix)))
|
|
|
|
|
;;; ; (define-key map mouse-button-right 'mouse-scroll-move-cursor)
|
|
|
|
|
;;; ; (define-key map mouse-button-left 'mouse-scroll-move-cursor)
|
|
|
|
|
;;; ; (define-key map mouse-button-middle 'mouse-scroll-move-cursor))
|
|
|
|
|
;;;
|
|
|
|
|
;;; (fset 'mouse-vertical-thumbup-prefix (make-sparse-keymap))
|
|
|
|
|
;;; (define-key global-mouse-map mouse-vertical-thumbup-prefix
|
|
|
|
|
;;; 'mouse-vertical-thumbup-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; (let ((map (function mouse-vertical-thumbup-prefix)))
|
|
|
|
|
;;; (define-key map mouse-button-right 'mouse-scroll-down-full)
|
|
|
|
|
;;; (define-key map mouse-button-left 'mouse-scroll-down-full)
|
|
|
|
|
;;; (define-key map mouse-button-middle 'mouse-scroll-down-full))
|
|
|
|
|
;;;
|
|
|
|
|
;;; (fset 'mouse-vertical-thumbdown-prefix (make-sparse-keymap))
|
|
|
|
|
;;; (define-key global-mouse-map mouse-vertical-thumbdown-prefix
|
|
|
|
|
;;; 'mouse-vertical-thumbdown-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; (let ((map (function mouse-vertical-thumbdown-prefix)))
|
|
|
|
|
;;; (define-key map mouse-button-right 'mouse-scroll-up-full)
|
|
|
|
|
;;; (define-key map mouse-button-left 'mouse-scroll-up-full)
|
|
|
|
|
;;; (define-key map mouse-button-middle 'mouse-scroll-up-full))
|
|
|
|
|
;;;
|
|
|
|
|
;;; ;; Horizontal bar
|
|
|
|
|
;;;
|
|
|
|
|
;;; (fset 'mouse-horizontal-scroll-bar-prefix (make-sparse-keymap))
|
|
|
|
|
;;; (define-key global-mouse-map mouse-horizontal-scroll-bar-prefix
|
|
|
|
|
;;; 'mouse-horizontal-scroll-bar-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; (let ((map (function mouse-horizontal-scroll-bar-prefix)))
|
|
|
|
|
;;; (define-key map mouse-button-right 'mouse-scroll-right)
|
|
|
|
|
;;; (define-key map mouse-button-left 'mouse-scroll-left)
|
|
|
|
|
;;; (define-key map mouse-button-middle 'mouse-scroll-absolute-horizontally))
|
|
|
|
|
;;;
|
|
|
|
|
;;; (fset 'mouse-horizontal-thumbleft-prefix (make-sparse-keymap))
|
|
|
|
|
;;; (define-key global-mouse-map mouse-horizontal-thumbleft-prefix
|
|
|
|
|
;;; 'mouse-horizontal-thumbleft-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; (let ((map (function mouse-horizontal-thumbleft-prefix)))
|
|
|
|
|
;;; (define-key map mouse-button-right 'mouse-scroll-left-full)
|
|
|
|
|
;;; (define-key map mouse-button-left 'mouse-scroll-left-full)
|
|
|
|
|
;;; (define-key map mouse-button-middle 'mouse-scroll-left-full))
|
|
|
|
|
;;;
|
|
|
|
|
;;; (fset 'mouse-horizontal-thumbright-prefix (make-sparse-keymap))
|
|
|
|
|
;;; (define-key global-mouse-map mouse-horizontal-thumbright-prefix
|
|
|
|
|
;;; 'mouse-horizontal-thumbright-prefix)
|
|
|
|
|
;;;
|
|
|
|
|
;;; (let ((map (function mouse-horizontal-thumbright-prefix)))
|
|
|
|
|
;;; (define-key map mouse-button-right 'mouse-scroll-right-full)
|
|
|
|
|
;;; (define-key map mouse-button-left 'mouse-scroll-right-full)
|
|
|
|
|
;;; (define-key map mouse-button-middle 'mouse-scroll-right-full))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
|
1991-06-28 17:24:57 +00:00
|
|
|
|
;;;;
|
|
|
|
|
;;;; Here are experimental things being tested. Mouse events
|
|
|
|
|
;;;; are of the form:
|
|
|
|
|
;;;; ((x y) window screen-part key-sequence timestamp)
|
1990-06-19 20:28:34 +00:00
|
|
|
|
;;
|
1991-06-28 17:24:57 +00:00
|
|
|
|
;;;;
|
|
|
|
|
;;;; Dynamically track mouse coordinates
|
|
|
|
|
;;;;
|
1990-06-19 20:28:34 +00:00
|
|
|
|
;;
|
1991-06-28 17:24:57 +00:00
|
|
|
|
;;(defun track-mouse (event)
|
|
|
|
|
;; "Track the coordinates, absolute and relative, of the mouse."
|
|
|
|
|
;; (interactive "@e")
|
|
|
|
|
;; (while mouse-grabbed
|
|
|
|
|
;; (let* ((pos (read-mouse-position (selected-screen)))
|
|
|
|
|
;; (abs-x (car pos))
|
|
|
|
|
;; (abs-y (cdr pos))
|
|
|
|
|
;; (relative-coordinate (coordinates-in-window-p
|
|
|
|
|
;; (list (car pos) (cdr pos))
|
|
|
|
|
;; (selected-window))))
|
|
|
|
|
;; (if (consp relative-coordinate)
|
|
|
|
|
;; (message "mouse: [%d %d], (%d %d)" abs-x abs-y
|
|
|
|
|
;; (car relative-coordinate)
|
|
|
|
|
;; (car (cdr relative-coordinate)))
|
|
|
|
|
;; (message "mouse: [%d %d]" abs-x abs-y)))))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Dynamically put a box around the line indicated by point
|
|
|
|
|
;;
|
1992-07-10 22:19:56 +00:00
|
|
|
|
;;
|
|
|
|
|
;;(require 'backquote)
|
|
|
|
|
;;
|
|
|
|
|
;;(defun mouse-select-buffer-line (event)
|
|
|
|
|
;; (interactive "@e")
|
|
|
|
|
;; (let ((relative-coordinate
|
|
|
|
|
;; (coordinates-in-window-p (car event) (selected-window)))
|
|
|
|
|
;; (abs-y (car (cdr (car event)))))
|
|
|
|
|
;; (if (consp relative-coordinate)
|
|
|
|
|
;; (progn
|
|
|
|
|
;; (save-excursion
|
|
|
|
|
;; (move-to-window-line (car (cdr relative-coordinate)))
|
|
|
|
|
;; (x-draw-rectangle
|
|
|
|
|
;; (selected-screen)
|
|
|
|
|
;; abs-y 0
|
|
|
|
|
;; (save-excursion
|
|
|
|
|
;; (move-to-window-line (car (cdr relative-coordinate)))
|
|
|
|
|
;; (end-of-line)
|
|
|
|
|
;; (push-mark nil t)
|
|
|
|
|
;; (beginning-of-line)
|
|
|
|
|
;; (- (region-end) (region-beginning))) 1))
|
|
|
|
|
;; (sit-for 1)
|
|
|
|
|
;; (x-erase-rectangle (selected-screen))))))
|
|
|
|
|
;;
|
|
|
|
|
;;(defvar last-line-drawn nil)
|
|
|
|
|
;;(defvar begin-delim "[^ \t]")
|
|
|
|
|
;;(defvar end-delim "[^ \t]")
|
|
|
|
|
;;
|
|
|
|
|
;;(defun mouse-boxing (event)
|
|
|
|
|
;; (interactive "@e")
|
|
|
|
|
;; (save-excursion
|
|
|
|
|
;; (let ((screen (selected-screen)))
|
|
|
|
|
;; (while (= (x-mouse-events) 0)
|
|
|
|
|
;; (let* ((pos (read-mouse-position screen))
|
|
|
|
|
;; (abs-x (car pos))
|
|
|
|
|
;; (abs-y (cdr pos))
|
|
|
|
|
;; (relative-coordinate
|
|
|
|
|
;; (coordinates-in-window-p (` ((, abs-x) (, abs-y)))
|
|
|
|
|
;; (selected-window)))
|
|
|
|
|
;; (begin-reg nil)
|
|
|
|
|
;; (end-reg nil)
|
|
|
|
|
;; (end-column nil)
|
|
|
|
|
;; (begin-column nil))
|
|
|
|
|
;; (if (and (consp relative-coordinate)
|
|
|
|
|
;; (or (not last-line-drawn)
|
|
|
|
|
;; (not (= last-line-drawn abs-y))))
|
|
|
|
|
;; (progn
|
|
|
|
|
;; (move-to-window-line (car (cdr relative-coordinate)))
|
|
|
|
|
;; (if (= (following-char) 10)
|
|
|
|
|
;; ()
|
|
|
|
|
;; (progn
|
|
|
|
|
;; (setq begin-reg (1- (re-search-forward end-delim)))
|
|
|
|
|
;; (setq begin-column (1- (current-column)))
|
|
|
|
|
;; (end-of-line)
|
|
|
|
|
;; (setq end-reg (1+ (re-search-backward begin-delim)))
|
|
|
|
|
;; (setq end-column (1+ (current-column)))
|
|
|
|
|
;; (message "%s" (buffer-substring begin-reg end-reg))
|
|
|
|
|
;; (x-draw-rectangle screen
|
|
|
|
|
;; (setq last-line-drawn abs-y)
|
|
|
|
|
;; begin-column
|
|
|
|
|
;; (- end-column begin-column) 1))))))))))
|
|
|
|
|
;;
|
|
|
|
|
;;(defun mouse-erase-box ()
|
|
|
|
|
;; (interactive)
|
|
|
|
|
;; (if last-line-drawn
|
|
|
|
|
;; (progn
|
|
|
|
|
;; (x-erase-rectangle (selected-screen))
|
|
|
|
|
;; (setq last-line-drawn nil))))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; (defun test-x-rectangle ()
|
|
|
|
|
;;; (use-local-mouse-map (setq rectangle-test-map (make-sparse-keymap)))
|
|
|
|
|
;;; (define-key rectangle-test-map mouse-motion-button-left 'mouse-boxing)
|
|
|
|
|
;;; (define-key rectangle-test-map mouse-button-left-up 'mouse-erase-box))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Here is how to do double clicking in lisp. About to change.
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
(defvar double-start nil)
|
|
|
|
|
(defconst double-click-interval 300
|
|
|
|
|
"Max ticks between clicks")
|
|
|
|
|
|
|
|
|
|
(defun double-down (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(if double-start
|
|
|
|
|
(let ((interval (- (nth 4 event) double-start)))
|
|
|
|
|
(if (< interval double-click-interval)
|
|
|
|
|
(progn
|
|
|
|
|
(backward-up-list 1)
|
|
|
|
|
;; (message "Interval %d" interval)
|
|
|
|
|
(sleep-for 1)))
|
|
|
|
|
(setq double-start nil))
|
|
|
|
|
(setq double-start (nth 4 event))))
|
|
|
|
|
|
|
|
|
|
(defun double-up (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(and double-start
|
|
|
|
|
(> (- (nth 4 event ) double-start) double-click-interval)
|
|
|
|
|
(setq double-start nil)))
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; (defun x-test-doubleclick ()
|
|
|
|
|
;;; (use-local-mouse-map (setq doubleclick-test-map (make-sparse-keymap)))
|
|
|
|
|
;;; (define-key doubleclick-test-map mouse-button-left 'double-down)
|
|
|
|
|
;;; (define-key doubleclick-test-map mouse-button-left-up 'double-up))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; This scrolls while button is depressed. Use preferable in scrollbar.
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
(defvar scrolled-lines 0)
|
|
|
|
|
(defconst scroll-speed 1)
|
|
|
|
|
|
|
|
|
|
(defun incr-scroll-down (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(setq scrolled-lines 0)
|
|
|
|
|
(incremental-scroll scroll-speed))
|
|
|
|
|
|
|
|
|
|
(defun incr-scroll-up (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(setq scrolled-lines 0)
|
|
|
|
|
(incremental-scroll (- scroll-speed)))
|
|
|
|
|
|
|
|
|
|
(defun incremental-scroll (n)
|
|
|
|
|
(while (= (x-mouse-events) 0)
|
|
|
|
|
(setq scrolled-lines (1+ (* scroll-speed scrolled-lines)))
|
|
|
|
|
(scroll-down n)
|
|
|
|
|
(sit-for 300 t)))
|
|
|
|
|
|
|
|
|
|
(defun incr-scroll-stop (event)
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(message "Scrolled %d lines" scrolled-lines)
|
|
|
|
|
(setq scrolled-lines 0)
|
|
|
|
|
(sleep-for 1))
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
;;; (defun x-testing-scroll ()
|
|
|
|
|
;;; (let ((scrolling-map (function mouse-vertical-scroll-bar-prefix)))
|
|
|
|
|
;;; (define-key scrolling-map mouse-button-left 'incr-scroll-down)
|
|
|
|
|
;;; (define-key scrolling-map mouse-button-right 'incr-scroll-up)
|
|
|
|
|
;;; (define-key scrolling-map mouse-button-left-up 'incr-scroll-stop)
|
|
|
|
|
;;; (define-key scrolling-map mouse-button-right-up 'incr-scroll-stop)))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Some playthings suitable for picture mode? They need work.
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
(defun mouse-kill-rectangle (event)
|
|
|
|
|
"Kill the rectangle between point and the mouse cursor."
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(let ((point-save (point)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(mouse-set-point event)
|
|
|
|
|
(push-mark nil t)
|
|
|
|
|
(if (> point-save (point))
|
|
|
|
|
(kill-rectangle (point) point-save)
|
|
|
|
|
(kill-rectangle point-save (point))))))
|
|
|
|
|
|
|
|
|
|
(defun mouse-open-rectangle (event)
|
|
|
|
|
"Kill the rectangle between point and the mouse cursor."
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(let ((point-save (point)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(mouse-set-point event)
|
|
|
|
|
(push-mark nil t)
|
|
|
|
|
(if (> point-save (point))
|
|
|
|
|
(open-rectangle (point) point-save)
|
|
|
|
|
(open-rectangle point-save (point))))))
|
|
|
|
|
|
|
|
|
|
;; Must be a better way to do this.
|
|
|
|
|
|
|
|
|
|
(defun mouse-multiple-insert (n char)
|
|
|
|
|
(while (> n 0)
|
|
|
|
|
(insert char)
|
|
|
|
|
(setq n (1- n))))
|
|
|
|
|
|
|
|
|
|
;; What this could do is not finalize until button was released.
|
|
|
|
|
|
|
|
|
|
(defun mouse-move-text (event)
|
|
|
|
|
"Move text from point to cursor position, inserting spaces."
|
|
|
|
|
(interactive "@e")
|
|
|
|
|
(let* ((relative-coordinate
|
|
|
|
|
(coordinates-in-window-p (car event) (selected-window))))
|
|
|
|
|
(if (consp relative-coordinate)
|
|
|
|
|
(cond ((> (current-column) (car relative-coordinate))
|
|
|
|
|
(delete-char
|
|
|
|
|
(- (car relative-coordinate) (current-column))))
|
|
|
|
|
((< (current-column) (car relative-coordinate))
|
|
|
|
|
(mouse-multiple-insert
|
|
|
|
|
(- (car relative-coordinate) (current-column)) " "))
|
|
|
|
|
((= (current-column) (car relative-coordinate)) (ding))))))
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Bindings for mouse commands.
|
|
|
|
|
|
|
|
|
|
(global-set-key [mouse-1] 'mouse-set-point)
|
1992-06-10 01:34:51 +00:00
|
|
|
|
(global-set-key [mouse-2] 'mouse-yank-at-click)
|
|
|
|
|
(global-set-key [mouse-3] 'mouse-kill-ring-save)
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(global-set-key [S-mouse-1] 'mouse-set-mark)
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
|
|
|
|
(provide 'mouse)
|
|
|
|
|
|
1992-05-30 22:12:04 +00:00
|
|
|
|
;;; mouse.el ends here
|