Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / mwheel.el
blobbab620dc41c1a2a6b1625a52b8220e08fa12993f
1 ;;; mwheel.el --- Wheel mouse support
3 ;; Copyright (C) 1998, 2000, 2001, 2002, 2002, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Maintainer: William M. Perry <wmperry@gnu.org>
6 ;; Keywords: mouse
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; This code will enable the use of the infamous 'wheel' on the new
26 ;; crop of mice. Under XFree86 and the XSuSE X Servers, the wheel
27 ;; events are sent as button4/button5 events.
29 ;; I for one would prefer some way of converting the button4/button5
30 ;; events into different event types, like 'mwheel-up' or
31 ;; 'mwheel-down', but I cannot find a way to do this very easily (or
32 ;; portably), so for now I just live with it.
34 ;; To enable this code, simply put this at the top of your .emacs
35 ;; file:
37 ;; (mouse-wheel-mode 1)
39 ;;; Code:
41 (require 'custom)
42 (require 'timer)
44 ;; Setter function for mouse-button user-options. Switch Mouse Wheel
45 ;; mode off and on again so that the old button is unbound and
46 ;; new button is bound to mwheel-scroll.
48 (defun mouse-wheel-change-button (var button)
49 (let ((active mouse-wheel-mode))
50 ;; Deactivate before changing the setting.
51 (when active (mouse-wheel-mode -1))
52 (set-default var button)
53 (when active (mouse-wheel-mode 1))))
55 (defvar mouse-wheel-down-button 4)
56 (make-obsolete-variable 'mouse-wheel-down-button
57 'mouse-wheel-down-event
58 "22.1")
59 (defcustom mouse-wheel-down-event
60 ;; In the latest versions of XEmacs, we could just use mouse-%s as well.
61 (if (memq window-system '(w32 mac))
62 'wheel-up
63 (intern (format (if (featurep 'xemacs) "button%s" "mouse-%s")
64 mouse-wheel-down-button)))
65 "Event used for scrolling down."
66 :group 'mouse
67 :type 'symbol
68 :set 'mouse-wheel-change-button)
70 (defvar mouse-wheel-up-button 5)
71 (make-obsolete-variable 'mouse-wheel-up-button
72 'mouse-wheel-up-event
73 "22.1")
74 (defcustom mouse-wheel-up-event
75 ;; In the latest versions of XEmacs, we could just use mouse-%s as well.
76 (if (memq window-system '(w32 mac))
77 'wheel-down
78 (intern (format (if (featurep 'xemacs) "button%s" "mouse-%s")
79 mouse-wheel-up-button)))
80 "Event used for scrolling up."
81 :group 'mouse
82 :type 'symbol
83 :set 'mouse-wheel-change-button)
85 (defvar mouse-wheel-click-button 2)
86 (make-obsolete-variable 'mouse-wheel-click-button
87 'mouse-wheel-click-event
88 "22.1")
89 (defcustom mouse-wheel-click-event
90 ;; In the latest versions of XEmacs, we could just use mouse-%s as well.
91 (intern (format (if (featurep 'xemacs) "button%s" "mouse-%s")
92 mouse-wheel-click-button))
93 "Event that should be temporarily inhibited after mouse scrolling.
94 The mouse wheel is typically on the mouse-2 button, so it may easily
95 happen that text is accidentally yanked into the buffer when
96 scrolling with the mouse wheel. To prevent that, this variable can be
97 set to the event sent when clicking on the mouse wheel button."
98 :group 'mouse
99 :type 'symbol
100 :set 'mouse-wheel-change-button)
102 (defcustom mouse-wheel-inhibit-click-time 0.35
103 "Time in seconds to inhibit clicking on mouse wheel button after scroll."
104 :group 'mouse
105 :type 'number)
107 (defcustom mouse-wheel-scroll-amount '(5 ((shift) . 1) ((control) . nil))
108 "Amount to scroll windows by when spinning the mouse wheel.
109 This is an alist mapping the modifier key to the amount to scroll when
110 the wheel is moved with the modifier key depressed.
111 Elements of the list have the form (MODIFIERS . AMOUNT) or just AMOUNT if
112 MODIFIERS is nil.
114 AMOUNT should be the number of lines to scroll, or nil for near full
115 screen. It can also be a floating point number, specifying the fraction of
116 a full screen to scroll. A near full screen is `next-screen-context-lines'
117 less than a full screen."
118 :group 'mouse
119 :type '(cons
120 (choice :tag "Normal"
121 (const :tag "Full screen" :value nil)
122 (integer :tag "Specific # of lines")
123 (float :tag "Fraction of window")
124 (cons
125 (repeat (choice :tag "modifier"
126 (const alt) (const control) (const hyper)
127 (const meta) (const shift) (const super)))
128 (choice :tag "scroll amount"
129 (const :tag "Full screen" :value nil)
130 (integer :tag "Specific # of lines")
131 (float :tag "Fraction of window"))))
132 (repeat
133 (cons
134 (repeat (choice :tag "modifier"
135 (const alt) (const control) (const hyper)
136 (const meta) (const shift) (const super)))
137 (choice :tag "scroll amount"
138 (const :tag "Full screen" :value nil)
139 (integer :tag "Specific # of lines")
140 (float :tag "Fraction of window"))))))
142 (defcustom mouse-wheel-progressive-speed t
143 "If non-nil, the faster the user moves the wheel, the faster the scrolling.
144 Note that this has no effect when `mouse-wheel-scroll-amount' specifies
145 a \"near full screen\" scroll or when the mouse wheel sends key instead
146 of button events."
147 :group 'mouse
148 :type 'boolean)
150 (defcustom mouse-wheel-follow-mouse t
151 "Whether the mouse wheel should scroll the window that the mouse is over.
152 This can be slightly disconcerting, but some people prefer it."
153 :group 'mouse
154 :type 'boolean)
156 (if (not (fboundp 'event-button))
157 (defun mwheel-event-button (event)
158 (let ((x (event-basic-type event)))
159 ;; Map mouse-wheel events to appropriate buttons
160 (if (eq 'mouse-wheel x)
161 (let ((amount (car (cdr (cdr (cdr event))))))
162 (if (< amount 0)
163 mouse-wheel-up-event
164 mouse-wheel-down-event))
165 x)))
166 (fset 'mwheel-event-button 'event-button))
168 (if (not (fboundp 'event-window))
169 (defun mwheel-event-window (event)
170 (posn-window (event-start event)))
171 (fset 'mwheel-event-window 'event-window))
173 (defvar mwheel-inhibit-click-event-timer nil
174 "Timer running while mouse wheel click event is inhibited.")
176 (defun mwheel-inhibit-click-timeout ()
177 "Handler for `mwheel-inhibit-click-event-timer'."
178 (setq mwheel-inhibit-click-event-timer nil)
179 (remove-hook 'pre-command-hook 'mwheel-filter-click-events))
181 (defun mwheel-filter-click-events ()
182 "Discard `mouse-wheel-click-event' while scrolling the mouse."
183 (if (eq (event-basic-type last-input-event) mouse-wheel-click-event)
184 (setq this-command 'ignore)))
186 (defun mwheel-scroll (event)
187 "Scroll up or down according to the EVENT.
188 This should only be bound to mouse buttons 4 and 5."
189 (interactive (list last-input-event))
190 (let* ((curwin (if mouse-wheel-follow-mouse
191 (prog1
192 (selected-window)
193 (select-window (mwheel-event-window event)))))
194 (buffer (window-buffer curwin))
195 (opoint (with-current-buffer buffer
196 (when (eq (car-safe transient-mark-mode) 'only)
197 (point))))
198 (mods
199 (delq 'click (delq 'double (delq 'triple (event-modifiers event)))))
200 (amt (assoc mods mouse-wheel-scroll-amount)))
201 ;; Extract the actual amount or find the element that has no modifiers.
202 (if amt (setq amt (cdr amt))
203 (let ((list-elt mouse-wheel-scroll-amount))
204 (while (consp (setq amt (pop list-elt))))))
205 (if (floatp amt) (setq amt (1+ (truncate (* amt (window-height))))))
206 (when (and mouse-wheel-progressive-speed (numberp amt))
207 ;; When the double-mouse-N comes in, a mouse-N has been executed already,
208 ;; So by adding things up we get a squaring up (1, 3, 6, 10, 15, ...).
209 (setq amt (* amt (event-click-count event))))
210 (unwind-protect
211 (let ((button (mwheel-event-button event)))
212 (cond ((eq button mouse-wheel-down-event)
213 (condition-case nil (scroll-down amt)
214 ;; Make sure we do indeed scroll to the beginning of
215 ;; the buffer.
216 (beginning-of-buffer
217 (unwind-protect
218 (scroll-down)
219 ;; If the first scroll succeeded, then some scrolling
220 ;; is possible: keep scrolling til the beginning but
221 ;; do not signal an error. For some reason, we have
222 ;; to do it even if the first scroll signalled an
223 ;; error, because otherwise the window is recentered
224 ;; for a reason that escapes me. This problem seems
225 ;; to only affect scroll-down. --Stef
226 (set-window-start (selected-window) (point-min))))))
227 ((eq button mouse-wheel-up-event)
228 (condition-case nil (scroll-up amt)
229 ;; Make sure we do indeed scroll to the end of the buffer.
230 (end-of-buffer (while t (scroll-up)))))
231 (t (error "Bad binding in mwheel-scroll"))))
232 (if curwin (select-window curwin)))
233 ;; If there is a temporarily active region, deactivate it iff
234 ;; scrolling moves point.
235 (when opoint
236 (with-current-buffer buffer
237 (when (/= opoint (point))
238 (deactivate-mark)))))
239 (when (and mouse-wheel-click-event mouse-wheel-inhibit-click-time)
240 (if mwheel-inhibit-click-event-timer
241 (cancel-timer mwheel-inhibit-click-event-timer)
242 (add-hook 'pre-command-hook 'mwheel-filter-click-events))
243 (setq mwheel-inhibit-click-event-timer
244 (run-with-timer mouse-wheel-inhibit-click-time nil
245 'mwheel-inhibit-click-timeout))))
247 ;;;###autoload
248 (define-minor-mode mouse-wheel-mode
249 "Toggle mouse wheel support.
250 With prefix argument ARG, turn on if positive, otherwise off.
251 Return non-nil if the new state is enabled."
252 :global t
253 :group 'mouse
254 (let* ((dn mouse-wheel-down-event)
255 (up mouse-wheel-up-event)
256 (keys
257 (nconc (mapcar (lambda (amt) `[(,@(if (consp amt) (car amt)) ,up)])
258 mouse-wheel-scroll-amount)
259 (mapcar (lambda (amt) `[(,@(if (consp amt) (car amt)) ,dn)])
260 mouse-wheel-scroll-amount))))
261 ;; This condition-case is here because Emacs 19 will throw an error
262 ;; if you try to define a key that it does not know about. I for one
263 ;; prefer to just unconditionally do a mwheel-install in my .emacs, so
264 ;; that if the wheeled-mouse is there, it just works, and this way it
265 ;; doesn't yell at me if I'm on my laptop or another machine, etc.
266 (condition-case ()
267 (dolist (key keys)
268 (cond (mouse-wheel-mode
269 (global-set-key key 'mwheel-scroll))
270 ((eq (lookup-key (current-global-map) key) 'mwheel-scroll)
271 (global-unset-key key))))
272 (error nil))))
274 ;;; Compatibility entry point
275 ;;;###autoload
276 (defun mwheel-install (&optional uninstall)
277 "Enable mouse wheel support."
278 (mouse-wheel-mode (if uninstall -1 1)))
280 (provide 'mwheel)
282 ;; arch-tag: 50ed00e7-3686-4b7a-8037-fb31aa5c237f
283 ;;; mwheel.el ends here