2002-11-28 23:03:30 +00:00
|
|
|
;;; mwheel.el --- Wheel mouse support
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2008-06-12 03:50:31 +00:00
|
|
|
;; Copyright (C) 1998, 2000, 2001, 2002, 2002, 2004, 2005, 2006, 2007,
|
2009-01-05 03:18:22 +00:00
|
|
|
;; 2008, 2009 Free Software Foundation, Inc.
|
1999-11-10 21:54:54 +00:00
|
|
|
;; Maintainer: William M. Perry <wmperry@gnu.org>
|
|
|
|
;; Keywords: mouse
|
|
|
|
|
1999-11-11 14:01:46 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1999-11-11 14:01:46 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
1999-11-11 14:01:46 +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.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This code will enable the use of the infamous 'wheel' on the new
|
|
|
|
;; crop of mice. Under XFree86 and the XSuSE X Servers, the wheel
|
|
|
|
;; events are sent as button4/button5 events.
|
|
|
|
|
|
|
|
;; I for one would prefer some way of converting the button4/button5
|
|
|
|
;; events into different event types, like 'mwheel-up' or
|
|
|
|
;; 'mwheel-down', but I cannot find a way to do this very easily (or
|
|
|
|
;; portably), so for now I just live with it.
|
|
|
|
|
|
|
|
;; To enable this code, simply put this at the top of your .emacs
|
|
|
|
;; file:
|
|
|
|
;;
|
2003-05-27 23:09:40 +00:00
|
|
|
;; (mouse-wheel-mode 1)
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'custom)
|
2002-11-28 23:03:30 +00:00
|
|
|
(require 'timer)
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2009-09-12 19:03:49 +00:00
|
|
|
(defvar mouse-wheel-mode)
|
2009-09-12 09:40:15 +00:00
|
|
|
|
2001-07-27 08:41:35 +00:00
|
|
|
;; Setter function for mouse-button user-options. Switch Mouse Wheel
|
|
|
|
;; mode off and on again so that the old button is unbound and
|
|
|
|
;; new button is bound to mwheel-scroll.
|
|
|
|
|
|
|
|
(defun mouse-wheel-change-button (var button)
|
2009-09-12 04:38:03 +00:00
|
|
|
(set-default var button)
|
|
|
|
;; Sync the bindings.
|
2009-09-12 19:03:49 +00:00
|
|
|
(when (bound-and-true-p mouse-wheel-mode) (mouse-wheel-mode 1)))
|
2001-07-27 08:41:35 +00:00
|
|
|
|
2003-02-05 23:12:01 +00:00
|
|
|
(defvar mouse-wheel-down-button 4)
|
|
|
|
(make-obsolete-variable 'mouse-wheel-down-button
|
2008-04-18 10:30:38 +00:00
|
|
|
'mouse-wheel-down-event
|
|
|
|
"22.1")
|
2002-06-27 21:46:45 +00:00
|
|
|
(defcustom mouse-wheel-down-event
|
2009-08-16 05:49:26 +00:00
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
2003-06-01 22:14:30 +00:00
|
|
|
'wheel-up
|
2009-08-16 05:49:26 +00:00
|
|
|
(intern (format "mouse-%s" mouse-wheel-down-button)))
|
2002-06-27 21:46:45 +00:00
|
|
|
"Event used for scrolling down."
|
2001-07-27 08:41:35 +00:00
|
|
|
:group 'mouse
|
2002-06-27 21:46:45 +00:00
|
|
|
:type 'symbol
|
2001-07-27 08:41:35 +00:00
|
|
|
:set 'mouse-wheel-change-button)
|
|
|
|
|
2003-02-05 23:12:01 +00:00
|
|
|
(defvar mouse-wheel-up-button 5)
|
|
|
|
(make-obsolete-variable 'mouse-wheel-up-button
|
2008-04-18 10:30:38 +00:00
|
|
|
'mouse-wheel-up-event
|
|
|
|
"22.1")
|
2002-06-27 21:46:45 +00:00
|
|
|
(defcustom mouse-wheel-up-event
|
2009-08-16 05:49:26 +00:00
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
2003-06-01 22:14:30 +00:00
|
|
|
'wheel-down
|
2009-08-16 05:49:26 +00:00
|
|
|
(intern (format "mouse-%s" mouse-wheel-up-button)))
|
2006-02-11 11:32:31 +00:00
|
|
|
"Event used for scrolling up."
|
2001-07-27 08:41:35 +00:00
|
|
|
:group 'mouse
|
2002-06-27 21:46:45 +00:00
|
|
|
:type 'symbol
|
2001-07-27 08:41:35 +00:00
|
|
|
:set 'mouse-wheel-change-button)
|
|
|
|
|
2003-02-05 23:12:01 +00:00
|
|
|
(defvar mouse-wheel-click-button 2)
|
|
|
|
(make-obsolete-variable 'mouse-wheel-click-button
|
2008-04-18 10:30:38 +00:00
|
|
|
'mouse-wheel-click-event
|
|
|
|
"22.1")
|
2002-11-28 23:03:30 +00:00
|
|
|
(defcustom mouse-wheel-click-event
|
2009-08-16 05:49:26 +00:00
|
|
|
(intern (format "mouse-%s" mouse-wheel-click-button))
|
2002-11-28 23:03:30 +00:00
|
|
|
"Event that should be temporarily inhibited after mouse scrolling.
|
|
|
|
The mouse wheel is typically on the mouse-2 button, so it may easily
|
2006-02-14 11:35:48 +00:00
|
|
|
happen that text is accidentally yanked into the buffer when
|
2002-11-28 23:03:30 +00:00
|
|
|
scrolling with the mouse wheel. To prevent that, this variable can be
|
|
|
|
set to the event sent when clicking on the mouse wheel button."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'symbol
|
|
|
|
:set 'mouse-wheel-change-button)
|
|
|
|
|
|
|
|
(defcustom mouse-wheel-inhibit-click-time 0.35
|
|
|
|
"Time in seconds to inhibit clicking on mouse wheel button after scroll."
|
|
|
|
:group 'mouse
|
2002-11-29 18:02:52 +00:00
|
|
|
:type 'number)
|
2002-11-28 23:03:30 +00:00
|
|
|
|
2002-06-24 15:50:38 +00:00
|
|
|
(defcustom mouse-wheel-scroll-amount '(5 ((shift) . 1) ((control) . nil))
|
1999-11-10 21:54:54 +00:00
|
|
|
"Amount to scroll windows by when spinning the mouse wheel.
|
2002-06-24 23:59:22 +00:00
|
|
|
This is an alist mapping the modifier key to the amount to scroll when
|
|
|
|
the wheel is moved with the modifier key depressed.
|
|
|
|
Elements of the list have the form (MODIFIERS . AMOUNT) or just AMOUNT if
|
|
|
|
MODIFIERS is nil.
|
|
|
|
|
2003-05-06 17:54:12 +00:00
|
|
|
AMOUNT should be the number of lines to scroll, or nil for near full
|
2002-06-24 23:59:22 +00:00
|
|
|
screen. It can also be a floating point number, specifying the fraction of
|
|
|
|
a full screen to scroll. A near full screen is `next-screen-context-lines'
|
|
|
|
less than a full screen."
|
1999-11-10 21:54:54 +00:00
|
|
|
:group 'mouse
|
2002-06-24 15:50:38 +00:00
|
|
|
:type '(cons
|
|
|
|
(choice :tag "Normal"
|
1999-11-10 21:54:54 +00:00
|
|
|
(const :tag "Full screen" :value nil)
|
2002-06-24 15:50:38 +00:00
|
|
|
(integer :tag "Specific # of lines")
|
2002-12-09 19:43:54 +00:00
|
|
|
(float :tag "Fraction of window")
|
2002-06-24 23:59:22 +00:00
|
|
|
(cons
|
|
|
|
(repeat (choice :tag "modifier"
|
|
|
|
(const alt) (const control) (const hyper)
|
|
|
|
(const meta) (const shift) (const super)))
|
|
|
|
(choice :tag "scroll amount"
|
|
|
|
(const :tag "Full screen" :value nil)
|
|
|
|
(integer :tag "Specific # of lines")
|
2002-12-09 19:43:54 +00:00
|
|
|
(float :tag "Fraction of window"))))
|
2002-06-24 15:50:38 +00:00
|
|
|
(repeat
|
|
|
|
(cons
|
2002-06-24 23:59:22 +00:00
|
|
|
(repeat (choice :tag "modifier"
|
|
|
|
(const alt) (const control) (const hyper)
|
2002-06-24 15:50:38 +00:00
|
|
|
(const meta) (const shift) (const super)))
|
|
|
|
(choice :tag "scroll amount"
|
|
|
|
(const :tag "Full screen" :value nil)
|
|
|
|
(integer :tag "Specific # of lines")
|
2009-09-12 19:03:49 +00:00
|
|
|
(float :tag "Fraction of window")))))
|
|
|
|
:set 'mouse-wheel-change-button)
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2004-11-11 23:51:40 +00:00
|
|
|
(defcustom mouse-wheel-progressive-speed t
|
2002-06-24 15:50:38 +00:00
|
|
|
"If non-nil, the faster the user moves the wheel, the faster the scrolling.
|
|
|
|
Note that this has no effect when `mouse-wheel-scroll-amount' specifies
|
2002-06-24 23:59:22 +00:00
|
|
|
a \"near full screen\" scroll or when the mouse wheel sends key instead
|
|
|
|
of button events."
|
2002-06-24 15:50:38 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean)
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2002-06-27 21:46:45 +00:00
|
|
|
(defcustom mouse-wheel-follow-mouse t
|
1999-11-10 21:54:54 +00:00
|
|
|
"Whether the mouse wheel should scroll the window that the mouse is over.
|
2002-06-24 23:59:22 +00:00
|
|
|
This can be slightly disconcerting, but some people prefer it."
|
1999-11-10 21:54:54 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean)
|
|
|
|
|
2008-06-12 03:50:31 +00:00
|
|
|
(eval-and-compile
|
|
|
|
(if (fboundp 'event-button)
|
|
|
|
(fset 'mwheel-event-button 'event-button)
|
2002-06-24 15:50:38 +00:00
|
|
|
(defun mwheel-event-button (event)
|
2002-06-27 21:46:45 +00:00
|
|
|
(let ((x (event-basic-type event)))
|
2002-06-24 15:50:38 +00:00
|
|
|
;; Map mouse-wheel events to appropriate buttons
|
2002-06-27 21:46:45 +00:00
|
|
|
(if (eq 'mouse-wheel x)
|
2002-06-24 15:50:38 +00:00
|
|
|
(let ((amount (car (cdr (cdr (cdr event))))))
|
|
|
|
(if (< amount 0)
|
2002-06-27 21:46:45 +00:00
|
|
|
mouse-wheel-up-event
|
|
|
|
mouse-wheel-down-event))
|
2008-06-12 03:50:31 +00:00
|
|
|
x))))
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2008-06-12 03:50:31 +00:00
|
|
|
(if (fboundp 'event-window)
|
|
|
|
(fset 'mwheel-event-window 'event-window)
|
2002-06-24 15:50:38 +00:00
|
|
|
(defun mwheel-event-window (event)
|
2008-06-12 03:50:31 +00:00
|
|
|
(posn-window (event-start event)))))
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2002-11-28 23:03:30 +00:00
|
|
|
(defvar mwheel-inhibit-click-event-timer nil
|
|
|
|
"Timer running while mouse wheel click event is inhibited.")
|
|
|
|
|
|
|
|
(defun mwheel-inhibit-click-timeout ()
|
|
|
|
"Handler for `mwheel-inhibit-click-event-timer'."
|
|
|
|
(setq mwheel-inhibit-click-event-timer nil)
|
|
|
|
(remove-hook 'pre-command-hook 'mwheel-filter-click-events))
|
|
|
|
|
|
|
|
(defun mwheel-filter-click-events ()
|
|
|
|
"Discard `mouse-wheel-click-event' while scrolling the mouse."
|
|
|
|
(if (eq (event-basic-type last-input-event) mouse-wheel-click-event)
|
|
|
|
(setq this-command 'ignore)))
|
|
|
|
|
2002-06-24 15:50:38 +00:00
|
|
|
(defun mwheel-scroll (event)
|
|
|
|
"Scroll up or down according to the EVENT.
|
|
|
|
This should only be bound to mouse buttons 4 and 5."
|
2002-06-27 21:46:45 +00:00
|
|
|
(interactive (list last-input-event))
|
2002-06-24 15:50:38 +00:00
|
|
|
(let* ((curwin (if mouse-wheel-follow-mouse
|
|
|
|
(prog1
|
|
|
|
(selected-window)
|
|
|
|
(select-window (mwheel-event-window event)))))
|
2008-04-08 05:38:39 +00:00
|
|
|
(buffer (window-buffer curwin))
|
|
|
|
(opoint (with-current-buffer buffer
|
|
|
|
(when (eq (car-safe transient-mark-mode) 'only)
|
|
|
|
(point))))
|
2002-06-24 15:50:38 +00:00
|
|
|
(mods
|
|
|
|
(delq 'click (delq 'double (delq 'triple (event-modifiers event)))))
|
2002-06-24 23:59:22 +00:00
|
|
|
(amt (assoc mods mouse-wheel-scroll-amount)))
|
|
|
|
;; Extract the actual amount or find the element that has no modifiers.
|
|
|
|
(if amt (setq amt (cdr amt))
|
|
|
|
(let ((list-elt mouse-wheel-scroll-amount))
|
|
|
|
(while (consp (setq amt (pop list-elt))))))
|
2002-06-24 15:50:38 +00:00
|
|
|
(if (floatp amt) (setq amt (1+ (truncate (* amt (window-height))))))
|
2004-11-11 23:51:40 +00:00
|
|
|
(when (and mouse-wheel-progressive-speed (numberp amt))
|
2002-06-24 15:50:38 +00:00
|
|
|
;; When the double-mouse-N comes in, a mouse-N has been executed already,
|
2002-06-27 21:46:45 +00:00
|
|
|
;; So by adding things up we get a squaring up (1, 3, 6, 10, 15, ...).
|
2002-06-24 15:50:38 +00:00
|
|
|
(setq amt (* amt (event-click-count event))))
|
1999-11-10 21:54:54 +00:00
|
|
|
(unwind-protect
|
2002-06-24 15:50:38 +00:00
|
|
|
(let ((button (mwheel-event-button event)))
|
2006-05-08 15:14:26 +00:00
|
|
|
(cond ((eq button mouse-wheel-down-event)
|
|
|
|
(condition-case nil (scroll-down amt)
|
|
|
|
;; Make sure we do indeed scroll to the beginning of
|
|
|
|
;; the buffer.
|
|
|
|
(beginning-of-buffer
|
|
|
|
(unwind-protect
|
|
|
|
(scroll-down)
|
|
|
|
;; If the first scroll succeeded, then some scrolling
|
|
|
|
;; is possible: keep scrolling til the beginning but
|
|
|
|
;; do not signal an error. For some reason, we have
|
2008-06-27 02:14:52 +00:00
|
|
|
;; to do it even if the first scroll signaled an
|
2006-05-08 15:14:26 +00:00
|
|
|
;; error, because otherwise the window is recentered
|
|
|
|
;; for a reason that escapes me. This problem seems
|
|
|
|
;; to only affect scroll-down. --Stef
|
|
|
|
(set-window-start (selected-window) (point-min))))))
|
|
|
|
((eq button mouse-wheel-up-event)
|
|
|
|
(condition-case nil (scroll-up amt)
|
|
|
|
;; Make sure we do indeed scroll to the end of the buffer.
|
|
|
|
(end-of-buffer (while t (scroll-up)))))
|
2002-06-24 15:50:38 +00:00
|
|
|
(t (error "Bad binding in mwheel-scroll"))))
|
2008-04-08 05:38:39 +00:00
|
|
|
(if curwin (select-window curwin)))
|
|
|
|
;; If there is a temporarily active region, deactivate it iff
|
|
|
|
;; scrolling moves point.
|
|
|
|
(when opoint
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(when (/= opoint (point))
|
|
|
|
(deactivate-mark)))))
|
2002-11-28 23:03:30 +00:00
|
|
|
(when (and mouse-wheel-click-event mouse-wheel-inhibit-click-time)
|
|
|
|
(if mwheel-inhibit-click-event-timer
|
|
|
|
(cancel-timer mwheel-inhibit-click-event-timer)
|
|
|
|
(add-hook 'pre-command-hook 'mwheel-filter-click-events))
|
2003-02-04 12:29:42 +00:00
|
|
|
(setq mwheel-inhibit-click-event-timer
|
2002-11-28 23:03:30 +00:00
|
|
|
(run-with-timer mouse-wheel-inhibit-click-time nil
|
|
|
|
'mwheel-inhibit-click-timeout))))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
2009-09-12 04:38:03 +00:00
|
|
|
(defvar mwheel-installed-bindings nil)
|
|
|
|
|
2009-09-12 19:03:49 +00:00
|
|
|
;; preloaded ;;;###autoload
|
2000-10-25 11:39:51 +00:00
|
|
|
(define-minor-mode mouse-wheel-mode
|
|
|
|
"Toggle mouse wheel support.
|
|
|
|
With prefix argument ARG, turn on if positive, otherwise off.
|
2006-02-14 11:35:48 +00:00
|
|
|
Return non-nil if the new state is enabled."
|
2009-09-12 04:38:03 +00:00
|
|
|
:init-value t
|
|
|
|
;; We'd like to use custom-initialize-set here so the setup is done
|
|
|
|
;; before dumping, but at the point where the defcustom is evaluated,
|
|
|
|
;; the corresponding function isn't defined yet, so
|
|
|
|
;; custom-initialize-set signals an error.
|
|
|
|
:initialize 'custom-initialize-delay
|
2000-10-25 11:39:51 +00:00
|
|
|
:global t
|
|
|
|
:group 'mouse
|
2009-09-12 04:38:03 +00:00
|
|
|
;; Remove previous bindings, if any.
|
|
|
|
(while mwheel-installed-bindings
|
|
|
|
(let ((key (pop mwheel-installed-bindings)))
|
|
|
|
(when (eq (lookup-key (current-global-map) key) 'mwheel-scroll)
|
|
|
|
(global-unset-key key))))
|
|
|
|
;; Setup bindings as needed.
|
|
|
|
(when mouse-wheel-mode
|
|
|
|
(dolist (event (list mouse-wheel-down-event mouse-wheel-up-event))
|
|
|
|
(dolist (key (mapcar (lambda (amt) `[(,@(if (consp amt) (car amt)) ,event)])
|
|
|
|
mouse-wheel-scroll-amount))
|
|
|
|
(global-set-key key 'mwheel-scroll)
|
|
|
|
(push key mwheel-installed-bindings)))))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
|
|
|
;;; Compatibility entry point
|
2009-09-12 19:03:49 +00:00
|
|
|
;; preloaded ;;;###autoload
|
2000-10-25 11:39:51 +00:00
|
|
|
(defun mwheel-install (&optional uninstall)
|
|
|
|
"Enable mouse wheel support."
|
2002-06-27 21:46:45 +00:00
|
|
|
(mouse-wheel-mode (if uninstall -1 1)))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
1999-11-10 21:54:54 +00:00
|
|
|
(provide 'mwheel)
|
|
|
|
|
2004-11-11 23:51:40 +00:00
|
|
|
;; arch-tag: 50ed00e7-3686-4b7a-8037-fb31aa5c237f
|
1999-11-10 21:54:54 +00:00
|
|
|
;;; mwheel.el ends here
|