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