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