Fix use of unitialized memory.
[bpt/emacs.git] / lisp / scroll-bar.el
CommitLineData
55535639 1;;; scroll-bar.el --- window system-independent scroll bar support
6d62a90e 2
0d30b337 3;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001, 2002, 2003,
114f9c96 4;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6d62a90e
JB
5
6;; Maintainer: FSF
7;; Keywords: hardware
8
b578f267 9;; This file is part of GNU Emacs.
6d62a90e 10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
b578f267 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
6d62a90e 15
b578f267
EN
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
6d62a90e 20
b578f267 21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
76550a57 23
d9ecc911
ER
24;;; Commentary:
25
26;; Window-system-independent bindings of mouse clicks on the scroll bar.
27;; Presently emulates the scroll-bar behavior of xterm.
b578f267 28
d9ecc911
ER
29;;; Code:
30
dbc4e1c1
JB
31(require 'mouse)
32
6d62a90e
JB
33\f
34;;;; Utilities.
35
86828678
RS
36(defun scroll-bar-event-ratio (event)
37 "Given a scroll bar event EVENT, return the scroll bar position as a ratio.
38The value is a cons cell (PORTION . WHOLE) containing two integers
39whose ratio gives the event's vertical position in the scroll bar, with 0
40referring to the top and 1 to the bottom."
41 (nth 2 event))
42
bf3c8a70 43(defun scroll-bar-scale (num-denom whole)
6d62a90e 44 "Given a pair (NUM . DENOM) and WHOLE, return (/ (* NUM WHOLE) DENOM).
bf3c8a70
JB
45This is handy for scaling a position on a scroll bar into real units,
46like buffer positions. If SCROLL-BAR-POS is the (PORTION . WHOLE) pair
47from a scroll bar event, then (scroll-bar-scale SCROLL-BAR-POS
6d62a90e 48\(buffer-size)) is the position in the current buffer corresponding to
bf3c8a70 49that scroll bar position."
6d62a90e
JB
50 ;; We multiply before we divide to maintain precision.
51 ;; We use floating point because the product of a large buffer size
bf3c8a70 52 ;; with a large scroll bar portion can easily overflow a lisp int.
6d62a90e
JB
53 (truncate (/ (* (float (car num-denom)) whole) (cdr num-denom))))
54
9fd76d04
MY
55(defun scroll-bar-columns (side)
56 "Return the width, measured in columns, of the vertical scrollbar on SIDE.
57SIDE must be the symbol `left' or `right'."
58 (let* ((wsb (window-scroll-bars))
59 (vtype (nth 2 wsb))
60 (cols (nth 1 wsb)))
61 (cond
62 ((not (memq side '(left right)))
63 (error "`left' or `right' expected instead of %S" side))
64 ((and (eq vtype side) cols))
65 ((eq (frame-parameter nil 'vertical-scroll-bars) side)
66 ;; nil means it's a non-toolkit scroll bar, and its width in
67 ;; columns is 14 pixels rounded up.
68 (ceiling (or (frame-parameter nil 'scroll-bar-width) 14)
69 (frame-char-width)))
70 (0))))
71
6d62a90e 72\f
fe48f821 73;;;; Helpful functions for enabling and disabling scroll bars.
fe48f821 74
1064fe38 75(defvar scroll-bar-mode)
f62c3ee2 76(defvar previous-scroll-bar-mode nil)
1064fe38 77
2124851f
RS
78(defvar scroll-bar-mode-explicit nil
79 "Non-nil means `set-scroll-bar-mode' should really do something.
80This is nil while loading `scroll-bar.el', and t afterward.")
81
e4b201bb
KH
82(defun set-scroll-bar-mode-1 (ignore value)
83 (set-scroll-bar-mode value))
84
85(defun set-scroll-bar-mode (value)
04c34f2e 86 "Set `scroll-bar-mode' to VALUE and put the new value into effect."
f62c3ee2
JD
87 (if scroll-bar-mode
88 (setq previous-scroll-bar-mode scroll-bar-mode))
89
04c34f2e
RS
90 (setq scroll-bar-mode value)
91
2124851f 92 (when scroll-bar-mode-explicit
095fe281
KL
93 (modify-all-frames-parameters (list (cons 'vertical-scroll-bars
94 scroll-bar-mode)))))
04c34f2e 95
61f2fe7b 96(defcustom scroll-bar-mode default-frame-scroll-bars
9201cc28 97 "Specify whether to have vertical scroll bars, and on which side.
04c34f2e
RS
98Possible values are nil (no scroll bars), `left' (scroll bars on left)
99and `right' (scroll bars on right).
463deb66
RS
100To set this variable in a Lisp program, use `set-scroll-bar-mode'
101to make it take real effect.
102Setting the variable with a customization buffer also takes effect."
64453f32 103 :type '(choice (const :tag "none (nil)" nil)
04c34f2e
RS
104 (const left)
105 (const right))
106 :group 'frames
2669fbfb
RS
107 ;; The default value for :initialize would try to use :set
108 ;; when processing the file in cus-dep.el.
109 :initialize 'custom-initialize-default
e4b201bb 110 :set 'set-scroll-bar-mode-1)
04c34f2e 111
2124851f
RS
112;; We just set scroll-bar-mode, but that was the default.
113;; If it is set again, that is for real.
114(setq scroll-bar-mode-explicit t)
115
b1ad7c13 116(defun scroll-bar-mode (&optional flag)
04c34f2e 117 "Toggle display of vertical scroll bars on all frames.
fe48f821
JB
118This command applies to all frames that exist and frames to be
119created in the future.
5f0e32ea
JB
120With a numeric argument, if the argument is positive
121turn on scroll bars; otherwise turn off scroll bars."
fe48f821 122 (interactive "P")
ada464a7 123
04c34f2e 124 ;; Tweedle the variable according to the argument.
9201cc28 125 (set-scroll-bar-mode (if (if (null flag)
61f2fe7b
KS
126 (not scroll-bar-mode)
127 (setq flag (prefix-numeric-value flag))
5f0e32ea 128 (or (not (numberp flag)) (> flag 0)))
f62c3ee2
JD
129 (or previous-scroll-bar-mode
130 default-frame-scroll-bars))))
04c34f2e
RS
131
132(defun toggle-scroll-bar (arg)
133 "Toggle whether or not the selected frame has vertical scroll bars.
134With arg, turn vertical scroll bars on if and only if arg is positive.
135The variable `scroll-bar-mode' controls which side the scroll bars are on
136when they are turned on; if it is nil, they go on the left."
137 (interactive "P")
138 (if (null arg)
139 (setq arg
140 (if (cdr (assq 'vertical-scroll-bars
141 (frame-parameters (selected-frame))))
19c6feac
KH
142 -1 1))
143 (setq arg (prefix-numeric-value arg)))
1032e793
GV
144 (modify-frame-parameters
145 (selected-frame)
146 (list (cons 'vertical-scroll-bars
147 (if (> arg 0)
61f2fe7b 148 (or scroll-bar-mode default-frame-scroll-bars))))))
04c34f2e
RS
149
150(defun toggle-horizontal-scroll-bar (arg)
151 "Toggle whether or not the selected frame has horizontal scroll bars.
152With arg, turn horizontal scroll bars on if and only if arg is positive.
153Horizontal scroll bars aren't implemented yet."
154 (interactive "P")
155 (error "Horizontal scroll bars aren't implemented yet"))
fe48f821 156\f
bf3c8a70 157;;;; Buffer navigation using the scroll bar.
6d62a90e 158
7fdbcd83 159;; This was used for up-events on button 2, but no longer.
bf3c8a70
JB
160(defun scroll-bar-set-window-start (event)
161 "Set the window start according to where the scroll bar is dragged.
162EVENT should be a scroll bar click or drag event."
6d62a90e 163 (interactive "e")
dbc4e1c1 164 (let* ((end-position (event-end event))
6d62a90e
JB
165 (window (nth 0 end-position))
166 (portion-whole (nth 2 end-position)))
7fdbcd83 167 (with-current-buffer (window-buffer window)
6d62a90e 168 (save-excursion
4cad38d5
JB
169 (goto-char (+ (point-min)
170 (scroll-bar-scale portion-whole
171 (- (point-max) (point-min)))))
6d62a90e
JB
172 (beginning-of-line)
173 (set-window-start window (point))))))
174
aeee66be
RS
175(defun scroll-bar-drag-position (portion-whole)
176 "Calculate new window start for drag event."
177 (save-excursion
178 (goto-char (+ (point-min)
179 (scroll-bar-scale portion-whole
180 (- (point-max) (point-min)))))
181 (beginning-of-line)
182 (point)))
183
184(defun scroll-bar-maybe-set-window-start (event)
185 "Set the window start according to where the scroll bar is dragged.
186Only change window start if the new start is substantially different.
187EVENT should be a scroll bar click or drag event."
188 (interactive "e")
189 (let* ((end-position (event-end event))
190 (window (nth 0 end-position))
191 (portion-whole (nth 2 end-position))
192 (next-portion-whole (cons (1+ (car portion-whole))
193 (cdr portion-whole)))
194 portion-start
195 next-portion-start
196 (current-start (window-start window)))
7fdbcd83 197 (with-current-buffer (window-buffer window)
aeee66be
RS
198 (setq portion-start (scroll-bar-drag-position portion-whole))
199 (setq next-portion-start (max
200 (scroll-bar-drag-position next-portion-whole)
201 (1+ portion-start)))
15655694 202 (if (or (>= current-start next-portion-start)
aeee66be 203 (< current-start portion-start))
9c005c65
KH
204 (set-window-start window portion-start)
205 ;; Always set window start, to ensure scroll bar position is updated.
206 (set-window-start window current-start)))))
aeee66be 207
e532b016
RS
208;; Scroll the window to the proper position for EVENT.
209(defun scroll-bar-drag-1 (event)
210 (let* ((start-position (event-start event))
211 (window (nth 0 start-position))
212 (portion-whole (nth 2 start-position)))
7fdbcd83 213 (with-current-buffer (window-buffer window)
d2ae6f7e
RS
214 ;; Calculate position relative to the accessible part of the buffer.
215 (goto-char (+ (point-min)
216 (scroll-bar-scale portion-whole
217 (- (point-max) (point-min)))))
9d7ab3f0 218 (vertical-motion 0 window)
e532b016
RS
219 (set-window-start window (point)))))
220
221(defun scroll-bar-drag (event)
222 "Scroll the window by dragging the scroll bar slider.
223If you click outside the slider, the window scrolls to bring the slider there."
224 (interactive "e")
c782bea5 225 (let* (done
cb183ca0
RS
226 (echo-keystrokes 0)
227 (end-position (event-end event))
228 (window (nth 0 end-position))
229 (before-scroll))
230 (with-current-buffer (window-buffer window)
231 (setq before-scroll point-before-scroll))
232 (save-selected-window
233 (select-window window)
234 (setq before-scroll
235 (or before-scroll (point))))
236 (scroll-bar-drag-1 event)
237 (track-mouse
238 (while (not done)
239 (setq event (read-event))
240 (if (eq (car-safe event) 'mouse-movement)
241 (setq event (read-event)))
242 (cond ((eq (car-safe event) 'scroll-bar-movement)
243 (scroll-bar-drag-1 event))
244 (t
245 ;; Exit when we get the drag event; ignore that event.
246 (setq done t)))))
247 (sit-for 0)
248 (with-current-buffer (window-buffer window)
249 (setq point-before-scroll before-scroll))))
e532b016 250
bf3c8a70
JB
251(defun scroll-bar-scroll-down (event)
252 "Scroll the window's top line down to the location of the scroll bar click.
253EVENT should be a scroll bar click."
6d62a90e 254 (interactive "e")
cb183ca0
RS
255 (let* ((end-position (event-end event))
256 (window (nth 0 end-position))
257 (before-scroll))
258 (with-current-buffer (window-buffer window)
259 (setq before-scroll point-before-scroll))
def7db1d
KH
260 (unwind-protect
261 (save-selected-window
262 (let ((portion-whole (nth 2 end-position)))
263 (select-window window)
264 (setq before-scroll
265 (or before-scroll (point)))
266 (scroll-down
267 (scroll-bar-scale portion-whole (1- (window-height)))))
268 (sit-for 0))
269 (with-current-buffer (window-buffer window)
270 (setq point-before-scroll before-scroll)))))
6d62a90e 271
bf3c8a70
JB
272(defun scroll-bar-scroll-up (event)
273 "Scroll the line next to the scroll bar click to the top of the window.
274EVENT should be a scroll bar click."
6d62a90e 275 (interactive "e")
cb183ca0
RS
276 (let* ((end-position (event-end event))
277 (window (nth 0 end-position))
278 (before-scroll))
279 (with-current-buffer (window-buffer window)
280 (setq before-scroll point-before-scroll))
def7db1d
KH
281 (unwind-protect
282 (save-selected-window
283 (let ((portion-whole (nth 2 end-position)))
284 (select-window window)
285 (setq before-scroll
286 (or before-scroll (point)))
287 (scroll-up
288 (scroll-bar-scale portion-whole (1- (window-height)))))
289 (sit-for 0))
290 (with-current-buffer (window-buffer window)
291 (setq point-before-scroll before-scroll)))))
6d62a90e
JB
292
293\f
cf4eb316 294;;; Tookit scroll bars.
6d62a90e 295
cf4eb316
GM
296(defun scroll-bar-toolkit-scroll (event)
297 (interactive "e")
298 (let* ((end-position (event-end event))
299 (window (nth 0 end-position))
300 (part (nth 4 end-position))
301 before-scroll)
2088cd64 302 (cond ((eq part 'end-scroll))
cf4eb316
GM
303 (t
304 (with-current-buffer (window-buffer window)
305 (setq before-scroll point-before-scroll))
306 (save-selected-window
307 (select-window window)
308 (setq before-scroll (or before-scroll (point)))
309 (cond ((eq part 'above-handle)
310 (scroll-up '-))
311 ((eq part 'below-handle)
312 (scroll-up nil))
d294c01f
SM
313 ((eq part 'ratio)
314 (let* ((portion-whole (nth 2 end-position))
315 (lines (scroll-bar-scale portion-whole
316 (1- (window-height)))))
317 (scroll-up (cond ((not (zerop lines)) lines)
318 ((< (car portion-whole) 0) -1)
319 (t 1)))))
cf4eb316
GM
320 ((eq part 'up)
321 (scroll-up -1))
322 ((eq part 'down)
323 (scroll-up 1))
324 ((eq part 'top)
325 (set-window-start window (point-min)))
326 ((eq part 'bottom)
327 (goto-char (point-max))
328 (recenter))
329 ((eq part 'handle)
330 (scroll-bar-drag-1 event))))
331 (sit-for 0)
cf4eb316
GM
332 (with-current-buffer (window-buffer window)
333 (setq point-before-scroll before-scroll))))))
e532b016 334
cf4eb316
GM
335
336\f
337;;;; Bindings.
338
7fdbcd83 339;; For now, we'll set things up to work like xterm.
d08947c5 340(cond ((and (boundp 'x-toolkit-scroll-bars) x-toolkit-scroll-bars)
cf4eb316
GM
341 (global-set-key [vertical-scroll-bar mouse-1]
342 'scroll-bar-toolkit-scroll))
343 (t
344 (global-set-key [vertical-scroll-bar mouse-1]
345 'scroll-bar-scroll-up)
346 (global-set-key [vertical-scroll-bar drag-mouse-1]
347 'scroll-bar-scroll-up)
348 (global-set-key [vertical-scroll-bar down-mouse-2]
349 'scroll-bar-drag)
350 (global-set-key [vertical-scroll-bar mouse-3]
351 'scroll-bar-scroll-down)
352 (global-set-key [vertical-scroll-bar drag-mouse-3]
353 'scroll-bar-scroll-down)))
6d62a90e
JB
354
355\f
dc14eed2 356(provide 'scroll-bar)
6d62a90e 357
cbee283d 358;; arch-tag: 6f1d01d0-0b1e-4bf8-86db-d491e0f399f3
bf3c8a70 359;;; scroll-bar.el ends here