1992-05-30 22:12:04 +00:00
|
|
|
|
;;; mouse.el --- window system-independent mouse support.
|
1992-07-16 04:23:17 +00:00
|
|
|
|
|
1994-05-03 22:46:37 +00:00
|
|
|
|
;;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
1992-07-22 02:58:21 +00:00
|
|
|
|
|
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
|
|
|
|
|
1993-03-22 05:42:35 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This package provides various useful commands (including help
|
|
|
|
|
;; system access) through the mouse. All this code assumes that mouse
|
|
|
|
|
;; interpretation has been abstracted into Emacs input events.
|
|
|
|
|
;;
|
|
|
|
|
;; The code is rather X-dependent.
|
|
|
|
|
|
1993-03-17 16:56:02 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
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
|
|
|
|
;;; Indent track-mouse like progn.
|
|
|
|
|
(put 'track-mouse 'lisp-indent-function 0)
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1994-02-06 02:53:16 +00:00
|
|
|
|
(defvar mouse-yank-at-point nil
|
|
|
|
|
"*If non-nil, mouse yank commands yank at point instead of at click.")
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(defun mouse-minibuffer-check (event)
|
|
|
|
|
(let ((w (posn-window (event-start event))))
|
|
|
|
|
(and (window-minibuffer-p w)
|
|
|
|
|
(not (minibuffer-window-active-p w))
|
|
|
|
|
(error "Minibuffer window is not active"))))
|
|
|
|
|
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(defun mouse-delete-window (click)
|
1992-09-26 08:15:35 +00:00
|
|
|
|
"Delete the window you click on.
|
1991-12-20 07:15:37 +00:00
|
|
|
|
This must be bound to a mouse click."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
* mouse.el: Begin adapting this to the new event format.
(event-window, event-point, mouse-coords, mouse-timestamp):
Removed.
(event-start, event-end, posn-window, posn-point, posn-col-row,
posn-timestamp): New accessors; these are defsubsts.
(mouse-delete-window, mouse-delete-other-windows,
mouse-split-window-vertically, mouse-set-point): Rewritten to use
the new accessors.
* mouse.el: Remove hack of binding down-mouse-1.
* mouse.el (mouse-movement-p): Add docstring for this.
1992-10-07 20:46:31 +00:00
|
|
|
|
(delete-window (posn-window (event-start click))))
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
1994-02-25 19:35:58 +00:00
|
|
|
|
(defun mouse-select-window (click)
|
|
|
|
|
"Select the window clicked on; don't move point."
|
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1994-02-25 19:35:58 +00:00
|
|
|
|
(let ((oframe (selected-frame))
|
|
|
|
|
(frame (window-frame (posn-window (event-start click)))))
|
|
|
|
|
(select-window (posn-window (event-start click)))
|
|
|
|
|
(raise-frame frame)
|
|
|
|
|
(select-frame frame)
|
|
|
|
|
(or (eq frame oframe)
|
|
|
|
|
(set-mouse-position (selected-frame) (1- (frame-width)) 0))
|
|
|
|
|
(unfocus-frame)))
|
|
|
|
|
|
1992-10-17 21:57:45 +00:00
|
|
|
|
(defun mouse-tear-off-window (click)
|
|
|
|
|
"Delete the window clicked on, and create a new frame displaying its buffer."
|
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1992-10-17 21:57:45 +00:00
|
|
|
|
(let* ((window (posn-window (event-start click)))
|
|
|
|
|
(buf (window-buffer window))
|
1994-05-06 20:27:25 +00:00
|
|
|
|
(frame (make-frame)))
|
1992-10-17 21:57:45 +00:00
|
|
|
|
(select-frame frame)
|
|
|
|
|
(switch-to-buffer buf)
|
|
|
|
|
(delete-window window)))
|
|
|
|
|
|
* mouse.el: Begin adapting this to the new event format.
(event-window, event-point, mouse-coords, mouse-timestamp):
Removed.
(event-start, event-end, posn-window, posn-point, posn-col-row,
posn-timestamp): New accessors; these are defsubsts.
(mouse-delete-window, mouse-delete-other-windows,
mouse-split-window-vertically, mouse-set-point): Rewritten to use
the new accessors.
* mouse.el: Remove hack of binding down-mouse-1.
* mouse.el (mouse-movement-p): Add docstring for this.
1992-10-07 20:46:31 +00:00
|
|
|
|
(defun mouse-delete-other-windows ()
|
1992-09-26 08:15:35 +00:00
|
|
|
|
"Delete all window except the one you click on."
|
* mouse.el: Begin adapting this to the new event format.
(event-window, event-point, mouse-coords, mouse-timestamp):
Removed.
(event-start, event-end, posn-window, posn-point, posn-col-row,
posn-timestamp): New accessors; these are defsubsts.
(mouse-delete-window, mouse-delete-other-windows,
mouse-split-window-vertically, mouse-set-point): Rewritten to use
the new accessors.
* mouse.el: Remove hack of binding down-mouse-1.
* mouse.el (mouse-movement-p): Add docstring for this.
1992-10-07 20:46:31 +00:00
|
|
|
|
(interactive "@")
|
1991-12-20 07:15:37 +00:00
|
|
|
|
(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."
|
1992-09-26 08:15:35 +00:00
|
|
|
|
(interactive "@e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
* mouse.el: Begin adapting this to the new event format.
(event-window, event-point, mouse-coords, mouse-timestamp):
Removed.
(event-start, event-end, posn-window, posn-point, posn-col-row,
posn-timestamp): New accessors; these are defsubsts.
(mouse-delete-window, mouse-delete-other-windows,
mouse-split-window-vertically, mouse-set-point): Rewritten to use
the new accessors.
* mouse.el: Remove hack of binding down-mouse-1.
* mouse.el (mouse-movement-p): Add docstring for this.
1992-10-07 20:46:31 +00:00
|
|
|
|
(let ((start (event-start click)))
|
|
|
|
|
(select-window (posn-window start))
|
1994-05-22 20:56:11 +00:00
|
|
|
|
(let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
|
1993-03-02 07:29:05 +00:00
|
|
|
|
(first-line window-min-height)
|
|
|
|
|
(last-line (- (window-height) window-min-height)))
|
|
|
|
|
(if (< last-line first-line)
|
1994-08-02 21:59:19 +00:00
|
|
|
|
(error "Window too short to split")
|
1993-03-02 07:29:05 +00:00
|
|
|
|
(split-window-vertically
|
|
|
|
|
(min (max new-height first-line) last-line))))))
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
1992-09-26 08:15:35 +00:00
|
|
|
|
(defun mouse-split-window-horizontally (click)
|
|
|
|
|
"Select Emacs window mouse is on, then split it horizontally in half.
|
|
|
|
|
The window is split at the column clicked on.
|
|
|
|
|
This command must be bound to a mouse click."
|
|
|
|
|
(interactive "@e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1993-03-02 07:29:05 +00:00
|
|
|
|
(let ((start (event-start click)))
|
|
|
|
|
(select-window (posn-window start))
|
|
|
|
|
(let ((new-width (1+ (car (posn-col-row (event-end click)))))
|
|
|
|
|
(first-col window-min-width)
|
|
|
|
|
(last-col (- (window-width) window-min-width)))
|
|
|
|
|
(if (< last-col first-col)
|
1994-08-02 21:59:19 +00:00
|
|
|
|
(error "Window too narrow to split")
|
1993-03-02 07:29:05 +00:00
|
|
|
|
(split-window-horizontally
|
|
|
|
|
(min (max new-width first-col) last-col))))))
|
1992-09-26 08:15:35 +00:00
|
|
|
|
|
1993-08-11 06:17:43 +00:00
|
|
|
|
(defun mouse-set-point (event)
|
1991-12-20 07:15:37 +00:00
|
|
|
|
"Move point to the position clicked on with the mouse.
|
1993-08-11 06:17:43 +00:00
|
|
|
|
This should be bound to a mouse click event type."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check event)
|
1993-08-11 06:17:43 +00:00
|
|
|
|
;; Use event-end in case called from mouse-drag-region.
|
|
|
|
|
;; If EVENT is a click, event-end and event-start give same value.
|
|
|
|
|
(let ((posn (event-end event)))
|
1994-08-02 21:59:19 +00:00
|
|
|
|
(if (not (windowp (posn-window posn)))
|
|
|
|
|
(error "Cursor not in text area of window"))
|
* mouse.el: Begin adapting this to the new event format.
(event-window, event-point, mouse-coords, mouse-timestamp):
Removed.
(event-start, event-end, posn-window, posn-point, posn-col-row,
posn-timestamp): New accessors; these are defsubsts.
(mouse-delete-window, mouse-delete-other-windows,
mouse-split-window-vertically, mouse-set-point): Rewritten to use
the new accessors.
* mouse.el: Remove hack of binding down-mouse-1.
* mouse.el (mouse-movement-p): Add docstring for this.
1992-10-07 20:46:31 +00:00
|
|
|
|
(select-window (posn-window posn))
|
|
|
|
|
(if (numberp (posn-point posn))
|
|
|
|
|
(goto-char (posn-point posn)))))
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
1992-10-17 07:07:39 +00:00
|
|
|
|
(defun mouse-set-region (click)
|
1993-09-17 21:26:18 +00:00
|
|
|
|
"Set the region to the text dragged over, and copy to kill ring.
|
1993-08-11 06:17:43 +00:00
|
|
|
|
This should be bound to a mouse drag event."
|
1992-10-17 07:07:39 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1992-10-17 07:07:39 +00:00
|
|
|
|
(let ((posn (event-start click))
|
|
|
|
|
(end (event-end click)))
|
|
|
|
|
(select-window (posn-window posn))
|
|
|
|
|
(if (numberp (posn-point posn))
|
|
|
|
|
(goto-char (posn-point posn)))
|
1993-05-15 19:52:01 +00:00
|
|
|
|
;; If mark is highlighted, no need to bounce the cursor.
|
|
|
|
|
(or (and transient-mark-mode
|
|
|
|
|
(eq (framep (selected-frame)) 'x))
|
|
|
|
|
(sit-for 1))
|
1992-10-17 07:07:39 +00:00
|
|
|
|
(push-mark)
|
1993-05-15 20:32:23 +00:00
|
|
|
|
(set-mark (point))
|
1992-10-17 07:07:39 +00:00
|
|
|
|
(if (numberp (posn-point end))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(goto-char (posn-point end)))
|
|
|
|
|
;; Don't set this-command to kill-region, so that a following
|
|
|
|
|
;; C-w will not double the text in the kill ring.
|
|
|
|
|
(let (this-command)
|
|
|
|
|
(copy-region-as-kill (mark) (point)))))
|
1992-10-17 07:07:39 +00:00
|
|
|
|
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(defvar mouse-scroll-delay 0.25
|
|
|
|
|
"*The pause between scroll steps caused by mouse drags, in seconds.
|
|
|
|
|
If you drag the mouse beyond the edge of a window, Emacs scrolls the
|
|
|
|
|
window to bring the text beyond that edge into view, with a delay of
|
|
|
|
|
this many seconds between scroll steps. Scrolling stops when you move
|
|
|
|
|
the mouse back into the window, or release the button.
|
|
|
|
|
This variable's value may be non-integral.
|
|
|
|
|
Setting this to zero causes Emacs to scroll as fast as it can.")
|
|
|
|
|
|
1994-06-17 00:51:33 +00:00
|
|
|
|
(defun mouse-scroll-subr (window jump &optional overlay start)
|
|
|
|
|
"Scroll the window WINDOW, JUMP lines at a time, until new input arrives.
|
1993-06-30 04:47:37 +00:00
|
|
|
|
If OVERLAY is an overlay, let it stretch from START to the far edge of
|
|
|
|
|
the newly visible text.
|
|
|
|
|
Upon exit, point is at the far edge of the newly visible text."
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(let ((opoint (point)))
|
|
|
|
|
(while (progn
|
|
|
|
|
(goto-char (window-start window))
|
|
|
|
|
(if (not (zerop (vertical-motion jump window)))
|
|
|
|
|
(progn
|
|
|
|
|
(set-window-start window (point))
|
|
|
|
|
(if (natnump jump)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (window-end window))
|
|
|
|
|
;; window-end doesn't reflect the window's new
|
|
|
|
|
;; start position until the next redisplay. Hurrah.
|
|
|
|
|
(vertical-motion (1- jump) window))
|
|
|
|
|
(goto-char (window-start window)))
|
|
|
|
|
(if overlay
|
|
|
|
|
(move-overlay overlay start (point)))
|
|
|
|
|
;; Now that we have scrolled WINDOW properly,
|
|
|
|
|
;; put point back where it was for the redisplay
|
|
|
|
|
;; so that we don't mess up the selected window.
|
|
|
|
|
(or (eq window (selected-window))
|
|
|
|
|
(goto-char opoint))
|
1994-06-25 23:48:04 +00:00
|
|
|
|
(sit-for mouse-scroll-delay)))))
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(or (eq window (selected-window))
|
|
|
|
|
(goto-char opoint))))
|
1993-05-15 19:52:01 +00:00
|
|
|
|
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(defvar mouse-drag-overlay (make-overlay 1 1))
|
|
|
|
|
(overlay-put mouse-drag-overlay 'face 'region)
|
|
|
|
|
|
1993-11-15 09:56:05 +00:00
|
|
|
|
(defvar mouse-selection-click-count 0)
|
1993-09-20 17:36:49 +00:00
|
|
|
|
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(defun mouse-drag-region (start-event)
|
1993-06-08 05:16:47 +00:00
|
|
|
|
"Set the region to the text that the mouse is dragged over.
|
1993-08-10 17:03:06 +00:00
|
|
|
|
Highlight the drag area as you move the mouse.
|
|
|
|
|
This must be bound to a button-down mouse event.
|
|
|
|
|
In Transient Mark mode, the highlighting remains once you
|
|
|
|
|
release the mouse button. Otherwise, it does not."
|
1993-06-08 05:16:47 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check start-event)
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(let* ((start-posn (event-start start-event))
|
|
|
|
|
(start-point (posn-point start-posn))
|
|
|
|
|
(start-window (posn-window start-posn))
|
1993-07-02 23:05:25 +00:00
|
|
|
|
(start-frame (window-frame start-window))
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(bounds (window-edges start-window))
|
|
|
|
|
(top (nth 1 bounds))
|
|
|
|
|
(bottom (if (window-minibuffer-p start-window)
|
|
|
|
|
(nth 3 bounds)
|
|
|
|
|
;; Don't count the mode line.
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(1- (nth 3 bounds))))
|
|
|
|
|
(click-count (1- (event-click-count start-event))))
|
1993-09-20 17:36:49 +00:00
|
|
|
|
(setq mouse-selection-click-count click-count)
|
1993-08-08 19:16:42 +00:00
|
|
|
|
(mouse-set-point start-event)
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(let ((range (mouse-start-end start-point start-point click-count)))
|
|
|
|
|
(move-overlay mouse-drag-overlay (car range) (nth 1 range)
|
|
|
|
|
(window-buffer start-window)))
|
1993-07-21 07:40:12 +00:00
|
|
|
|
(deactivate-mark)
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(let (event end end-point)
|
1993-06-08 05:16:47 +00:00
|
|
|
|
(track-mouse
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(while (progn
|
1993-07-02 23:05:25 +00:00
|
|
|
|
(setq event (read-event))
|
|
|
|
|
(or (mouse-movement-p event)
|
|
|
|
|
(eq (car-safe event) 'switch-frame)))
|
|
|
|
|
(if (eq (car-safe event) 'switch-frame)
|
|
|
|
|
nil
|
|
|
|
|
(setq end (event-end event)
|
|
|
|
|
end-point (posn-point end))
|
|
|
|
|
|
|
|
|
|
(cond
|
|
|
|
|
;; Are we moving within the original window?
|
|
|
|
|
((and (eq (posn-window end) start-window)
|
|
|
|
|
(integer-or-marker-p end-point))
|
|
|
|
|
(goto-char end-point)
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(let ((range (mouse-start-end start-point (point) click-count)))
|
|
|
|
|
(move-overlay mouse-drag-overlay (car range) (nth 1 range))))
|
1993-07-02 23:05:25 +00:00
|
|
|
|
|
1994-04-16 06:47:20 +00:00
|
|
|
|
(t
|
|
|
|
|
(let ((mouse-row (cdr (cdr (mouse-position)))))
|
1993-07-02 23:05:25 +00:00
|
|
|
|
(cond
|
1994-04-16 06:47:20 +00:00
|
|
|
|
((null mouse-row))
|
1993-07-02 23:05:25 +00:00
|
|
|
|
((< mouse-row top)
|
1994-06-17 00:51:33 +00:00
|
|
|
|
(mouse-scroll-subr start-window (- mouse-row top)
|
|
|
|
|
mouse-drag-overlay start-point))
|
1994-06-25 23:48:04 +00:00
|
|
|
|
((>= mouse-row bottom)
|
1994-06-17 00:51:33 +00:00
|
|
|
|
(mouse-scroll-subr start-window (1+ (- mouse-row bottom))
|
1994-04-16 06:47:20 +00:00
|
|
|
|
mouse-drag-overlay start-point)))))))))
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(if (consp event)
|
|
|
|
|
;;; When we scroll into the mode line or menu bar, or out of the window,
|
|
|
|
|
;;; we get events that don't fit these criteria.
|
|
|
|
|
;;; (eq (get (event-basic-type event) 'event-kind) 'mouse-click)
|
|
|
|
|
;;; (eq (posn-window (event-end event)) start-window)
|
|
|
|
|
;;; (numberp (posn-point (event-end event)))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(let ((fun (key-binding (vector (car event)))))
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(if (not (= (overlay-start mouse-drag-overlay)
|
|
|
|
|
(overlay-end mouse-drag-overlay)))
|
1994-07-04 00:49:37 +00:00
|
|
|
|
(let (last-command this-command)
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(push-mark (overlay-start mouse-drag-overlay) t t)
|
1993-11-03 00:50:06 +00:00
|
|
|
|
(goto-char (overlay-end mouse-drag-overlay))
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(copy-region-as-kill (point) (mark t)))
|
|
|
|
|
(goto-char (overlay-end mouse-drag-overlay))
|
|
|
|
|
(setq this-command 'mouse-set-point))))
|
1993-06-30 04:47:37 +00:00
|
|
|
|
(delete-overlay mouse-drag-overlay))))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
|
|
|
|
|
;; Commands to handle xterm-style multiple clicks.
|
1993-06-30 04:47:37 +00:00
|
|
|
|
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(defun mouse-skip-word (dir)
|
|
|
|
|
"Skip over word, over whitespace, or over identical punctuation.
|
|
|
|
|
If DIR is positive skip forward; if negative, skip backward."
|
|
|
|
|
(let* ((char (following-char))
|
|
|
|
|
(syntax (char-to-string (char-syntax char))))
|
|
|
|
|
(if (or (string= syntax "w") (string= syntax " "))
|
|
|
|
|
(if (< dir 0)
|
|
|
|
|
(skip-syntax-backward syntax)
|
|
|
|
|
(skip-syntax-forward syntax))
|
|
|
|
|
(if (< dir 0)
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(while (and (not (bobp)) (= (preceding-char) char))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(forward-char -1))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(while (and (not (eobp)) (= (following-char) char))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(forward-char 1))))))
|
|
|
|
|
|
|
|
|
|
;; Return a list of region bounds based on START and END according to MODE.
|
|
|
|
|
;; If MODE is 0 then set point to (min START END), mark to (max START END).
|
|
|
|
|
;; If MODE is 1 then set point to start of word at (min START END),
|
|
|
|
|
;; mark to end of word at (max START END).
|
|
|
|
|
;; If MODE is 2 then do the same for lines.
|
1993-09-20 17:36:49 +00:00
|
|
|
|
(defun mouse-start-end (start end mode)
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(if (> start end)
|
|
|
|
|
(let ((temp start))
|
|
|
|
|
(setq start end
|
|
|
|
|
end temp)))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(setq mode (mod mode 3))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(cond ((= mode 0)
|
|
|
|
|
(list start end))
|
|
|
|
|
((and (= mode 1)
|
|
|
|
|
(= start end)
|
1994-02-09 22:21:47 +00:00
|
|
|
|
(char-after start)
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(= (char-syntax (char-after start)) ?\())
|
1994-02-10 07:39:09 +00:00
|
|
|
|
(list start
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(forward-sexp 1)
|
|
|
|
|
(point))))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
((and (= mode 1)
|
|
|
|
|
(= start end)
|
1994-02-09 22:21:47 +00:00
|
|
|
|
(char-after start)
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(= (char-syntax (char-after start)) ?\)))
|
|
|
|
|
(list (save-excursion
|
|
|
|
|
(goto-char (1+ start))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(backward-sexp 1)
|
|
|
|
|
(point))
|
1993-09-17 21:26:18 +00:00
|
|
|
|
(1+ start)))
|
|
|
|
|
((= mode 1)
|
|
|
|
|
(list (save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(mouse-skip-word -1)
|
|
|
|
|
(point))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(mouse-skip-word 1)
|
|
|
|
|
(point))))
|
|
|
|
|
((= mode 2)
|
|
|
|
|
(list (save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(beginning-of-line 1)
|
|
|
|
|
(point))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(point))))))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
|
1993-06-13 04:18:43 +00:00
|
|
|
|
;; Subroutine: set the mark where CLICK happened,
|
|
|
|
|
;; but don't do anything else.
|
|
|
|
|
(defun mouse-set-mark-fast (click)
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1993-06-13 04:18:43 +00:00
|
|
|
|
(let ((posn (event-start click)))
|
|
|
|
|
(select-window (posn-window posn))
|
|
|
|
|
(if (numberp (posn-point posn))
|
|
|
|
|
(push-mark (posn-point posn) t t))))
|
|
|
|
|
|
|
|
|
|
;; Momentarily show where the mark is, if highlighting doesn't show it.
|
|
|
|
|
(defun mouse-show-mark ()
|
|
|
|
|
(or transient-mark-mode
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (mark t))
|
|
|
|
|
(sit-for 1))))
|
|
|
|
|
|
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."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e")
|
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)
|
1993-05-26 18:09:52 +00:00
|
|
|
|
(push-mark nil t t)
|
|
|
|
|
(or transient-mark-mode
|
|
|
|
|
(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]."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1994-03-11 04:13:50 +00:00
|
|
|
|
(let* ((posn (event-start click))
|
|
|
|
|
(click-posn (posn-point posn)))
|
|
|
|
|
(select-window (posn-window posn))
|
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.
|
1994-02-06 02:53:16 +00:00
|
|
|
|
Also move point to one end of the text thus inserted (normally the end).
|
|
|
|
|
Prefix arguments are interpreted as with \\[yank].
|
|
|
|
|
If `mouse-yank-at-point' is non-nil, insert at point
|
|
|
|
|
regardless of where you click."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e\nP")
|
1994-02-06 02:53:16 +00:00
|
|
|
|
(or mouse-yank-at-point (mouse-set-point click))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(setq this-command 'yank)
|
1992-06-10 01:34:51 +00:00
|
|
|
|
(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]."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e")
|
1993-06-13 04:18:43 +00:00
|
|
|
|
(mouse-set-mark-fast click)
|
1994-07-04 00:49:37 +00:00
|
|
|
|
(let (this-command last-command)
|
|
|
|
|
(kill-ring-save (point) (mark t)))
|
1993-06-13 04:18:43 +00:00
|
|
|
|
(mouse-show-mark))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1993-01-26 01:58:16 +00:00
|
|
|
|
;;; This function used to delete the text between point and the mouse
|
|
|
|
|
;;; whenever it was equal to the front of the kill ring, but some
|
|
|
|
|
;;; people found that confusing.
|
|
|
|
|
|
|
|
|
|
;;; A list (TEXT START END), describing the text and position of the last
|
|
|
|
|
;;; invocation of mouse-save-then-kill.
|
|
|
|
|
(defvar mouse-save-then-kill-posn nil)
|
|
|
|
|
|
1993-11-14 06:26:02 +00:00
|
|
|
|
(defun mouse-save-then-kill-delete-region (beg end)
|
1993-11-24 06:35:03 +00:00
|
|
|
|
;; We must make our own undo boundaries
|
|
|
|
|
;; because they happen automatically only for the current buffer.
|
|
|
|
|
(undo-boundary)
|
1993-11-15 09:56:05 +00:00
|
|
|
|
(if (or (= beg end) (eq buffer-undo-list t))
|
|
|
|
|
;; If we have no undo list in this buffer,
|
|
|
|
|
;; just delete.
|
|
|
|
|
(delete-region beg end)
|
|
|
|
|
;; Delete, but make the undo-list entry share with the kill ring.
|
|
|
|
|
;; First, delete just one char, so in case buffer is being modified
|
|
|
|
|
;; for the first time, the undo list records that fact.
|
1994-06-13 19:35:07 +00:00
|
|
|
|
(let (before-change-function after-change-function
|
|
|
|
|
before-change-functions after-change-functions)
|
|
|
|
|
(delete-region beg
|
|
|
|
|
(+ beg (if (> end beg) 1 -1))))
|
1993-11-15 09:56:05 +00:00
|
|
|
|
(let ((buffer-undo-list buffer-undo-list))
|
|
|
|
|
;; Undo that deletion--but don't change the undo list!
|
1994-06-13 19:35:07 +00:00
|
|
|
|
(let (before-change-function after-change-function
|
|
|
|
|
before-change-functions after-change-functions)
|
|
|
|
|
(primitive-undo 1 buffer-undo-list))
|
1993-11-15 09:56:05 +00:00
|
|
|
|
;; Now delete the rest of the specified region,
|
|
|
|
|
;; but don't record it.
|
|
|
|
|
(setq buffer-undo-list t)
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(if (/= (length (car kill-ring)) (- (max end beg) (min end beg)))
|
|
|
|
|
(error "Lossage in mouse-save-then-kill-delete-region"))
|
1993-11-15 09:56:05 +00:00
|
|
|
|
(delete-region beg end))
|
|
|
|
|
(let ((tail buffer-undo-list))
|
|
|
|
|
;; Search back in buffer-undo-list for the string
|
|
|
|
|
;; that came from deleting one character.
|
|
|
|
|
(while (and tail (not (stringp (car (car tail)))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
;; Replace it with an entry for the entire deleted text.
|
|
|
|
|
(and tail
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(setcar tail (cons (car kill-ring) (min beg end))))))
|
|
|
|
|
(undo-boundary))
|
1993-09-20 17:36:49 +00:00
|
|
|
|
|
1992-09-26 08:15:35 +00:00
|
|
|
|
(defun mouse-save-then-kill (click)
|
1993-01-13 01:31:45 +00:00
|
|
|
|
"Save text to point in kill ring; the second time, kill the text.
|
|
|
|
|
If the text between point and the mouse is the same as what's
|
|
|
|
|
at the front of the kill ring, this deletes the text.
|
|
|
|
|
Otherwise, it adds the text to the kill ring, like \\[kill-ring-save],
|
1993-09-20 17:36:49 +00:00
|
|
|
|
which prepares for a second click to delete the text.
|
|
|
|
|
|
|
|
|
|
If you have selected words or lines, this command extends the
|
|
|
|
|
selection through the word or line clicked on. If you do this
|
|
|
|
|
again in a different position, it extends the selection again.
|
|
|
|
|
If you do this twice in the same position, the selection is killed."
|
1992-09-26 08:15:35 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1993-06-13 04:18:43 +00:00
|
|
|
|
(let ((click-posn (posn-point (event-start click)))
|
|
|
|
|
;; Don't let a subsequent kill command append to this one:
|
|
|
|
|
;; prevent setting this-command to kill-region.
|
|
|
|
|
(this-command this-command))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(if (> (mod mouse-selection-click-count 3) 0)
|
1993-09-20 17:36:49 +00:00
|
|
|
|
(if (not (and (eq last-command 'mouse-save-then-kill)
|
|
|
|
|
(equal click-posn
|
|
|
|
|
(car (cdr-safe (cdr-safe mouse-save-then-kill-posn))))))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
;; Find both ends of the object selected by this click.
|
|
|
|
|
(let* ((range
|
|
|
|
|
(mouse-start-end click-posn click-posn
|
|
|
|
|
mouse-selection-click-count)))
|
|
|
|
|
;; Move whichever end is closer to the click.
|
|
|
|
|
;; That's what xterm does, and it seems reasonable.
|
|
|
|
|
(if (< (abs (- click-posn (mark t)))
|
|
|
|
|
(abs (- click-posn (point))))
|
|
|
|
|
(set-mark (car range))
|
|
|
|
|
(goto-char (nth 1 range)))
|
1993-09-20 17:36:49 +00:00
|
|
|
|
;; We have already put the old region in the kill ring.
|
|
|
|
|
;; Replace it with the extended region.
|
|
|
|
|
;; (It would be annoying to make a separate entry.)
|
|
|
|
|
(setcar kill-ring (buffer-substring (point) (mark t)))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(if interprogram-cut-function
|
|
|
|
|
(funcall interprogram-cut-function (car kill-ring)))
|
|
|
|
|
;; Arrange for a repeated mouse-3 to kill this region.
|
|
|
|
|
(setq mouse-save-then-kill-posn
|
|
|
|
|
(list (car kill-ring) (point) click-posn))
|
1993-09-20 17:36:49 +00:00
|
|
|
|
(mouse-show-mark))
|
|
|
|
|
;; If we click this button again without moving it,
|
|
|
|
|
;; that time kill.
|
1993-11-15 09:56:05 +00:00
|
|
|
|
(mouse-save-then-kill-delete-region (point) (mark))
|
|
|
|
|
(setq mouse-selection-click-count 0)
|
|
|
|
|
(setq mouse-save-then-kill-posn nil))
|
1993-09-20 17:36:49 +00:00
|
|
|
|
(if (and (eq last-command 'mouse-save-then-kill)
|
|
|
|
|
mouse-save-then-kill-posn
|
|
|
|
|
(eq (car mouse-save-then-kill-posn) (car kill-ring))
|
|
|
|
|
(equal (cdr mouse-save-then-kill-posn) (list (point) click-posn)))
|
|
|
|
|
;; If this is the second time we've called
|
|
|
|
|
;; mouse-save-then-kill, delete the text from the buffer.
|
1993-11-15 09:56:05 +00:00
|
|
|
|
(progn
|
|
|
|
|
(mouse-save-then-kill-delete-region (point) (mark))
|
|
|
|
|
;; After we kill, another click counts as "the first time".
|
|
|
|
|
(setq mouse-save-then-kill-posn nil))
|
|
|
|
|
(if (or (and (eq last-command 'mouse-save-then-kill)
|
|
|
|
|
mouse-save-then-kill-posn)
|
1993-11-03 00:50:06 +00:00
|
|
|
|
(and mark-active transient-mark-mode)
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(and (eq last-command 'mouse-drag-region)
|
|
|
|
|
(or mark-even-if-inactive
|
|
|
|
|
(not transient-mark-mode))))
|
|
|
|
|
;; We have a selection or suitable region, so adjust it.
|
|
|
|
|
(let* ((posn (event-start click))
|
|
|
|
|
(new (posn-point posn)))
|
|
|
|
|
(select-window (posn-window posn))
|
|
|
|
|
(if (numberp new)
|
|
|
|
|
(progn
|
|
|
|
|
;; Move whichever end of the region is closer to the click.
|
|
|
|
|
;; That is what xterm does, and it seems reasonable.
|
|
|
|
|
(if (< (abs (- new (point))) (abs (- new (mark t))))
|
|
|
|
|
(goto-char new)
|
|
|
|
|
(set-mark new))
|
|
|
|
|
(setq deactivate-mark nil)))
|
|
|
|
|
(setcar kill-ring (buffer-substring (point) (mark t)))
|
|
|
|
|
(if interprogram-cut-function
|
|
|
|
|
(funcall interprogram-cut-function (car kill-ring))))
|
|
|
|
|
;; We just have point, so set mark here.
|
|
|
|
|
(mouse-set-mark-fast click)
|
|
|
|
|
(kill-ring-save (point) (mark t))
|
|
|
|
|
(mouse-show-mark))
|
1993-09-20 17:36:49 +00:00
|
|
|
|
(setq mouse-save-then-kill-posn
|
|
|
|
|
(list (car kill-ring) (point) click-posn))))))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
|
|
|
|
|
(global-set-key [M-mouse-1] 'mouse-start-secondary)
|
|
|
|
|
(global-set-key [M-drag-mouse-1] 'mouse-set-secondary)
|
|
|
|
|
(global-set-key [M-down-mouse-1] 'mouse-drag-secondary)
|
|
|
|
|
(global-set-key [M-mouse-3] 'mouse-secondary-save-then-kill)
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(global-set-key [M-mouse-2] 'mouse-yank-secondary)
|
1993-06-17 18:17:32 +00:00
|
|
|
|
|
|
|
|
|
;; An overlay which records the current secondary selection
|
|
|
|
|
;; or else is deleted when there is no secondary selection.
|
|
|
|
|
;; May be nil.
|
|
|
|
|
(defvar mouse-secondary-overlay nil)
|
|
|
|
|
|
|
|
|
|
;; A marker which records the specified first end for a secondary selection.
|
|
|
|
|
;; May be nil.
|
|
|
|
|
(defvar mouse-secondary-start nil)
|
|
|
|
|
|
|
|
|
|
(defun mouse-start-secondary (click)
|
|
|
|
|
"Set one end of the secondary selection to the position clicked on.
|
|
|
|
|
Use \\[mouse-secondary-save-then-kill] to set the other end
|
|
|
|
|
and complete the secondary selection."
|
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1993-06-17 18:17:32 +00:00
|
|
|
|
(let ((posn (event-start click)))
|
1993-06-18 17:59:02 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer (posn-window posn)))
|
|
|
|
|
;; Cancel any preexisting secondary selection.
|
|
|
|
|
(if mouse-secondary-overlay
|
|
|
|
|
(delete-overlay mouse-secondary-overlay))
|
|
|
|
|
(if (numberp (posn-point posn))
|
|
|
|
|
(progn
|
|
|
|
|
(or mouse-secondary-start
|
|
|
|
|
(setq mouse-secondary-start (make-marker)))
|
|
|
|
|
(move-marker mouse-secondary-start (posn-point posn)))))))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
|
|
|
|
|
(defun mouse-set-secondary (click)
|
|
|
|
|
"Set the secondary selection to the text that the mouse is dragged over.
|
|
|
|
|
This must be bound to a mouse drag event."
|
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1993-06-17 18:17:32 +00:00
|
|
|
|
(let ((posn (event-start click))
|
|
|
|
|
beg
|
|
|
|
|
(end (event-end click)))
|
1993-06-18 17:59:02 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer (posn-window posn)))
|
|
|
|
|
(if (numberp (posn-point posn))
|
|
|
|
|
(setq beg (posn-point posn)))
|
|
|
|
|
(if mouse-secondary-overlay
|
|
|
|
|
(move-overlay mouse-secondary-overlay beg (posn-point end))
|
|
|
|
|
(setq mouse-secondary-overlay (make-overlay beg (posn-point end))))
|
|
|
|
|
(overlay-put mouse-secondary-overlay 'face 'secondary-selection))))
|
1992-09-26 08:15:35 +00:00
|
|
|
|
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(defun mouse-drag-secondary (start-event)
|
1993-06-17 18:17:32 +00:00
|
|
|
|
"Set the secondary selection to the text that the mouse is dragged over.
|
1993-09-27 01:02:43 +00:00
|
|
|
|
Highlight the drag area as you move the mouse.
|
1993-06-17 18:17:32 +00:00
|
|
|
|
This must be bound to a button-down mouse event."
|
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check start-event)
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(let* ((start-posn (event-start start-event))
|
|
|
|
|
(start-point (posn-point start-posn))
|
|
|
|
|
(start-window (posn-window start-posn))
|
|
|
|
|
(start-frame (window-frame start-window))
|
|
|
|
|
(bounds (window-edges start-window))
|
|
|
|
|
(top (nth 1 bounds))
|
|
|
|
|
(bottom (if (window-minibuffer-p start-window)
|
|
|
|
|
(nth 3 bounds)
|
|
|
|
|
;; Don't count the mode line.
|
|
|
|
|
(1- (nth 3 bounds))))
|
|
|
|
|
(click-count (1- (event-click-count start-event))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer start-window))
|
|
|
|
|
(setq mouse-selection-click-count click-count)
|
|
|
|
|
(or mouse-secondary-overlay
|
|
|
|
|
(setq mouse-secondary-overlay
|
|
|
|
|
(make-overlay (point) (point))))
|
1993-11-14 06:26:02 +00:00
|
|
|
|
(overlay-put mouse-secondary-overlay 'face 'secondary-selection)
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(if (> (mod click-count 3) 0)
|
1993-11-14 06:26:02 +00:00
|
|
|
|
;; Double or triple press: make an initial selection
|
|
|
|
|
;; of one word or line.
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(let ((range (mouse-start-end start-point start-point click-count)))
|
|
|
|
|
(set-marker mouse-secondary-start nil)
|
|
|
|
|
(move-overlay mouse-secondary-overlay 1 1
|
|
|
|
|
(window-buffer start-window))
|
|
|
|
|
(move-overlay mouse-secondary-overlay (car range) (nth 1 range)
|
|
|
|
|
(window-buffer start-window)))
|
1993-11-14 06:26:02 +00:00
|
|
|
|
;; Single-press: cancel any preexisting secondary selection.
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(or mouse-secondary-start
|
|
|
|
|
(setq mouse-secondary-start (make-marker)))
|
|
|
|
|
(set-marker mouse-secondary-start start-point)
|
|
|
|
|
(delete-overlay mouse-secondary-overlay))
|
|
|
|
|
(let (event end end-point)
|
|
|
|
|
(track-mouse
|
|
|
|
|
(while (progn
|
|
|
|
|
(setq event (read-event))
|
|
|
|
|
(or (mouse-movement-p event)
|
|
|
|
|
(eq (car-safe event) 'switch-frame)))
|
|
|
|
|
|
|
|
|
|
(if (eq (car-safe event) 'switch-frame)
|
|
|
|
|
nil
|
|
|
|
|
(setq end (event-end event)
|
|
|
|
|
end-point (posn-point end))
|
|
|
|
|
(cond
|
|
|
|
|
;; Are we moving within the original window?
|
|
|
|
|
((and (eq (posn-window end) start-window)
|
|
|
|
|
(integer-or-marker-p end-point))
|
|
|
|
|
(let ((range (mouse-start-end start-point end-point
|
|
|
|
|
click-count)))
|
1994-07-12 17:03:13 +00:00
|
|
|
|
(if (or (/= start-point end-point)
|
|
|
|
|
(null (marker-position mouse-secondary-start)))
|
|
|
|
|
(progn
|
|
|
|
|
(set-marker mouse-secondary-start nil)
|
|
|
|
|
(move-overlay mouse-secondary-overlay
|
|
|
|
|
(car range) (nth 1 range))))))
|
1994-05-20 08:46:20 +00:00
|
|
|
|
(t
|
|
|
|
|
(let ((mouse-row (cdr (cdr (mouse-position)))))
|
|
|
|
|
(cond
|
|
|
|
|
((null mouse-row))
|
|
|
|
|
((< mouse-row top)
|
1994-06-17 00:51:33 +00:00
|
|
|
|
(mouse-scroll-subr start-window (- mouse-row top)
|
|
|
|
|
mouse-secondary-overlay start-point))
|
1994-06-25 23:48:04 +00:00
|
|
|
|
((>= mouse-row bottom)
|
1994-06-17 00:51:33 +00:00
|
|
|
|
(mouse-scroll-subr start-window (1+ (- mouse-row bottom))
|
1994-05-20 08:46:20 +00:00
|
|
|
|
mouse-secondary-overlay start-point)))))))))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
|
1994-06-19 18:04:35 +00:00
|
|
|
|
(if (consp event)
|
|
|
|
|
;;; (eq (get (event-basic-type event) 'event-kind) 'mouse-click)
|
|
|
|
|
;;; (eq (posn-window (event-end event)) start-window)
|
|
|
|
|
;;; (numberp (posn-point (event-end event)))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(if (marker-position mouse-secondary-start)
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(delete-overlay mouse-secondary-overlay)
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(x-set-selection 'SECONDARY nil)
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(select-window start-window)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char mouse-secondary-start)
|
|
|
|
|
(sit-for 1)))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(x-set-selection
|
|
|
|
|
'SECONDARY
|
|
|
|
|
(buffer-substring (overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay)))))))))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(defun mouse-yank-secondary (click)
|
1994-02-06 02:53:16 +00:00
|
|
|
|
"Insert the secondary selection at the position clicked on.
|
|
|
|
|
Move point to the end of the inserted text.
|
|
|
|
|
If `mouse-yank-at-point' is non-nil, insert at point
|
|
|
|
|
regardless of where you click."
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(interactive "e")
|
1994-02-06 02:53:16 +00:00
|
|
|
|
(or mouse-yank-at-point (mouse-set-point click))
|
|
|
|
|
(insert (x-get-selection 'SECONDARY)))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
|
1993-12-23 03:33:34 +00:00
|
|
|
|
(defun mouse-kill-secondary ()
|
1993-11-24 06:35:03 +00:00
|
|
|
|
"Kill the text in the secondary selection.
|
|
|
|
|
This is intended more as a keyboard command than as a mouse command
|
|
|
|
|
but it can work as either one.
|
|
|
|
|
|
|
|
|
|
The current buffer (in case of keyboard use), or the buffer clicked on,
|
|
|
|
|
must be the one that the secondary selection is in. This requirement
|
|
|
|
|
is to prevent accidents."
|
1993-12-23 03:33:34 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let* ((keys (this-command-keys))
|
|
|
|
|
(click (elt keys (1- (length keys)))))
|
|
|
|
|
(or (eq (overlay-buffer mouse-secondary-overlay)
|
|
|
|
|
(if (listp click)
|
|
|
|
|
(window-buffer (posn-window (event-start click)))
|
|
|
|
|
(current-buffer)))
|
|
|
|
|
(error "Select or click on the buffer where the secondary selection is")))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (overlay-buffer mouse-secondary-overlay))
|
|
|
|
|
(kill-region (overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay)))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
(delete-overlay mouse-secondary-overlay)
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(x-set-selection 'SECONDARY nil)
|
1993-06-17 18:17:32 +00:00
|
|
|
|
(setq mouse-secondary-overlay nil))
|
|
|
|
|
|
|
|
|
|
(defun mouse-secondary-save-then-kill (click)
|
1993-09-27 01:02:43 +00:00
|
|
|
|
"Save text to point in kill ring; the second time, kill the text.
|
1994-05-04 00:38:14 +00:00
|
|
|
|
You must use this in a buffer where you have recently done \\[mouse-start-secondary].
|
|
|
|
|
If the text between where you did \\[mouse-start-secondary] and where
|
|
|
|
|
you use this command matches the text at the front of the kill ring,
|
|
|
|
|
this command deletes the text.
|
1993-06-17 18:17:32 +00:00
|
|
|
|
Otherwise, it adds the text to the kill ring, like \\[kill-ring-save],
|
1994-05-04 00:38:14 +00:00
|
|
|
|
which prepares for a second click with this command to delete the text.
|
1993-09-27 01:02:43 +00:00
|
|
|
|
|
1994-05-04 00:38:14 +00:00
|
|
|
|
If you have already made a secondary selection in that buffer,
|
|
|
|
|
this command extends or retracts the selection to where you click.
|
|
|
|
|
If you do this again in a different position, it extends or retracts
|
|
|
|
|
again. If you do this twice in the same position, it kills the selection."
|
1993-06-17 18:17:32 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check click)
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(let ((posn (event-start click))
|
|
|
|
|
(click-posn (posn-point (event-start click)))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
;; Don't let a subsequent kill command append to this one:
|
|
|
|
|
;; prevent setting this-command to kill-region.
|
|
|
|
|
(this-command this-command))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(or (eq (window-buffer (posn-window posn))
|
|
|
|
|
(or (and mouse-secondary-overlay
|
|
|
|
|
(overlay-buffer mouse-secondary-overlay))
|
|
|
|
|
(if mouse-secondary-start
|
|
|
|
|
(marker-buffer mouse-secondary-start))))
|
|
|
|
|
(error "Wrong buffer"))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer (posn-window posn)))
|
|
|
|
|
(if (> (mod mouse-selection-click-count 3) 0)
|
|
|
|
|
(if (not (and (eq last-command 'mouse-secondary-save-then-kill)
|
|
|
|
|
(equal click-posn
|
|
|
|
|
(car (cdr-safe (cdr-safe mouse-save-then-kill-posn))))))
|
|
|
|
|
;; Find both ends of the object selected by this click.
|
|
|
|
|
(let* ((range
|
|
|
|
|
(mouse-start-end click-posn click-posn
|
|
|
|
|
mouse-selection-click-count)))
|
|
|
|
|
;; Move whichever end is closer to the click.
|
|
|
|
|
;; That's what xterm does, and it seems reasonable.
|
|
|
|
|
(if (< (abs (- click-posn (overlay-start mouse-secondary-overlay)))
|
|
|
|
|
(abs (- click-posn (overlay-end mouse-secondary-overlay))))
|
|
|
|
|
(move-overlay mouse-secondary-overlay (car range)
|
|
|
|
|
(overlay-end mouse-secondary-overlay))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(move-overlay mouse-secondary-overlay
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
(nth 1 range)))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
;; We have already put the old region in the kill ring.
|
|
|
|
|
;; Replace it with the extended region.
|
|
|
|
|
;; (It would be annoying to make a separate entry.)
|
|
|
|
|
(setcar kill-ring (buffer-substring
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay)))
|
|
|
|
|
(if interprogram-cut-function
|
|
|
|
|
(funcall interprogram-cut-function (car kill-ring)))
|
|
|
|
|
;; Arrange for a repeated mouse-3 to kill this region.
|
|
|
|
|
(setq mouse-save-then-kill-posn
|
|
|
|
|
(list (car kill-ring) (point) click-posn)))
|
|
|
|
|
;; If we click this button again without moving it,
|
|
|
|
|
;; that time kill.
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(progn
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(mouse-save-then-kill-delete-region
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay))
|
|
|
|
|
(setq mouse-save-then-kill-posn nil)
|
|
|
|
|
(setq mouse-selection-click-count 0)
|
|
|
|
|
(delete-overlay mouse-secondary-overlay)))
|
|
|
|
|
(if (and (eq last-command 'mouse-secondary-save-then-kill)
|
|
|
|
|
mouse-save-then-kill-posn
|
|
|
|
|
(eq (car mouse-save-then-kill-posn) (car kill-ring))
|
|
|
|
|
(equal (cdr mouse-save-then-kill-posn) (list (point) click-posn)))
|
|
|
|
|
;; If this is the second time we've called
|
|
|
|
|
;; mouse-secondary-save-then-kill, delete the text from the buffer.
|
|
|
|
|
(progn
|
|
|
|
|
(mouse-save-then-kill-delete-region
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay))
|
|
|
|
|
(setq mouse-save-then-kill-posn nil)
|
|
|
|
|
(delete-overlay mouse-secondary-overlay))
|
|
|
|
|
(if (overlay-start mouse-secondary-overlay)
|
|
|
|
|
;; We have a selection, so adjust it.
|
|
|
|
|
(progn
|
|
|
|
|
(if (numberp click-posn)
|
|
|
|
|
(progn
|
|
|
|
|
;; Move whichever end of the region is closer to the click.
|
|
|
|
|
;; That is what xterm does, and it seems reasonable.
|
|
|
|
|
(if (< (abs (- click-posn (overlay-start mouse-secondary-overlay)))
|
|
|
|
|
(abs (- click-posn (overlay-end mouse-secondary-overlay))))
|
|
|
|
|
(move-overlay mouse-secondary-overlay click-posn
|
|
|
|
|
(overlay-end mouse-secondary-overlay))
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(move-overlay mouse-secondary-overlay
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
click-posn))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(setq deactivate-mark nil)))
|
1994-07-12 17:03:13 +00:00
|
|
|
|
(if (eq last-command 'mouse-secondary-save-then-kill)
|
|
|
|
|
(progn
|
|
|
|
|
;; If the front of the kill ring comes from
|
|
|
|
|
;; an immediately previous use of this command,
|
|
|
|
|
;; replace it with the extended region.
|
|
|
|
|
;; (It would be annoying to make a separate entry.)
|
|
|
|
|
(setcar kill-ring
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay)))
|
|
|
|
|
(if interprogram-cut-function
|
|
|
|
|
(funcall interprogram-cut-function (car kill-ring))))
|
|
|
|
|
(copy-region-as-kill (overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay))))
|
1993-11-24 06:35:03 +00:00
|
|
|
|
(if mouse-secondary-start
|
|
|
|
|
;; All we have is one end of a selection,
|
|
|
|
|
;; so put the other end here.
|
|
|
|
|
(let ((start (+ 0 mouse-secondary-start)))
|
|
|
|
|
(kill-ring-save start click-posn)
|
|
|
|
|
(if mouse-secondary-overlay
|
|
|
|
|
(move-overlay mouse-secondary-overlay start click-posn)
|
|
|
|
|
(setq mouse-secondary-overlay (make-overlay start click-posn)))
|
|
|
|
|
(overlay-put mouse-secondary-overlay 'face 'secondary-selection))))
|
|
|
|
|
(setq mouse-save-then-kill-posn
|
|
|
|
|
(list (car kill-ring) (point) click-posn))))
|
|
|
|
|
(x-set-selection 'SECONDARY
|
|
|
|
|
(if (overlay-buffer mouse-secondary-overlay)
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(overlay-start mouse-secondary-overlay)
|
|
|
|
|
(overlay-end mouse-secondary-overlay)))))))
|
1993-06-17 18:17:32 +00:00
|
|
|
|
|
1992-08-31 05:06:54 +00:00
|
|
|
|
(defun mouse-buffer-menu (event)
|
1992-12-29 21:06:51 +00:00
|
|
|
|
"Pop up a menu of buffers for selection with the mouse.
|
|
|
|
|
This switches buffers in the window that you clicked on,
|
|
|
|
|
and selects that window."
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(interactive "e")
|
1994-03-09 04:00:12 +00:00
|
|
|
|
(mouse-minibuffer-check event)
|
1992-08-31 05:06:54 +00:00
|
|
|
|
(let ((menu
|
|
|
|
|
(list "Buffer Menu"
|
|
|
|
|
(cons "Select Buffer"
|
|
|
|
|
(let ((tail (buffer-list))
|
1993-06-25 22:33:57 +00:00
|
|
|
|
(maxbuf 0)
|
1992-08-31 05:06:54 +00:00
|
|
|
|
head)
|
1993-06-25 22:33:57 +00:00
|
|
|
|
(while tail
|
|
|
|
|
(or (eq ?\ (aref (buffer-name (car tail)) 0))
|
|
|
|
|
(setq maxbuf
|
|
|
|
|
(max maxbuf
|
|
|
|
|
(length (buffer-name (car tail))))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(setq tail (buffer-list))
|
1992-08-31 05:06:54 +00:00
|
|
|
|
(while tail
|
|
|
|
|
(let ((elt (car tail)))
|
|
|
|
|
(if (not (string-match "^ "
|
|
|
|
|
(buffer-name elt)))
|
|
|
|
|
(setq head (cons
|
|
|
|
|
(cons
|
|
|
|
|
(format
|
1993-06-25 22:33:57 +00:00
|
|
|
|
(format "%%%ds %%s%%s %%s"
|
|
|
|
|
maxbuf)
|
1992-08-31 05:06:54 +00:00
|
|
|
|
(buffer-name elt)
|
1993-06-25 22:33:57 +00:00
|
|
|
|
(if (buffer-modified-p elt)
|
|
|
|
|
"*" " ")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer elt)
|
|
|
|
|
(if buffer-read-only "%" " "))
|
1992-08-31 05:06:54 +00:00
|
|
|
|
(or (buffer-file-name elt) ""))
|
|
|
|
|
elt)
|
|
|
|
|
head))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(reverse head))))))
|
1992-12-29 21:06:51 +00:00
|
|
|
|
(let ((buf (x-popup-menu event menu))
|
|
|
|
|
(window (posn-window (event-start event))))
|
|
|
|
|
(if buf
|
|
|
|
|
(progn
|
1993-06-01 22:19:16 +00:00
|
|
|
|
(or (framep window) (select-window window))
|
1992-12-29 21:06:51 +00:00
|
|
|
|
(switch-to-buffer buf))))))
|
1990-06-19 20:28:34 +00:00
|
|
|
|
|
1993-03-02 07:29:05 +00:00
|
|
|
|
;;; These need to be rewritten for the new scroll bar implementation.
|
1993-01-26 01:58:16 +00:00
|
|
|
|
|
|
|
|
|
;;;!! ;; Commands for the scroll bar.
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-down (click)
|
|
|
|
|
;;;!! (interactive "@e")
|
|
|
|
|
;;;!! (scroll-down (1+ (cdr (mouse-coords click)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-up (click)
|
|
|
|
|
;;;!! (interactive "@e")
|
|
|
|
|
;;;!! (scroll-up (1+ (cdr (mouse-coords click)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-down-full ()
|
|
|
|
|
;;;!! (interactive "@")
|
|
|
|
|
;;;!! (scroll-down nil))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-up-full ()
|
|
|
|
|
;;;!! (interactive "@")
|
|
|
|
|
;;;!! (scroll-up nil))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-move-cursor (click)
|
|
|
|
|
;;;!! (interactive "@e")
|
|
|
|
|
;;;!! (move-to-window-line (1+ (cdr (mouse-coords click)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (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 (click)
|
|
|
|
|
;;;!! (interactive "@e")
|
|
|
|
|
;;;!! (scroll-left (1+ (car (mouse-coords click)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-right (click)
|
|
|
|
|
;;;!! (interactive "@e")
|
|
|
|
|
;;;!! (scroll-right (1+ (car (mouse-coords click)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-left-full ()
|
|
|
|
|
;;;!! (interactive "@")
|
|
|
|
|
;;;!! (scroll-left nil))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-right-full ()
|
|
|
|
|
;;;!! (interactive "@")
|
|
|
|
|
;;;!! (scroll-right nil))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (defun mouse-scroll-move-cursor-horizontally (click)
|
|
|
|
|
;;;!! (interactive "@e")
|
|
|
|
|
;;;!! (move-to-column (1+ (car (mouse-coords click)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (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)))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [scroll-bar mouse-1] 'mouse-scroll-up)
|
|
|
|
|
;;;!! (global-set-key [scroll-bar mouse-2] 'mouse-scroll-absolute)
|
|
|
|
|
;;;!! (global-set-key [scroll-bar mouse-3] 'mouse-scroll-down)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [vertical-slider mouse-1] 'mouse-scroll-move-cursor)
|
|
|
|
|
;;;!! (global-set-key [vertical-slider mouse-2] 'mouse-scroll-move-cursor)
|
|
|
|
|
;;;!! (global-set-key [vertical-slider mouse-3] 'mouse-scroll-move-cursor)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [thumbup mouse-1] 'mouse-scroll-up-full)
|
|
|
|
|
;;;!! (global-set-key [thumbup mouse-2] 'mouse-scroll-up-full)
|
|
|
|
|
;;;!! (global-set-key [thumbup mouse-3] 'mouse-scroll-up-full)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [thumbdown mouse-1] 'mouse-scroll-down-full)
|
|
|
|
|
;;;!! (global-set-key [thumbdown mouse-2] 'mouse-scroll-down-full)
|
|
|
|
|
;;;!! (global-set-key [thumbdown mouse-3] 'mouse-scroll-down-full)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [horizontal-scroll-bar mouse-1] 'mouse-scroll-left)
|
|
|
|
|
;;;!! (global-set-key [horizontal-scroll-bar mouse-2]
|
|
|
|
|
;;;!! 'mouse-scroll-absolute-horizontally)
|
|
|
|
|
;;;!! (global-set-key [horizontal-scroll-bar mouse-3] 'mouse-scroll-right)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [horizontal-slider mouse-1]
|
|
|
|
|
;;;!! 'mouse-scroll-move-cursor-horizontally)
|
|
|
|
|
;;;!! (global-set-key [horizontal-slider mouse-2]
|
|
|
|
|
;;;!! 'mouse-scroll-move-cursor-horizontally)
|
|
|
|
|
;;;!! (global-set-key [horizontal-slider mouse-3]
|
|
|
|
|
;;;!! 'mouse-scroll-move-cursor-horizontally)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [thumbleft mouse-1] 'mouse-scroll-left-full)
|
|
|
|
|
;;;!! (global-set-key [thumbleft mouse-2] 'mouse-scroll-left-full)
|
|
|
|
|
;;;!! (global-set-key [thumbleft mouse-3] 'mouse-scroll-left-full)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [thumbright mouse-1] 'mouse-scroll-right-full)
|
|
|
|
|
;;;!! (global-set-key [thumbright mouse-2] 'mouse-scroll-right-full)
|
|
|
|
|
;;;!! (global-set-key [thumbright mouse-3] 'mouse-scroll-right-full)
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (global-set-key [horizontal-scroll-bar S-mouse-2]
|
|
|
|
|
;;;!! 'mouse-split-window-horizontally)
|
|
|
|
|
;;;!! (global-set-key [mode-line S-mouse-2]
|
|
|
|
|
;;;!! 'mouse-split-window-horizontally)
|
|
|
|
|
;;;!! (global-set-key [vertical-scroll-bar S-mouse-2]
|
|
|
|
|
;;;!! 'mouse-split-window)
|
1992-08-31 08:32:48 +00:00
|
|
|
|
|
1993-01-26 01:58:16 +00:00
|
|
|
|
;;;!! ;;;;
|
|
|
|
|
;;;!! ;;;; Here are experimental things being tested. Mouse events
|
|
|
|
|
;;;!! ;;;; are of the form:
|
|
|
|
|
;;;!! ;;;; ((x y) window screen-part key-sequence timestamp)
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;;;;
|
|
|
|
|
;;;!! ;;;; Dynamically track mouse coordinates
|
|
|
|
|
;;;!! ;;;;
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;;(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)))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;; Dynamically put a box around the line indicated by point
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;;(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))))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;; (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))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;; 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)))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;; (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))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;
|
1993-03-02 07:29:05 +00:00
|
|
|
|
;;;!! ;; This scrolls while button is depressed. Use preferable in scroll bar.
|
1993-01-26 01:58:16 +00:00
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! (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))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;; (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)))
|
|
|
|
|
;;;!!
|
|
|
|
|
;;;!! ;;
|
|
|
|
|
;;;!! ;; 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))))))
|
1992-09-12 01:37:46 +00:00
|
|
|
|
|
1993-07-13 21:33:17 +00:00
|
|
|
|
;; Choose a completion with the mouse.
|
|
|
|
|
|
|
|
|
|
(defun mouse-choose-completion (event)
|
1993-07-31 05:31:58 +00:00
|
|
|
|
"Click on an alternative in the `*Completions*' buffer to choose it."
|
1993-07-13 21:33:17 +00:00
|
|
|
|
(interactive "e")
|
1993-09-27 01:02:43 +00:00
|
|
|
|
(let ((buffer (window-buffer))
|
1994-08-07 18:09:18 +00:00
|
|
|
|
choice
|
|
|
|
|
base-size)
|
1993-07-13 21:33:17 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer (posn-window (event-start event))))
|
1994-03-02 23:26:06 +00:00
|
|
|
|
(if completion-reference-buffer
|
|
|
|
|
(setq buffer completion-reference-buffer))
|
1994-08-07 18:09:18 +00:00
|
|
|
|
(setq base-size completion-base-size)
|
1993-07-13 21:33:17 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (posn-point (event-start event)))
|
1994-05-20 22:27:04 +00:00
|
|
|
|
(let (beg end)
|
1994-07-11 21:25:52 +00:00
|
|
|
|
(if (and (not (eobp)) (get-text-property (point) 'mouse-face))
|
|
|
|
|
(setq end (point) beg (1+ (point))))
|
|
|
|
|
(if (null beg)
|
|
|
|
|
(error "No completion here"))
|
|
|
|
|
(setq beg (previous-single-property-change beg 'mouse-face))
|
1994-07-29 21:42:41 +00:00
|
|
|
|
(setq end (or (next-single-property-change end 'mouse-face)
|
|
|
|
|
(point-max)))
|
1994-05-20 22:27:04 +00:00
|
|
|
|
(setq choice (buffer-substring beg end)))))
|
1994-03-07 03:37:55 +00:00
|
|
|
|
(let ((owindow (selected-window)))
|
|
|
|
|
(select-window (posn-window (event-start event)))
|
1994-06-05 12:06:23 +00:00
|
|
|
|
(if (and (one-window-p t 'selected-frame)
|
|
|
|
|
(window-dedicated-p (selected-window)))
|
|
|
|
|
;; This is a special buffer's frame
|
|
|
|
|
(iconify-frame (selected-frame))
|
|
|
|
|
(or (window-dedicated-p (selected-window))
|
|
|
|
|
(bury-buffer)))
|
1994-03-07 03:37:55 +00:00
|
|
|
|
(select-window owindow))
|
1994-08-07 18:09:18 +00:00
|
|
|
|
(choose-completion-string choice buffer base-size)))
|
1993-07-13 21:33:17 +00:00
|
|
|
|
|
1992-09-12 01:37:46 +00:00
|
|
|
|
;; Font selection.
|
|
|
|
|
|
1993-07-26 20:04:19 +00:00
|
|
|
|
(defun font-menu-add-default ()
|
|
|
|
|
(let* ((default (cdr (assq 'font (frame-parameters (selected-frame)))))
|
|
|
|
|
(font-alist x-fixed-font-alist)
|
1993-08-11 19:22:35 +00:00
|
|
|
|
(elt (or (assoc "Misc" font-alist) (nth 1 font-alist))))
|
1993-07-26 20:04:19 +00:00
|
|
|
|
(if (assoc "Default" elt)
|
|
|
|
|
(delete (assoc "Default" elt) elt))
|
|
|
|
|
(setcdr elt
|
1993-08-11 19:20:22 +00:00
|
|
|
|
(cons (list "Default"
|
1993-07-26 20:04:19 +00:00
|
|
|
|
(cdr (assq 'font (frame-parameters (selected-frame)))))
|
|
|
|
|
(cdr elt)))))
|
|
|
|
|
|
1992-09-12 01:37:46 +00:00
|
|
|
|
(defvar x-fixed-font-alist
|
|
|
|
|
'("Font menu"
|
|
|
|
|
("Misc"
|
1994-08-05 19:31:42 +00:00
|
|
|
|
;; For these, we specify the pixel height and width.
|
|
|
|
|
("fixed" "fixed")
|
|
|
|
|
("6x10" "-misc-fixed-medium-r-normal--10-*-*-*-c-60-iso8859-1" "6x10")
|
|
|
|
|
("6x12"
|
|
|
|
|
"-misc-fixed-medium-r-semicondensed--12-*-*-*-c-60-iso8859-1" "6x12")
|
|
|
|
|
("6x13"
|
|
|
|
|
"-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" "6x13")
|
|
|
|
|
("7x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-70-iso8859-1" "7x13")
|
|
|
|
|
("7x14" "-misc-fixed-medium-r-normal--14-*-*-*-c-70-iso8859-1" "7x14")
|
|
|
|
|
("8x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-80-iso8859-1" "8x13")
|
|
|
|
|
("9x15" "-misc-fixed-medium-r-normal--15-*-*-*-c-90-iso8859-1" "9x15")
|
|
|
|
|
("10x20" "-misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1" "10x20")
|
|
|
|
|
("11x18" "-misc-fixed-medium-r-normal--18-*-*-*-c-110-iso8859-1" "11x18")
|
|
|
|
|
("12x24" "-misc-fixed-medium-r-normal--24-*-*-*-c-120-iso8859-1" "12x24")
|
1993-07-25 20:46:18 +00:00
|
|
|
|
("")
|
1994-08-08 10:16:47 +00:00
|
|
|
|
("clean 5x8"
|
|
|
|
|
"-schumacher-clean-medium-r-normal--8-*-*-*-c-50-iso8859-1")
|
|
|
|
|
("clean 6x8"
|
|
|
|
|
"-schumacher-clean-medium-r-normal--8-*-*-*-c-60-iso8859-1")
|
1994-08-05 19:31:42 +00:00
|
|
|
|
("clean 8x8"
|
|
|
|
|
"-schumacher-clean-medium-r-normal--8-*-*-*-c-80-iso8859-1")
|
|
|
|
|
("clean 8x10"
|
|
|
|
|
"-schumacher-clean-medium-r-normal--10-*-*-*-c-80-iso8859-1")
|
|
|
|
|
("clean 8x14"
|
|
|
|
|
"-schumacher-clean-medium-r-normal--14-*-*-*-c-80-iso8859-1")
|
|
|
|
|
("clean 8x16"
|
|
|
|
|
"-schumacher-clean-medium-r-normal--16-*-*-*-c-80-iso8859-1")
|
1993-07-25 20:46:18 +00:00
|
|
|
|
("")
|
1994-08-05 19:31:42 +00:00
|
|
|
|
("sony 8x16" "-sony-fixed-medium-r-normal--16-*-*-*-c-80-iso8859-1"))
|
1992-09-12 01:37:46 +00:00
|
|
|
|
;;; We don't seem to have these; who knows what they are.
|
|
|
|
|
;;; ("fg-18" "fg-18")
|
|
|
|
|
;;; ("fg-25" "fg-25")
|
|
|
|
|
;;; ("lucidasanstypewriter-12" "lucidasanstypewriter-12")
|
|
|
|
|
;;; ("lucidasanstypewriter-bold-14" "lucidasanstypewriter-bold-14")
|
|
|
|
|
;;; ("lucidasanstypewriter-bold-24" "lucidasanstypewriter-bold-24")
|
|
|
|
|
;;; ("lucidatypewriter-bold-r-24" "-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1")
|
|
|
|
|
;;; ("fixed-medium-20" "-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*")
|
|
|
|
|
("Courier"
|
1994-08-05 19:31:42 +00:00
|
|
|
|
;; For these, we specify the point height.
|
1993-05-29 04:34:00 +00:00
|
|
|
|
("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1")
|
|
|
|
|
("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1")
|
|
|
|
|
("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1")
|
|
|
|
|
("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1")
|
|
|
|
|
("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1")
|
|
|
|
|
("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1")
|
|
|
|
|
("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1")
|
|
|
|
|
("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1")
|
|
|
|
|
("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1")
|
|
|
|
|
("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1")
|
|
|
|
|
("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1")
|
|
|
|
|
("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1")
|
|
|
|
|
("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1")
|
|
|
|
|
("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1")
|
|
|
|
|
("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1")
|
|
|
|
|
("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1")
|
|
|
|
|
("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1")
|
|
|
|
|
("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1")
|
|
|
|
|
("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1")
|
|
|
|
|
("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1")
|
|
|
|
|
("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1")
|
|
|
|
|
("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1")
|
|
|
|
|
("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1")
|
|
|
|
|
("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1"))
|
1992-09-12 01:37:46 +00:00
|
|
|
|
)
|
|
|
|
|
"X fonts suitable for use in Emacs.")
|
|
|
|
|
|
1994-04-14 02:55:13 +00:00
|
|
|
|
(defun mouse-set-font (&rest fonts)
|
1992-09-12 01:37:46 +00:00
|
|
|
|
"Select an emacs font from a list of known good fonts"
|
|
|
|
|
(interactive
|
|
|
|
|
(x-popup-menu last-nonmenu-event x-fixed-font-alist))
|
1994-04-16 04:07:43 +00:00
|
|
|
|
(if fonts
|
|
|
|
|
(let (font)
|
|
|
|
|
(while fonts
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(progn
|
1994-04-22 08:49:57 +00:00
|
|
|
|
(set-default-font (car fonts))
|
1994-04-16 04:07:43 +00:00
|
|
|
|
(setq font (car fonts))
|
|
|
|
|
(setq fonts nil))
|
1994-04-22 08:49:57 +00:00
|
|
|
|
(error
|
|
|
|
|
(setq fonts (cdr fonts)))))
|
1994-04-16 04:07:43 +00:00
|
|
|
|
(if (null font)
|
1994-04-22 08:49:57 +00:00
|
|
|
|
(error "Font not found")))))
|
1991-12-20 07:15:37 +00:00
|
|
|
|
|
|
|
|
|
;;; Bindings for mouse commands.
|
|
|
|
|
|
1993-05-15 19:52:01 +00:00
|
|
|
|
(define-key global-map [down-mouse-1] 'mouse-drag-region)
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(global-set-key [mouse-1] 'mouse-set-point)
|
|
|
|
|
(global-set-key [drag-mouse-1] 'mouse-set-region)
|
1993-05-15 19:52:01 +00:00
|
|
|
|
|
1993-09-17 21:26:18 +00:00
|
|
|
|
;; These are tested for in mouse-drag-region.
|
|
|
|
|
(global-set-key [double-mouse-1] 'mouse-set-point)
|
|
|
|
|
(global-set-key [triple-mouse-1] 'mouse-set-point)
|
|
|
|
|
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(global-set-key [mouse-2] 'mouse-yank-at-click)
|
|
|
|
|
(global-set-key [mouse-3] 'mouse-save-then-kill)
|
1992-08-31 05:06:54 +00:00
|
|
|
|
|
1993-01-26 01:58:16 +00:00
|
|
|
|
;; By binding these to down-going events, we let the user use the up-going
|
|
|
|
|
;; event to make the selection, saving a click.
|
|
|
|
|
(global-set-key [C-down-mouse-1] 'mouse-buffer-menu)
|
|
|
|
|
(global-set-key [C-down-mouse-3] 'mouse-set-font)
|
1992-09-12 01:37:46 +00:00
|
|
|
|
|
1992-08-31 05:06:54 +00:00
|
|
|
|
;; Replaced with dragging mouse-1
|
|
|
|
|
;; (global-set-key [S-mouse-1] 'mouse-set-mark)
|
1992-09-26 08:15:35 +00:00
|
|
|
|
|
1994-02-25 19:35:58 +00:00
|
|
|
|
(global-set-key [mode-line mouse-1] 'mouse-select-window)
|
|
|
|
|
(global-set-key [mode-line mouse-2] 'mouse-delete-other-windows)
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(global-set-key [mode-line mouse-3] 'mouse-delete-window)
|
1994-02-25 19:35:58 +00:00
|
|
|
|
(global-set-key [mode-line C-mouse-2] 'mouse-split-window-horizontally)
|
1994-07-07 18:39:02 +00:00
|
|
|
|
(global-set-key [vertical-scroll-bar C-mouse-2] 'mouse-split-window-vertically)
|
1994-07-16 22:37:18 +00:00
|
|
|
|
(global-set-key [vertical-line C-mouse-2] 'mouse-split-window-vertically)
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
|
|
|
|
(provide 'mouse)
|
|
|
|
|
|
1992-05-30 22:12:04 +00:00
|
|
|
|
;;; mouse.el ends here
|