Merge branch 'master' into comment-cache
[emacs.git] / lisp / scroll-bar.el
blob5290a7b3beefb6ee65ff1a15023c3cd698d263e3
1 ;;; scroll-bar.el --- window system-independent scroll bar support
3 ;; Copyright (C) 1993-1995, 1999-2017 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Keywords: hardware
7 ;; Package: emacs
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Window-system-independent bindings of mouse clicks on the scroll bar.
27 ;; Presently emulates the scroll-bar behavior of xterm.
29 ;;; Code:
31 (require 'mouse)
32 (eval-when-compile (require 'cl-lib))
35 ;;;; Utilities.
37 (defun scroll-bar-event-ratio (event)
38 "Given a scroll bar event EVENT, return the scroll bar position as a ratio.
39 The value is a cons cell (PORTION . WHOLE) containing two integers
40 whose ratio gives the event's vertical position in the scroll bar, with 0
41 referring to the top and 1 to the bottom."
42 (nth 2 event))
44 (defun scroll-bar-scale (num-denom whole)
45 "Given a pair (NUM . DENOM) and WHOLE, return (/ (* NUM WHOLE) DENOM).
46 This is handy for scaling a position on a scroll bar into real units,
47 like buffer positions. If SCROLL-BAR-POS is the (PORTION . WHOLE) pair
48 from a scroll bar event, then (scroll-bar-scale SCROLL-BAR-POS
49 \(buffer-size)) is the position in the current buffer corresponding to
50 that scroll bar position."
51 ;; We multiply before we divide to maintain precision.
52 ;; We use floating point because the product of a large buffer size
53 ;; with a large scroll bar portion can easily overflow a lisp int.
54 (truncate (/ (* (float (car num-denom)) whole) (cdr num-denom))))
56 (defun scroll-bar-columns (side)
57 "Return the width, measured in columns, of the vertical scrollbar on SIDE.
58 SIDE must be the symbol `left' or `right'."
59 (let* ((wsb (window-scroll-bars))
60 (vtype (nth 2 wsb))
61 (cols (nth 1 wsb)))
62 (cond
63 ((not (memq side '(left right)))
64 (error "`left' or `right' expected instead of %S" side))
65 ((and (eq vtype side) cols))
66 ((eq (frame-parameter nil 'vertical-scroll-bars) side)
67 ;; nil means it's a non-toolkit scroll bar, and its width in
68 ;; columns is 14 pixels rounded up.
69 (ceiling (or (frame-parameter nil 'scroll-bar-width) 14)
70 (frame-char-width)))
71 (0))))
73 (defun scroll-bar-lines ()
74 "Return the height, measured in lines, of the horizontal scrollbar."
75 (let* ((wsb (window-scroll-bars))
76 (htype (nth 5 wsb))
77 (lines (nth 4 wsb)))
78 (cond
79 (htype lines)
80 ((frame-parameter nil 'horizontal-scroll-bars)
81 ;; nil means it's a non-toolkit scroll bar (which is currently
82 ;; impossible), and its height in lines is 14 pixels rounded up.
83 (ceiling (or (frame-parameter nil 'scroll-bar-height) 14)
84 (frame-char-width)))
85 (0))))
88 ;;;; Helpful functions for enabling and disabling scroll bars.
90 (defvar scroll-bar-mode)
91 (defvar horizontal-scroll-bar-mode)
92 (defvar previous-scroll-bar-mode nil)
94 (defvar scroll-bar-mode-explicit nil
95 "Non-nil means `set-scroll-bar-mode' should really do something.
96 This is nil while loading `scroll-bar.el', and t afterward.")
98 (defun set-scroll-bar-mode (value)
99 "Set the scroll bar mode to VALUE and put the new value into effect.
100 See the `scroll-bar-mode' variable for possible values to use."
101 (if scroll-bar-mode
102 (setq previous-scroll-bar-mode scroll-bar-mode))
104 (setq scroll-bar-mode value)
106 (when scroll-bar-mode-explicit
107 (modify-all-frames-parameters (list (cons 'vertical-scroll-bars
108 scroll-bar-mode)))))
110 (defcustom scroll-bar-mode default-frame-scroll-bars
111 "Specify whether to have vertical scroll bars, and on which side.
112 Possible values are nil (no scroll bars), `left' (scroll bars on left)
113 and `right' (scroll bars on right).
114 To set this variable in a Lisp program, use `set-scroll-bar-mode'
115 to make it take real effect.
116 Setting the variable with a customization buffer also takes effect."
117 :type '(choice (const :tag "none (nil)" nil)
118 (const left)
119 (const right))
120 :group 'frames
121 ;; The default value for :initialize would try to use :set
122 ;; when processing the file in cus-dep.el.
123 :initialize 'custom-initialize-default
124 :set (lambda (_sym val) (set-scroll-bar-mode val)))
126 ;; We just set scroll-bar-mode, but that was the default.
127 ;; If it is set again, that is for real.
128 (setq scroll-bar-mode-explicit t)
130 (defun get-scroll-bar-mode ()
131 (declare (gv-setter set-scroll-bar-mode))
132 scroll-bar-mode)
134 (define-minor-mode scroll-bar-mode
135 "Toggle vertical scroll bars on all frames (Scroll Bar mode).
136 With a prefix argument ARG, enable Scroll Bar mode if ARG is
137 positive, and disable it otherwise. If called from Lisp, enable
138 the mode if ARG is omitted or nil.
140 This command applies to all frames that exist and frames to be
141 created in the future."
142 :variable ((get-scroll-bar-mode)
143 . (lambda (v) (set-scroll-bar-mode
144 (if v (or previous-scroll-bar-mode
145 default-frame-scroll-bars))))))
147 (defun horizontal-scroll-bars-available-p ()
148 "Return non-nil when horizontal scroll bars are available on this system."
149 (and (display-graphic-p)
150 (boundp 'x-toolkit-scroll-bars)
151 x-toolkit-scroll-bars))
153 (define-minor-mode horizontal-scroll-bar-mode
154 "Toggle horizontal scroll bars on all frames (Horizontal Scroll Bar mode).
155 With a prefix argument ARG, enable Horizontal Scroll Bar mode if
156 ARG is positive, and disable it otherwise. If called from Lisp,
157 enable the mode if ARG is omitted or nil.
159 This command applies to all frames that exist and frames to be
160 created in the future."
161 :init-value nil
162 :global t
163 :group 'frames
164 (if (and horizontal-scroll-bar-mode
165 (not (horizontal-scroll-bars-available-p)))
166 (progn
167 (setq horizontal-scroll-bar-mode nil)
168 (message "Horizontal scroll bars are not implemented on this system"))
169 (dolist (frame (frame-list))
170 (set-frame-parameter
171 frame 'horizontal-scroll-bars horizontal-scroll-bar-mode))
172 ;; Handle `default-frame-alist' entry.
173 (setq default-frame-alist
174 (cons (cons 'horizontal-scroll-bars horizontal-scroll-bar-mode)
175 (assq-delete-all 'horizontal-scroll-bars
176 default-frame-alist)))))
178 (defun toggle-scroll-bar (arg)
179 "Toggle whether or not the selected frame has vertical scroll bars.
180 With ARG, turn vertical scroll bars on if and only if ARG is positive.
181 The variable `scroll-bar-mode' controls which side the scroll bars are on
182 when they are turned on; if it is nil, they go on the left."
183 (interactive "P")
184 (if (null arg)
185 (setq arg
186 (if (frame-parameter nil 'vertical-scroll-bars) -1 1))
187 (setq arg (prefix-numeric-value arg)))
188 (modify-frame-parameters
189 (selected-frame)
190 (list (cons 'vertical-scroll-bars
191 (if (> arg 0)
192 (or scroll-bar-mode default-frame-scroll-bars))))))
194 (defun toggle-horizontal-scroll-bar (arg)
195 "Toggle whether or not the selected frame has horizontal scroll bars.
196 With ARG, turn vertical scroll bars on if and only if ARG is positive."
197 (interactive "P")
198 (if (null arg)
199 (setq arg
200 (if (frame-parameter nil 'horizontal-scroll-bars) -1 1))
201 (setq arg (prefix-numeric-value arg)))
202 (modify-frame-parameters
203 (selected-frame)
204 (list (cons 'horizontal-scroll-bars
205 (when (> arg 0) 'bottom)))))
207 ;;;; Buffer navigation using the scroll bar.
209 ;; This was used for up-events on button 2, but no longer.
210 (defun scroll-bar-set-window-start (event)
211 "Set the window start according to where the scroll bar is dragged.
212 EVENT should be a scroll bar click or drag event."
213 (interactive "e")
214 (let* ((end-position (event-end event))
215 (window (nth 0 end-position))
216 (portion-whole (nth 2 end-position)))
217 (with-current-buffer (window-buffer window)
218 (save-excursion
219 (goto-char (+ (point-min)
220 (scroll-bar-scale portion-whole
221 (- (point-max) (point-min)))))
222 (beginning-of-line)
223 (set-window-start window (point))))))
225 (defun scroll-bar-drag-position (portion-whole)
226 "Calculate new window start for drag event."
227 (save-excursion
228 (goto-char (+ (point-min)
229 (scroll-bar-scale portion-whole
230 (- (point-max) (point-min)))))
231 (beginning-of-line)
232 (point)))
234 (defun scroll-bar-maybe-set-window-start (event)
235 "Set the window start according to where the scroll bar is dragged.
236 Only change window start if the new start is substantially different.
237 EVENT should be a scroll bar click or drag event."
238 (interactive "e")
239 (let* ((end-position (event-end event))
240 (window (nth 0 end-position))
241 (portion-whole (nth 2 end-position))
242 (next-portion-whole (cons (1+ (car portion-whole))
243 (cdr portion-whole)))
244 portion-start
245 next-portion-start
246 (current-start (window-start window)))
247 (with-current-buffer (window-buffer window)
248 (setq portion-start (scroll-bar-drag-position portion-whole))
249 (setq next-portion-start (max
250 (scroll-bar-drag-position next-portion-whole)
251 (1+ portion-start)))
252 (if (or (>= current-start next-portion-start)
253 (< current-start portion-start))
254 (set-window-start window portion-start)
255 ;; Always set window start, to ensure scroll bar position is updated.
256 (set-window-start window current-start)))))
258 ;; Scroll the window to the proper position for EVENT.
259 (defun scroll-bar-drag-1 (event)
260 (let* ((start-position (event-start event))
261 (window (nth 0 start-position))
262 (portion-whole (nth 2 start-position)))
263 (save-excursion
264 (with-current-buffer (window-buffer window)
265 ;; Calculate position relative to the accessible part of the buffer.
266 (goto-char (+ (point-min)
267 (scroll-bar-scale portion-whole
268 (- (point-max) (point-min)))))
269 (vertical-motion 0 window)
270 (set-window-start window (point))))))
272 (defun scroll-bar-drag (event)
273 "Scroll the window by dragging the scroll bar slider.
274 If you click outside the slider, the window scrolls to bring the slider there."
275 (interactive "e")
276 (let* (done
277 (echo-keystrokes 0)
278 (end-position (event-end event))
279 (window (nth 0 end-position))
280 (before-scroll))
281 (with-current-buffer (window-buffer window)
282 (setq before-scroll point-before-scroll))
283 (save-selected-window
284 (select-window window)
285 (setq before-scroll
286 (or before-scroll (point))))
287 (scroll-bar-drag-1 event)
288 (track-mouse
289 (while (not done)
290 (setq event (read-event))
291 (if (eq (car-safe event) 'mouse-movement)
292 (setq event (read-event)))
293 (cond ((eq (car-safe event) 'scroll-bar-movement)
294 (scroll-bar-drag-1 event))
296 ;; Exit when we get the drag event; ignore that event.
297 (setq done t)))))
298 (sit-for 0)
299 (with-current-buffer (window-buffer window)
300 (setq point-before-scroll before-scroll))))
302 ;; Scroll the window to the proper position for EVENT.
303 (defun scroll-bar-horizontal-drag-1 (event)
304 (let* ((start-position (event-start event))
305 (window (nth 0 start-position))
306 (portion-whole (nth 2 start-position))
307 (unit (frame-char-width (window-frame window))))
308 (if (eq (current-bidi-paragraph-direction (window-buffer window))
309 'left-to-right)
310 (set-window-hscroll
311 window (/ (+ (car portion-whole) (1- unit)) unit))
312 (set-window-hscroll
313 window (/ (+ (- (cdr portion-whole) (car portion-whole))
314 (1- unit))
315 unit)))))
317 (defun scroll-bar-horizontal-drag (event)
318 "Scroll the window horizontally by dragging the scroll bar slider.
319 If you click outside the slider, the window scrolls to bring the slider there."
320 (interactive "e")
321 (let* (done
322 (echo-keystrokes 0)
323 (end-position (event-end event))
324 (window (nth 0 end-position))
325 (before-scroll))
326 (with-current-buffer (window-buffer window)
327 (setq before-scroll point-before-scroll))
328 (save-selected-window
329 (select-window window)
330 (setq before-scroll
331 (or before-scroll (point))))
332 (scroll-bar-horizontal-drag-1 event)
333 (track-mouse
334 (while (not done)
335 (setq event (read-event))
336 (if (eq (car-safe event) 'mouse-movement)
337 (setq event (read-event)))
338 (cond ((eq (car-safe event) 'scroll-bar-movement)
339 (scroll-bar-horizontal-drag-1 event))
341 ;; Exit when we get the drag event; ignore that event.
342 (setq done t)))))
343 (sit-for 0)
344 (with-current-buffer (window-buffer window)
345 (setq point-before-scroll before-scroll))))
347 (defun scroll-bar-scroll-down (event)
348 "Scroll the window's top line down to the location of the scroll bar click.
349 EVENT should be a scroll bar click."
350 (interactive "e")
351 (let* ((end-position (event-end event))
352 (window (nth 0 end-position))
353 (before-scroll))
354 (with-current-buffer (window-buffer window)
355 (setq before-scroll point-before-scroll))
356 (unwind-protect
357 (save-selected-window
358 (let ((portion-whole (nth 2 end-position)))
359 (select-window window)
360 (setq before-scroll
361 (or before-scroll (point)))
362 (scroll-down
363 (scroll-bar-scale portion-whole (1- (window-height)))))
364 (sit-for 0))
365 (with-current-buffer (window-buffer window)
366 (setq point-before-scroll before-scroll)))))
368 (defun scroll-bar-scroll-up (event)
369 "Scroll the line next to the scroll bar click to the top of the window.
370 EVENT should be a scroll bar click."
371 (interactive "e")
372 (let* ((end-position (event-end event))
373 (window (nth 0 end-position))
374 (before-scroll))
375 (with-current-buffer (window-buffer window)
376 (setq before-scroll point-before-scroll))
377 (unwind-protect
378 (save-selected-window
379 (let ((portion-whole (nth 2 end-position)))
380 (select-window window)
381 (setq before-scroll
382 (or before-scroll (point)))
383 (scroll-up
384 (scroll-bar-scale portion-whole (1- (window-height)))))
385 (sit-for 0))
386 (with-current-buffer (window-buffer window)
387 (setq point-before-scroll before-scroll)))))
390 ;;; Tookit scroll bars.
392 (defun scroll-bar-toolkit-scroll (event)
393 "Handle event EVENT on vertical scroll bar."
394 (interactive "e")
395 (let* ((end-position (event-end event))
396 (window (nth 0 end-position))
397 (part (nth 4 end-position))
398 before-scroll)
399 (cond
400 ((eq part 'end-scroll))
402 (with-current-buffer (window-buffer window)
403 (setq before-scroll point-before-scroll))
404 (save-selected-window
405 (select-window window)
406 (setq before-scroll (or before-scroll (point)))
407 (cond
408 ((eq part 'above-handle)
409 (scroll-up '-))
410 ((eq part 'below-handle)
411 (scroll-up nil))
412 ((eq part 'ratio)
413 (let* ((portion-whole (nth 2 end-position))
414 (lines (scroll-bar-scale portion-whole
415 (1- (window-height)))))
416 (scroll-up (cond ((not (zerop lines)) lines)
417 ((< (car portion-whole) 0) -1)
418 (t 1)))))
419 ((eq part 'up)
420 (scroll-up -1))
421 ((eq part 'down)
422 (scroll-up 1))
423 ((eq part 'top)
424 (set-window-start window (point-min)))
425 ((eq part 'bottom)
426 (goto-char (point-max))
427 (recenter))
428 ((eq part 'handle)
429 (scroll-bar-drag-1 event))))
430 (sit-for 0)
431 (with-current-buffer (window-buffer window)
432 (setq point-before-scroll before-scroll))))))
434 (defun scroll-bar-toolkit-horizontal-scroll (event)
435 "Handle event EVENT on horizontal scroll bar."
436 (interactive "e")
437 (let* ((end-position (event-end event))
438 (window (nth 0 end-position))
439 (part (nth 4 end-position))
440 (bidi-factor
441 (if (eq (current-bidi-paragraph-direction (window-buffer window))
442 'left-to-right)
444 -1))
445 before-scroll)
446 (cond
447 ((eq part 'end-scroll))
449 (with-current-buffer (window-buffer window)
450 (setq before-scroll point-before-scroll))
451 (save-selected-window
452 (select-window window)
453 (setq before-scroll (or before-scroll (point)))
454 (cond
455 ((eq part 'before-handle)
456 (scroll-right (* bidi-factor 4)))
457 ((eq part 'after-handle)
458 (scroll-left (* bidi-factor 4)))
459 ((eq part 'ratio)
460 (let* ((portion-whole (nth 2 end-position))
461 (columns (scroll-bar-scale portion-whole
462 (1- (window-width)))))
463 (scroll-right
464 (* (cond
465 ((not (zerop columns))
466 columns)
467 ((< (car portion-whole) 0) -1)
468 (t 1))
469 bidi-factor))))
470 ((eq part 'left)
471 (scroll-right (* bidi-factor 1)))
472 ((eq part 'right)
473 (scroll-left (* bidi-factor 1)))
474 ((eq part 'leftmost)
475 (goto-char (if (eq bidi-factor 1)
476 (line-beginning-position)
477 (line-end-position))))
478 ((eq part 'rightmost)
479 (goto-char (if (eq bidi-factor 1)
480 (line-end-position)
481 (line-beginning-position))))
482 ((eq part 'horizontal-handle)
483 (scroll-bar-horizontal-drag-1 event))))
484 (sit-for 0)
485 (with-current-buffer (window-buffer window)
486 (setq point-before-scroll before-scroll))))))
488 ;;;; Bindings.
490 ;; For now, we'll set things up to work like xterm.
491 (cond ((and (boundp 'x-toolkit-scroll-bars) x-toolkit-scroll-bars)
492 (global-set-key [vertical-scroll-bar mouse-1]
493 'scroll-bar-toolkit-scroll)
494 (global-set-key [horizontal-scroll-bar mouse-1]
495 'scroll-bar-toolkit-horizontal-scroll))
497 (global-set-key [vertical-scroll-bar mouse-1]
498 'scroll-bar-scroll-up)
499 (global-set-key [vertical-scroll-bar drag-mouse-1]
500 'scroll-bar-scroll-up)
501 (global-set-key [vertical-scroll-bar down-mouse-2]
502 'scroll-bar-drag)
503 (global-set-key [vertical-scroll-bar mouse-3]
504 'scroll-bar-scroll-down)
505 (global-set-key [vertical-scroll-bar drag-mouse-3]
506 'scroll-bar-scroll-down)))
509 (provide 'scroll-bar)
511 ;;; scroll-bar.el ends here