summaryrefslogtreecommitdiff
path: root/lisp/scroll-bar.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-05-11 18:30:16 +0000
committerRichard M. Stallman <rms@gnu.org>1996-05-11 18:30:16 +0000
commit0fad997f2c08d857105f87c167f4042c89671345 (patch)
treedd0df3623bd071a47bf840c69701c30f6aeb1a50 /lisp/scroll-bar.el
parent6e477c7b337365ada1bb4284f3c42a089a0b7db5 (diff)
downloademacs-0fad997f2c08d857105f87c167f4042c89671345.tar.gz
(scroll-bar-drag-position): New function.
(scroll-bar-maybe-set-window-start): New function.
Diffstat (limited to 'lisp/scroll-bar.el')
-rw-r--r--lisp/scroll-bar.el32
1 files changed, 32 insertions, 0 deletions
diff --git a/lisp/scroll-bar.el b/lisp/scroll-bar.el
index 07d78e2c985..98b90856574 100644
--- a/lisp/scroll-bar.el
+++ b/lisp/scroll-bar.el
@@ -114,6 +114,38 @@ EVENT should be a scroll bar click or drag event."
(beginning-of-line)
(set-window-start window (point))))))
+(defun scroll-bar-drag-position (portion-whole)
+ "Calculate new window start for drag event."
+ (save-excursion
+ (goto-char (+ (point-min)
+ (scroll-bar-scale portion-whole
+ (- (point-max) (point-min)))))
+ (beginning-of-line)
+ (point)))
+
+(defun scroll-bar-maybe-set-window-start (event)
+ "Set the window start according to where the scroll bar is dragged.
+Only change window start if the new start is substantially different.
+EVENT should be a scroll bar click or drag event."
+ (interactive "e")
+ (let* ((end-position (event-end event))
+ (window (nth 0 end-position))
+ (portion-whole (nth 2 end-position))
+ (next-portion-whole (cons (1+ (car portion-whole))
+ (cdr portion-whole)))
+ portion-start
+ next-portion-start
+ (current-start (window-start window)))
+ (save-excursion
+ (set-buffer (window-buffer window))
+ (setq portion-start (scroll-bar-drag-position portion-whole))
+ (setq next-portion-start (max
+ (scroll-bar-drag-position next-portion-whole)
+ (1+ portion-start)))
+ (if (or (> current-start next-portion-start)
+ (< current-start portion-start))
+ (set-window-start window portion-start)))))
+
;; Scroll the window to the proper position for EVENT.
(defun scroll-bar-drag-1 (event)
(let* ((start-position (event-start event))