Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / mouse-sel.el
1 ;;; mouse-sel.el --- multi-click selection support
2
3 ;; Copyright (C) 1993-1995, 2001-2012 Free Software Foundation, Inc.
4
5 ;; Author: Mike Williams <mdub@bigfoot.com>
6 ;; Keywords: mouse
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This module provides multi-click mouse support for GNU Emacs versions
26 ;; 19.18 and later. I've tried to make it behave more like standard X
27 ;; clients (eg. xterm) than the default Emacs 19 mouse selection handlers.
28 ;; Basically:
29 ;;
30 ;; * Clicking mouse-1 starts (cancels) selection, dragging extends it.
31 ;;
32 ;; * Clicking or dragging mouse-3 extends the selection as well.
33 ;;
34 ;; * Double-clicking on word constituents selects words.
35 ;; Double-clicking on symbol constituents selects symbols.
36 ;; Double-clicking on quotes or parentheses selects sexps.
37 ;; Double-clicking on whitespace selects whitespace.
38 ;; Triple-clicking selects lines.
39 ;; Quad-clicking selects paragraphs.
40 ;;
41 ;; * Selecting sets the region & X primary selection, but does NOT affect
42 ;; the kill-ring. Because the mouse handlers set the primary selection
43 ;; directly, mouse-sel sets the variables interprogram-cut-function
44 ;; and interprogram-paste-function to nil.
45 ;;
46 ;; * Clicking mouse-2 inserts the contents of the primary selection at
47 ;; the mouse position (or point, if mouse-yank-at-point is non-nil).
48 ;;
49 ;; * Pressing mouse-2 while selecting or extending copies selection
50 ;; to the kill ring. Pressing mouse-1 or mouse-3 kills it.
51 ;;
52 ;; * Double-clicking mouse-3 also kills selection.
53 ;;
54 ;; * M-mouse-1, M-mouse-2 & M-mouse-3 work similarly to mouse-1, mouse-2
55 ;; & mouse-3, but operate on the X secondary selection rather than the
56 ;; primary selection and region.
57 ;;
58 ;; This module requires my thingatpt.el module, which it uses to find the
59 ;; bounds of words, lines, sexps, etc.
60 ;;
61 ;; Thanks to KevinB@bartley.demon.co.uk for his useful input.
62 ;;
63 ;;--- Customization -------------------------------------------------------
64 ;;
65 ;; * You may want to use none or more of following:
66 ;;
67 ;; ;; Enable region highlight
68 ;; (transient-mark-mode 1)
69 ;;
70 ;; ;; But only in the selected window
71 ;; (setq highlight-nonselected-windows nil)
72 ;;
73 ;; ;; Enable pending-delete
74 ;; (delete-selection-mode 1)
75 ;;
76 ;; * You can control the way mouse-sel binds its keys by setting the value
77 ;; of mouse-sel-default-bindings before loading mouse-sel.
78 ;;
79 ;; (a) If mouse-sel-default-bindings = t (the default)
80 ;;
81 ;; Mouse sets and insert selection
82 ;; mouse-1 mouse-select
83 ;; mouse-2 mouse-insert-selection
84 ;; mouse-3 mouse-extend
85 ;;
86 ;; Selection/kill-ring interaction is disabled
87 ;; interprogram-cut-function = nil
88 ;; interprogram-paste-function = nil
89 ;;
90 ;; (b) If mouse-sel-default-bindings = 'interprogram-cut-paste
91 ;;
92 ;; Mouse sets selection, and pastes from kill-ring
93 ;; mouse-1 mouse-select
94 ;; mouse-2 mouse-insert-selection
95 ;; mouse-3 mouse-extend
96 ;; In this mode, mouse-insert-selection just calls mouse-yank-at-click.
97 ;;
98 ;; Selection/kill-ring interaction is retained
99 ;; interprogram-cut-function = x-select-text
100 ;; interprogram-paste-function = x-selection-value
101 ;;
102 ;; What you lose is the ability to select some text in
103 ;; delete-selection-mode and yank over the top of it.
104 ;;
105 ;; (c) If mouse-sel-default-bindings = nil, no bindings are made.
106 ;;
107 ;; * By default, mouse-insert-selection (mouse-2) inserts the selection at
108 ;; the mouse position. You can tell it to insert at point instead with:
109 ;;
110 ;; (setq mouse-yank-at-point t)
111 ;;
112 ;; * I like to leave point at the end of the region nearest to where the
113 ;; mouse was, even though this makes region highlighting mis-leading (the
114 ;; cursor makes it look like one extra character is selected). You can
115 ;; disable this behavior with:
116 ;;
117 ;; (setq mouse-sel-leave-point-near-mouse nil)
118 ;;
119 ;; * By default, mouse-select cycles the click count after 4 clicks. That
120 ;; is, clicking mouse-1 five times has the same effect as clicking it
121 ;; once, clicking six times has the same effect as clicking twice, etc.
122 ;; Disable this behavior with:
123 ;;
124 ;; (setq mouse-sel-cycle-clicks nil)
125 ;;
126 ;; * The variables mouse-sel-{set,get}-selection-function control how the
127 ;; selection is handled. Under X Windows, these variables default so
128 ;; that the X primary selection is used. Under other windowing systems,
129 ;; alternate functions are used, which simply store the selection value
130 ;; in a variable.
131
132 ;;; Code:
133
134 (require 'mouse)
135 (require 'thingatpt)
136
137 (eval-when-compile
138 (require 'cl))
139
140 ;;=== User Variables ======================================================
141
142 (defgroup mouse-sel nil
143 "Mouse selection enhancement."
144 :group 'mouse)
145
146 (defcustom mouse-sel-leave-point-near-mouse t
147 "Leave point near last mouse position.
148 If non-nil, \\[mouse-select] and \\[mouse-extend] will leave point at the end
149 of the region nearest to where the mouse last was.
150 If nil, point will always be placed at the beginning of the region."
151 :type 'boolean
152 :group 'mouse-sel)
153
154 (defcustom mouse-sel-cycle-clicks t
155 "If non-nil, \\[mouse-select] cycles the click-counts after 4 clicks."
156 :type 'boolean
157 :group 'mouse-sel)
158
159 (defcustom mouse-sel-default-bindings t
160 "Control mouse bindings."
161 :type '(choice (const :tag "none" nil)
162 (const :tag "cut and paste" interprogram-cut-paste)
163 (other :tag "default bindings" t))
164 :group 'mouse-sel)
165
166 ;;=== Key bindings ========================================================
167
168 (defconst mouse-sel-bound-events
169 '(;; Primary selection bindings.
170 ;;
171 ;; Bind keys to `ignore' instead of unsetting them because modes may
172 ;; bind `down-mouse-1', for instance, without binding `mouse-1'.
173 ;; If we unset `mouse-1', this leads to a bitch_at_user when the
174 ;; mouse goes up because no matching binding is found for that.
175 ([mouse-1] . ignore)
176 ([drag-mouse-1] . ignore)
177 ([mouse-3] . ignore)
178 ([down-mouse-1] . mouse-select)
179 ([down-mouse-3] . mouse-extend)
180 ([mouse-2] . mouse-insert-selection)
181 ;; Secondary selection bindings.
182 ([M-mouse-1] . ignore)
183 ([M-drag-mouse-1] . ignore)
184 ([M-mouse-3] . ignore)
185 ([M-down-mouse-1] . mouse-select-secondary)
186 ([M-mouse-2] . mouse-insert-secondary)
187 ([M-down-mouse-3] . mouse-extend-secondary))
188 "An alist of events that `mouse-sel-mode' binds.")
189
190 ;;=== User Command ========================================================
191
192 (defvar mouse-sel-has-been-enabled nil
193 "Non-nil if Mouse Sel mode has been enabled at least once.")
194
195 (defvar mouse-sel-original-bindings nil)
196 (defvar mouse-sel-original-interprogram-cut-function nil)
197 (defvar mouse-sel-original-interprogram-paste-function nil)
198
199 ;;;###autoload
200 (define-minor-mode mouse-sel-mode
201 "Toggle Mouse Sel mode.
202 With a prefix argument ARG, enable Mouse Sel mode if ARG is
203 positive, and disable it otherwise. If called from Lisp, enable
204 the mode if ARG is omitted or nil.
205
206 Mouse Sel mode is a global minor mode. When enabled, mouse
207 selection is enhanced in various ways:
208
209 - Double-clicking on symbol constituents selects symbols.
210 Double-clicking on quotes or parentheses selects sexps.
211 Double-clicking on whitespace selects whitespace.
212 Triple-clicking selects lines.
213 Quad-clicking selects paragraphs.
214
215 - Selecting sets the region & X primary selection, but does NOT affect
216 the `kill-ring', nor do the kill-ring functions change the X selection.
217 Because the mouse handlers set the primary selection directly,
218 mouse-sel sets the variables `interprogram-cut-function' and
219 `interprogram-paste-function' to nil.
220
221 - Clicking mouse-2 inserts the contents of the primary selection at
222 the mouse position (or point, if `mouse-yank-at-point' is non-nil).
223
224 - mouse-2 while selecting or extending copies selection to the
225 kill ring; mouse-1 or mouse-3 kills it."
226 :global t
227 :group 'mouse-sel
228 (if mouse-sel-mode
229 (progn
230 ;; If mouse-2 has never been done by the user, initialize the
231 ;; `event-kind' property to ensure that `follow-link' clicks
232 ;; are interpreted correctly.
233 (put 'mouse-2 'event-kind 'mouse-click)
234 (add-hook 'x-lost-selection-functions 'mouse-sel-lost-selection-hook)
235 (when mouse-sel-default-bindings
236 ;; Save original bindings and replace them with new ones.
237 (setq mouse-sel-original-bindings
238 (mapcar (lambda (binding)
239 (let ((event (car binding)))
240 (prog1 (cons event (lookup-key global-map event))
241 (global-set-key event (cdr binding)))))
242 mouse-sel-bound-events))
243 ;; Update interprogram functions.
244 (setq mouse-sel-original-interprogram-cut-function
245 interprogram-cut-function
246 mouse-sel-original-interprogram-paste-function
247 interprogram-paste-function
248 mouse-sel-has-been-enabled t)
249 (unless (eq mouse-sel-default-bindings 'interprogram-cut-paste)
250 (setq interprogram-cut-function nil
251 interprogram-paste-function nil))))
252
253 ;; Restore original bindings
254 (remove-hook 'x-lost-selection-functions 'mouse-sel-lost-selection-hook)
255 (dolist (binding mouse-sel-original-bindings)
256 (global-set-key (car binding) (cdr binding)))
257 ;; Restore the old values of these variables,
258 ;; only if they were actually saved previously.
259 (if mouse-sel-has-been-enabled
260 (setq interprogram-cut-function
261 mouse-sel-original-interprogram-cut-function
262 interprogram-paste-function
263 mouse-sel-original-interprogram-paste-function))))
264
265 ;;=== Internal Variables/Constants ========================================
266
267 (defvar mouse-sel-primary-thing nil
268 "Type of PRIMARY selection in current buffer.")
269 (make-variable-buffer-local 'mouse-sel-primary-thing)
270
271 (defvar mouse-sel-secondary-thing nil
272 "Type of SECONDARY selection in current buffer.")
273 (make-variable-buffer-local 'mouse-sel-secondary-thing)
274
275 ;; Ensure that secondary overlay is defined
276 (unless (overlayp mouse-secondary-overlay)
277 (setq mouse-secondary-overlay (make-overlay 1 1))
278 (overlay-put mouse-secondary-overlay 'face 'secondary-selection))
279
280 (defconst mouse-sel-primary-overlay
281 (let ((ol (make-overlay (point-min) (point-min))))
282 (delete-overlay ol)
283 (overlay-put ol 'face 'region)
284 ol)
285 "An overlay which records the current primary selection.
286 This is used by Mouse Sel mode only.")
287
288 (defconst mouse-sel-selection-alist
289 '((PRIMARY mouse-sel-primary-overlay mouse-sel-primary-thing)
290 (SECONDARY mouse-secondary-overlay mouse-sel-secondary-thing))
291 "Alist associating selections with variables.
292 Each element is of the form:
293
294 (SELECTION-NAME OVERLAY-SYMBOL SELECTION-THING-SYMBOL)
295
296 where SELECTION-NAME = name of selection
297 OVERLAY-SYMBOL = name of variable containing overlay to use
298 SELECTION-THING-SYMBOL = name of variable where the current selection
299 type for this selection should be stored.")
300
301 (declare-function x-select-text "term/common-win" (text))
302
303 (defvar mouse-sel-set-selection-function
304 (if (eq mouse-sel-default-bindings 'interprogram-cut-paste)
305 'x-set-selection
306 (lambda (selection value)
307 (if (eq selection 'PRIMARY)
308 (x-select-text value)
309 (x-set-selection selection value))))
310 "Function to call to set selection.
311 Called with two arguments:
312
313 SELECTION, the name of the selection concerned, and
314 VALUE, the text to store.
315
316 This sets the selection, unless `mouse-sel-default-bindings'
317 is `interprogram-cut-paste'.")
318
319 (declare-function x-selection-value "term/x-win" ())
320
321 (defvar mouse-sel-get-selection-function
322 (lambda (selection)
323 (if (eq selection 'PRIMARY)
324 (or (x-selection-value)
325 (bound-and-true-p x-last-selected-text)
326 (bound-and-true-p x-last-selected-text-primary))
327 (x-get-selection selection)))
328 "Function to call to get the selection.
329 Called with one argument:
330
331 SELECTION: the name of the selection concerned.")
332
333 ;;=== Support/access functions ============================================
334
335 (defun mouse-sel-determine-selection-thing (nclicks)
336 "Determine what `thing' `mouse-sel' should operate on.
337 The first argument is NCLICKS, is the number of consecutive
338 mouse clicks at the same position.
339
340 Double-clicking on word constituents selects words.
341 Double-clicking on symbol constituents selects symbols.
342 Double-clicking on quotes or parentheses selects sexps.
343 Double-clicking on whitespace selects whitespace.
344 Triple-clicking selects lines.
345 Quad-clicking selects paragraphs.
346
347 Feel free to re-define this function to support your own desired
348 multi-click semantics."
349 (let* ((next-char (char-after (point)))
350 (char-syntax (if next-char (char-syntax next-char))))
351 (if mouse-sel-cycle-clicks
352 (setq nclicks (1+ (% (1- nclicks) 4))))
353 (cond
354 ((= nclicks 1) nil)
355 ((= nclicks 3) 'line)
356 ((>= nclicks 4) 'paragraph)
357 ((memq char-syntax '(?\( ?\) ?\" ?')) 'sexp)
358 ((memq next-char '(?\s ?\t ?\n)) 'whitespace)
359 ((eq char-syntax ?_) 'symbol)
360 ((eq char-syntax ?w) 'word))))
361
362 (defun mouse-sel-set-selection (selection value)
363 "Set the specified SELECTION to VALUE."
364 (if mouse-sel-set-selection-function
365 (funcall mouse-sel-set-selection-function selection value)
366 (put 'mouse-sel-internal-selection selection value)))
367
368 (defun mouse-sel-get-selection (selection)
369 "Get the value of the specified SELECTION."
370 (if mouse-sel-get-selection-function
371 (funcall mouse-sel-get-selection-function selection)
372 (get 'mouse-sel-internal-selection selection)))
373
374 (defun mouse-sel-selection-overlay (selection)
375 "Return overlay corresponding to SELECTION."
376 (let ((symbol (nth 1 (assoc selection mouse-sel-selection-alist))))
377 (or symbol (error "No overlay corresponding to %s selection" selection))
378 (symbol-value symbol)))
379
380 (defun mouse-sel-selection-thing (selection)
381 "Return overlay corresponding to SELECTION."
382 (let ((symbol (nth 2 (assoc selection mouse-sel-selection-alist))))
383 (or symbol (error "No symbol corresponding to %s selection" selection))
384 symbol))
385
386 (defun mouse-sel-region-to-primary (orig-window)
387 "Convert region to PRIMARY overlay and deactivate region.
388 Argument ORIG-WINDOW specifies the window the cursor was in when the
389 originating command was issued, and is used to determine whether the
390 region was visible or not."
391 (if transient-mark-mode
392 (let ((overlay (mouse-sel-selection-overlay 'PRIMARY)))
393 (cond
394 ((and mark-active
395 (or highlight-nonselected-windows
396 (eq orig-window (selected-window))))
397 ;; Region was visible, so convert region to overlay
398 (move-overlay overlay (region-beginning) (region-end)
399 (current-buffer)))
400 ((eq orig-window (selected-window))
401 ;; Point was visible, so set overlay at point
402 (move-overlay overlay (point) (point) (current-buffer)))
403 (t
404 ;; Nothing was visible, so remove overlay
405 (delete-overlay overlay)))
406 (setq mark-active nil))))
407
408 (defun mouse-sel-primary-to-region (&optional direction)
409 "Convert PRIMARY overlay to region.
410 Optional argument DIRECTION specifies the mouse drag direction: a value of
411 1 indicates that the mouse was dragged left-to-right, otherwise it was
412 dragged right-to-left."
413 (let* ((overlay (mouse-sel-selection-overlay 'PRIMARY))
414 (start (overlay-start overlay))
415 (end (overlay-end overlay)))
416 (if (eq start end)
417 (progn
418 (if start (goto-char start))
419 (deactivate-mark))
420 (if (and mouse-sel-leave-point-near-mouse (eq direction 1))
421 (progn
422 (goto-char end)
423 (push-mark start 'nomsg 'active))
424 (goto-char start)
425 (push-mark end 'nomsg 'active)))
426 (if transient-mark-mode (delete-overlay overlay))))
427
428 (defmacro mouse-sel-eval-at-event-end (event &rest forms)
429 "Evaluate forms at mouse position.
430 Move to the end position of EVENT, execute FORMS, and restore original
431 point and window."
432 `(let ((posn (event-end ,event)))
433 (if posn (mouse-minibuffer-check ,event))
434 (if (and posn (not (windowp (posn-window posn))))
435 (error "Cursor not in text area of window"))
436 (let (orig-window orig-point-marker)
437 (setq orig-window (selected-window))
438 (if posn (select-window (posn-window posn)))
439 (setq orig-point-marker (point-marker))
440 (if (and posn (numberp (posn-point posn)))
441 (goto-char (posn-point posn)))
442 (unwind-protect
443 (progn
444 ,@forms)
445 (goto-char (marker-position orig-point-marker))
446 (move-marker orig-point-marker nil)
447 (select-window orig-window)))))
448
449 (put 'mouse-sel-eval-at-event-end 'lisp-indent-hook 1)
450
451 ;;=== Select ==============================================================
452
453 (defun mouse-select (event)
454 "Set region/selection using the mouse.
455
456 Click sets point & mark to click position.
457 Dragging extends region/selection.
458
459 Multi-clicking selects word/lines/paragraphs, as determined by
460 'mouse-sel-determine-selection-thing.
461
462 Clicking mouse-2 while selecting copies selected text to the kill-ring.
463 Clicking mouse-1 or mouse-3 kills the selected text.
464
465 This should be bound to a down-mouse event."
466 (interactive "@e")
467 (let (select)
468 (unwind-protect
469 (setq select (mouse-select-internal 'PRIMARY event))
470 (if (and select (listp select))
471 (push (cons 'mouse-2 (cdr event)) unread-command-events)
472 (mouse-sel-primary-to-region select)))))
473
474 (defun mouse-select-secondary (event)
475 "Set secondary selection using the mouse.
476
477 Click sets the start of the secondary selection to click position.
478 Dragging extends the secondary selection.
479
480 Multi-clicking selects word/lines/paragraphs, as determined by
481 'mouse-sel-determine-selection-thing.
482
483 Clicking mouse-2 while selecting copies selected text to the kill-ring.
484 Clicking mouse-1 or mouse-3 kills the selected text.
485
486 This should be bound to a down-mouse event."
487 (interactive "e")
488 (mouse-select-internal 'SECONDARY event))
489
490 (defun mouse-select-internal (selection event)
491 "Set SELECTION using the mouse, with EVENT as the initial down-event.
492 Normally, this returns the direction in which the selection was
493 made: a value of 1 indicates that the mouse was dragged
494 left-to-right, otherwise it was dragged right-to-left.
495
496 However, if `mouse-1-click-follows-link' is non-nil and the
497 subsequent mouse events specify following a link, this returns
498 the final mouse-event. In that case, the selection is not set."
499 (mouse-sel-eval-at-event-end event
500 (let ((thing-symbol (mouse-sel-selection-thing selection))
501 (overlay (mouse-sel-selection-overlay selection)))
502 (set thing-symbol
503 (mouse-sel-determine-selection-thing (event-click-count event)))
504 (let ((object-bounds (bounds-of-thing-at-point
505 (symbol-value thing-symbol))))
506 (if object-bounds
507 (progn
508 (move-overlay overlay
509 (car object-bounds) (cdr object-bounds)
510 (current-buffer)))
511 (move-overlay overlay (point) (point) (current-buffer)))))
512 (catch 'follow-link
513 (mouse-extend-internal selection event t))))
514
515 ;;=== Extend ==============================================================
516
517 (defun mouse-extend (event)
518 "Extend region/selection using the mouse."
519 (interactive "e")
520 (let ((orig-window (selected-window))
521 direction)
522 (select-window (posn-window (event-end event)))
523 (unwind-protect
524 (progn
525 (mouse-sel-region-to-primary orig-window)
526 (setq direction (mouse-extend-internal 'PRIMARY event)))
527 (mouse-sel-primary-to-region direction))))
528
529 (defun mouse-extend-secondary (event)
530 "Extend secondary selection using the mouse."
531 (interactive "e")
532 (save-window-excursion
533 (mouse-extend-internal 'SECONDARY event)))
534
535 (defun mouse-extend-internal (selection &optional initial-event no-process)
536 "Extend specified SELECTION using the mouse.
537 Track mouse-motion events, adjusting the SELECTION appropriately.
538 Optional argument INITIAL-EVENT specifies an initial down-mouse event.
539 Optional argument NO-PROCESS means not to process the initial
540 event.
541
542 See documentation for mouse-select-internal for more details."
543 (mouse-sel-eval-at-event-end initial-event
544 (let ((orig-cursor-type
545 (cdr (assoc 'cursor-type (frame-parameters (selected-frame))))))
546 (unwind-protect
547
548 (let* ((thing-symbol (mouse-sel-selection-thing selection))
549 (overlay (mouse-sel-selection-overlay selection))
550 (orig-window (selected-window))
551 (top (nth 1 (window-edges orig-window)))
552 (bottom (nth 3 (window-edges orig-window)))
553 (mark-active nil) ; inhibit normal region highlight
554 (echo-keystrokes 0) ; don't echo mouse events
555 min max
556 direction
557 event)
558
559 ;; Get current bounds of overlay
560 (if (eq (overlay-buffer overlay) (current-buffer))
561 (setq min (overlay-start overlay)
562 max (overlay-end overlay))
563 (setq min (point)
564 max min)
565 (set thing-symbol nil))
566
567
568 ;; Bar cursor
569 (if (fboundp 'modify-frame-parameters)
570 (modify-frame-parameters (selected-frame)
571 '((cursor-type . bar))))
572
573 ;; Handle dragging
574 (track-mouse
575
576 (while (if (and initial-event (not no-process))
577 ;; Use initial event
578 (prog1
579 (setq event initial-event)
580 (setq initial-event nil))
581 (setq event (read-event))
582 (and (consp event)
583 (memq (car event) '(mouse-movement switch-frame))))
584
585 (let ((selection-thing (symbol-value thing-symbol))
586 (end (event-end event)))
587
588 (cond
589
590 ;; Ignore any movement outside the frame
591 ((eq (car-safe event) 'switch-frame) nil)
592 ((and (posn-window end)
593 (not (eq (let ((posn-w (posn-window end)))
594 (if (windowp posn-w)
595 (window-frame posn-w)
596 posn-w))
597 (window-frame orig-window)))) nil)
598
599 ;; Different window, same frame
600 ((not (eq (posn-window end) orig-window))
601 (let ((end-row (cdr (cdr (mouse-position)))))
602 (cond
603 ((and end-row (not (bobp)) (< end-row top))
604 (mouse-scroll-subr orig-window (- end-row top)
605 overlay max))
606 ((and end-row (not (eobp)) (>= end-row bottom))
607 (mouse-scroll-subr orig-window (1+ (- end-row bottom))
608 overlay min))
609 )))
610
611 ;; On the mode line
612 ((eq (posn-point end) 'mode-line)
613 (mouse-scroll-subr orig-window 1 overlay min))
614
615 ;; In original window
616 (t (goto-char (posn-point end)))
617
618 )
619
620 ;; Determine direction of drag
621 (cond
622 ((and (not direction) (not (eq min max)))
623 (setq direction (if (< (point) (/ (+ min max) 2)) -1 1)))
624 ((and (not (eq direction -1)) (<= (point) min))
625 (setq direction -1))
626 ((and (not (eq direction 1)) (>= (point) max))
627 (setq direction 1)))
628
629 (if (not selection-thing) nil
630
631 ;; If dragging forward, goal is next character
632 (if (and (eq direction 1) (not (eobp))) (forward-char 1))
633
634 ;; Move to start/end of selected thing
635 (let ((goal (point)))
636 (goto-char (if (eq 1 direction) min max))
637 (condition-case nil
638 (progn
639 (while (> (* direction (- goal (point))) 0)
640 (forward-thing selection-thing direction))
641 (let ((end (point)))
642 (forward-thing selection-thing (- direction))
643 (goto-char
644 (if (> (* direction (- goal (point))) 0)
645 end (point)))))
646 (error))))
647
648 ;; Move overlay
649 (move-overlay overlay
650 (if (eq 1 direction) min (point))
651 (if (eq -1 direction) max (point))
652 (current-buffer))
653
654 ))) ; end track-mouse
655
656 ;; Detect follow-link events
657 (when (mouse-sel-follow-link-p initial-event event)
658 (throw 'follow-link event))
659
660 ;; Finish up after dragging
661 (let ((overlay-start (overlay-start overlay))
662 (overlay-end (overlay-end overlay)))
663
664 ;; Set selection
665 (if (not (eq overlay-start overlay-end))
666 (mouse-sel-set-selection
667 selection
668 (buffer-substring overlay-start overlay-end)))
669
670 ;; Handle copy/kill
671 (let (this-command)
672 (cond
673 ((eq (event-basic-type last-input-event) 'mouse-2)
674 (copy-region-as-kill overlay-start overlay-end)
675 (read-event) (read-event))
676 ((and (memq (event-basic-type last-input-event)
677 '(mouse-1 mouse-3))
678 (memq 'down (event-modifiers last-input-event)))
679 (kill-region overlay-start overlay-end)
680 (move-overlay overlay overlay-start overlay-start)
681 (read-event) (read-event))
682 ((and (eq (event-basic-type last-input-event) 'mouse-3)
683 (memq 'double (event-modifiers last-input-event)))
684 (kill-region overlay-start overlay-end)
685 (move-overlay overlay overlay-start overlay-start)))))
686
687 direction)
688
689 ;; Restore cursor
690 (if (fboundp 'modify-frame-parameters)
691 (modify-frame-parameters
692 (selected-frame) (list (cons 'cursor-type orig-cursor-type))))
693
694 ))))
695
696 (defun mouse-sel-follow-link-p (initial final)
697 "Return t if we should follow a link, given INITIAL and FINAL mouse events.
698 See `mouse-1-click-follows-link' for details. Currently, Mouse
699 Sel mode does not support using a `double' value to follow links
700 using double-clicks."
701 (and initial final mouse-1-click-follows-link
702 (eq (car initial) 'down-mouse-1)
703 (mouse-on-link-p (event-start initial))
704 (= (posn-point (event-start initial))
705 (posn-point (event-end final)))
706 (= (event-click-count initial) 1)
707 (or (not (integerp mouse-1-click-follows-link))
708 (let ((t0 (posn-timestamp (event-start initial)))
709 (t1 (posn-timestamp (event-end final))))
710 (and (integerp t0) (integerp t1)
711 (if (> mouse-1-click-follows-link 0)
712 (<= (- t1 t0) mouse-1-click-follows-link)
713 (< (- t0 t1) mouse-1-click-follows-link)))))))
714
715 ;;=== Paste ===============================================================
716
717 (defun mouse-insert-selection (event arg)
718 "Insert the contents of the PRIMARY selection at mouse click.
719 If `mouse-yank-at-point' is non-nil, insert at point instead."
720 (interactive "e\nP")
721 (if (eq mouse-sel-default-bindings 'interprogram-cut-paste)
722 (mouse-yank-at-click event arg)
723 (mouse-insert-selection-internal 'PRIMARY event)))
724
725 (defun mouse-insert-secondary (event)
726 "Insert the contents of the SECONDARY selection at mouse click.
727 If `mouse-yank-at-point' is non-nil, insert at point instead."
728 (interactive "e")
729 (mouse-insert-selection-internal 'SECONDARY event))
730
731 (defun mouse-insert-selection-internal (selection event)
732 "Insert the contents of the named SELECTION at mouse click.
733 If `mouse-yank-at-point' is non-nil, insert at point instead."
734 (unless mouse-yank-at-point
735 (mouse-set-point event))
736 (when mouse-sel-get-selection-function
737 (push-mark (point) 'nomsg)
738 (insert-for-yank
739 (or (funcall mouse-sel-get-selection-function selection) ""))))
740
741 ;;=== Handle loss of selections ===========================================
742
743 (defun mouse-sel-lost-selection-hook (selection)
744 "Remove the overlay for a lost selection."
745 (let ((overlay (mouse-sel-selection-overlay selection)))
746 (delete-overlay overlay)))
747
748 (provide 'mouse-sel)
749
750 ;;; mouse-sel.el ends here