Get CFLAGS both with and without THIS_IS_CONFIGURE,
[bpt/emacs.git] / lisp / mouse.el
CommitLineData
6594deb0 1;;; mouse.el --- window system-independent mouse support.
84176303 2
d733c5ec 3;;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
eea8d4ef 4
84176303 5;; Maintainer: FSF
84176303
ER
6;; Keywords: hardware
7
cc0a8174 8;;; This file is part of GNU Emacs.
72ea54a4 9
cc0a8174
JB
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
87ef29fd 12;;; the Free Software Foundation; either version 2, or (at your option)
cc0a8174 13;;; any later version.
72ea54a4 14
cc0a8174
JB
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.
72ea54a4 19
cc0a8174
JB
20;;; You should have received a copy of the GNU General Public License
21;;; along with GNU Emacs; see the file COPYING. If not, write to
22;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
72ea54a4 23
edbd2f74
ER
24;;; Commentary:
25
26;; This package provides various useful commands (including help
27;; system access) through the mouse. All this code assumes that mouse
28;; interpretation has been abstracted into Emacs input events.
29;;
30;; The code is rather X-dependent.
31
aae56ea7
ER
32;;; Code:
33
cc0a8174 34;;; Utility functions.
72ea54a4 35
cc0a8174
JB
36;;; Indent track-mouse like progn.
37(put 'track-mouse 'lisp-indent-function 0)
72ea54a4 38
50f58001
RS
39(defvar mouse-yank-at-point nil
40 "*If non-nil, mouse yank commands yank at point instead of at click.")
cc0a8174 41\f
d65147f6
KH
42(defun mouse-minibuffer-check (event)
43 (let ((w (posn-window (event-start event))))
44 (and (window-minibuffer-p w)
45 (not (minibuffer-window-active-p w))
46 (error "Minibuffer window is not active"))))
47
cc0a8174 48(defun mouse-delete-window (click)
947da0c4 49 "Delete the window you click on.
cc0a8174 50This must be bound to a mouse click."
ec558adc 51 (interactive "e")
d65147f6 52 (mouse-minibuffer-check click)
b5370f03 53 (delete-window (posn-window (event-start click))))
cc0a8174 54
3c2dd2c0
RS
55(defun mouse-select-window (click)
56 "Select the window clicked on; don't move point."
57 (interactive "e")
d65147f6 58 (mouse-minibuffer-check click)
3c2dd2c0
RS
59 (let ((oframe (selected-frame))
60 (frame (window-frame (posn-window (event-start click)))))
61 (select-window (posn-window (event-start click)))
62 (raise-frame frame)
63 (select-frame frame)
64 (or (eq frame oframe)
65 (set-mouse-position (selected-frame) (1- (frame-width)) 0))
66 (unfocus-frame)))
67
b0f3a26b
JB
68(defun mouse-tear-off-window (click)
69 "Delete the window clicked on, and create a new frame displaying its buffer."
70 (interactive "e")
d65147f6 71 (mouse-minibuffer-check click)
b0f3a26b
JB
72 (let* ((window (posn-window (event-start click)))
73 (buf (window-buffer window))
01a911e3 74 (frame (make-frame)))
b0f3a26b
JB
75 (select-frame frame)
76 (switch-to-buffer buf)
77 (delete-window window)))
78
b5370f03 79(defun mouse-delete-other-windows ()
947da0c4 80 "Delete all window except the one you click on."
b5370f03 81 (interactive "@")
cc0a8174 82 (delete-other-windows))
72ea54a4 83
cc0a8174
JB
84(defun mouse-split-window-vertically (click)
85 "Select Emacs window mouse is on, then split it vertically in half.
86The window is split at the line clicked on.
87This command must be bound to a mouse click."
947da0c4 88 (interactive "@e")
d65147f6 89 (mouse-minibuffer-check click)
b5370f03
JB
90 (let ((start (event-start click)))
91 (select-window (posn-window start))
85d6b80b 92 (let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
5ba2dc3f
JB
93 (first-line window-min-height)
94 (last-line (- (window-height) window-min-height)))
95 (if (< last-line first-line)
96 (error "window too short to split")
97 (split-window-vertically
98 (min (max new-height first-line) last-line))))))
cc0a8174 99
947da0c4
RS
100(defun mouse-split-window-horizontally (click)
101 "Select Emacs window mouse is on, then split it horizontally in half.
102The window is split at the column clicked on.
103This command must be bound to a mouse click."
104 (interactive "@e")
d65147f6 105 (mouse-minibuffer-check click)
5ba2dc3f
JB
106 (let ((start (event-start click)))
107 (select-window (posn-window start))
108 (let ((new-width (1+ (car (posn-col-row (event-end click)))))
109 (first-col window-min-width)
110 (last-col (- (window-width) window-min-width)))
111 (if (< last-col first-col)
112 (error "window too narrow to split")
113 (split-window-horizontally
114 (min (max new-width first-col) last-col))))))
947da0c4 115
2a5fa27b 116(defun mouse-set-point (event)
cc0a8174 117 "Move point to the position clicked on with the mouse.
2a5fa27b 118This should be bound to a mouse click event type."
ec558adc 119 (interactive "e")
d65147f6 120 (mouse-minibuffer-check event)
2a5fa27b
RS
121 ;; Use event-end in case called from mouse-drag-region.
122 ;; If EVENT is a click, event-end and event-start give same value.
123 (let ((posn (event-end event)))
b5370f03
JB
124 (select-window (posn-window posn))
125 (if (numberp (posn-point posn))
126 (goto-char (posn-point posn)))))
cc0a8174 127
652ccd35 128(defun mouse-set-region (click)
e37de120 129 "Set the region to the text dragged over, and copy to kill ring.
2a5fa27b 130This should be bound to a mouse drag event."
652ccd35 131 (interactive "e")
d65147f6 132 (mouse-minibuffer-check click)
652ccd35
RS
133 (let ((posn (event-start click))
134 (end (event-end click)))
135 (select-window (posn-window posn))
136 (if (numberp (posn-point posn))
137 (goto-char (posn-point posn)))
fcfc3c63
RS
138 ;; If mark is highlighted, no need to bounce the cursor.
139 (or (and transient-mark-mode
140 (eq (framep (selected-frame)) 'x))
141 (sit-for 1))
652ccd35 142 (push-mark)
1cc8a3f4 143 (set-mark (point))
652ccd35 144 (if (numberp (posn-point end))
e37de120
RS
145 (goto-char (posn-point end)))
146 ;; Don't set this-command to kill-region, so that a following
147 ;; C-w will not double the text in the kill ring.
148 (let (this-command)
149 (copy-region-as-kill (mark) (point)))))
652ccd35 150
600c6e3a
JB
151(defvar mouse-scroll-delay 0.25
152 "*The pause between scroll steps caused by mouse drags, in seconds.
153If you drag the mouse beyond the edge of a window, Emacs scrolls the
154window to bring the text beyond that edge into view, with a delay of
155this many seconds between scroll steps. Scrolling stops when you move
156the mouse back into the window, or release the button.
157This variable's value may be non-integral.
158Setting this to zero causes Emacs to scroll as fast as it can.")
159
e919a622
RS
160(defun mouse-scroll-subr (window jump &optional overlay start)
161 "Scroll the window WINDOW, JUMP lines at a time, until new input arrives.
600c6e3a
JB
162If OVERLAY is an overlay, let it stretch from START to the far edge of
163the newly visible text.
164Upon exit, point is at the far edge of the newly visible text."
165 (while (progn
e919a622
RS
166 (goto-char (window-start window))
167 (if (not (zerop (vertical-motion jump window)))
600c6e3a 168 (progn
e919a622 169 (set-window-start window (point))
600c6e3a
JB
170 (if (natnump jump)
171 (progn
e919a622 172 (goto-char (window-end window))
600c6e3a
JB
173 ;; window-end doesn't reflect the window's new
174 ;; start position until the next redisplay. Hurrah.
e919a622
RS
175 (vertical-motion (1- jump) window))
176 (goto-char (window-start window)))
600c6e3a
JB
177 (if overlay
178 (move-overlay overlay start (point)))
179 (if (not (eobp))
180 (sit-for mouse-scroll-delay))))))
181 (point))
fcfc3c63 182
600c6e3a
JB
183(defvar mouse-drag-overlay (make-overlay 1 1))
184(overlay-put mouse-drag-overlay 'face 'region)
185
dd524dbd 186(defvar mouse-selection-click-count 0)
eb6ff46f 187
600c6e3a 188(defun mouse-drag-region (start-event)
bcd5aef1 189 "Set the region to the text that the mouse is dragged over.
78210c95
RS
190Highlight the drag area as you move the mouse.
191This must be bound to a button-down mouse event.
192In Transient Mark mode, the highlighting remains once you
193release the mouse button. Otherwise, it does not."
bcd5aef1 194 (interactive "e")
d65147f6 195 (mouse-minibuffer-check start-event)
600c6e3a
JB
196 (let* ((start-posn (event-start start-event))
197 (start-point (posn-point start-posn))
198 (start-window (posn-window start-posn))
b846d039 199 (start-frame (window-frame start-window))
600c6e3a
JB
200 (bounds (window-edges start-window))
201 (top (nth 1 bounds))
202 (bottom (if (window-minibuffer-p start-window)
203 (nth 3 bounds)
204 ;; Don't count the mode line.
e37de120
RS
205 (1- (nth 3 bounds))))
206 (click-count (1- (event-click-count start-event))))
eb6ff46f 207 (setq mouse-selection-click-count click-count)
b80f1928 208 (mouse-set-point start-event)
e37de120
RS
209 (let ((range (mouse-start-end start-point start-point click-count)))
210 (move-overlay mouse-drag-overlay (car range) (nth 1 range)
211 (window-buffer start-window)))
f767385c 212 (deactivate-mark)
600c6e3a 213 (let (event end end-point)
bcd5aef1 214 (track-mouse
600c6e3a 215 (while (progn
b846d039
JB
216 (setq event (read-event))
217 (or (mouse-movement-p event)
218 (eq (car-safe event) 'switch-frame)))
b846d039
JB
219 (if (eq (car-safe event) 'switch-frame)
220 nil
221 (setq end (event-end event)
222 end-point (posn-point end))
223
224 (cond
225
226 ;; Ignore switch-frame events.
227 ((eq (car-safe event) 'switch-frame))
228
229 ;; Are we moving within the original window?
230 ((and (eq (posn-window end) start-window)
231 (integer-or-marker-p end-point))
232 (goto-char end-point)
e37de120
RS
233 (let ((range (mouse-start-end start-point (point) click-count)))
234 (move-overlay mouse-drag-overlay (car range) (nth 1 range))))
b846d039 235
50e527bc
KH
236 (t
237 (let ((mouse-row (cdr (cdr (mouse-position)))))
b846d039 238 (cond
50e527bc 239 ((null mouse-row))
b846d039 240 ((< mouse-row top)
e919a622
RS
241 (mouse-scroll-subr start-window (- mouse-row top)
242 mouse-drag-overlay start-point))
b846d039
JB
243 ((and (not (eobp))
244 (>= mouse-row bottom))
e919a622 245 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
50e527bc 246 mouse-drag-overlay start-point)))))))))
b846d039 247
600c6e3a
JB
248 (if (and (eq (get (event-basic-type event) 'event-kind) 'mouse-click)
249 (eq (posn-window (event-end event)) start-window)
250 (numberp (posn-point (event-end event))))
e37de120
RS
251 (let ((fun (key-binding (vector (car event)))))
252 (if (memq fun '(mouse-set-region mouse-set-point))
d89a4a47
RS
253 (if (not (= (overlay-start mouse-drag-overlay)
254 (overlay-end mouse-drag-overlay)))
5cb0a75a 255 (let (last-command)
d89a4a47
RS
256 (push-mark (overlay-start mouse-drag-overlay) t t)
257 (goto-char (overlay-end mouse-drag-overlay))
258 (copy-region-as-kill (point) (mark t)))
3544cfc9
RS
259 (goto-char (overlay-end mouse-drag-overlay))
260 (setq this-command 'mouse-set-point))
e37de120
RS
261 (if (fboundp fun)
262 (funcall fun event)))))
600c6e3a 263 (delete-overlay mouse-drag-overlay))))
e37de120
RS
264\f
265;; Commands to handle xterm-style multiple clicks.
600c6e3a 266
e37de120
RS
267(defun mouse-skip-word (dir)
268 "Skip over word, over whitespace, or over identical punctuation.
269If DIR is positive skip forward; if negative, skip backward."
270 (let* ((char (following-char))
271 (syntax (char-to-string (char-syntax char))))
272 (if (or (string= syntax "w") (string= syntax " "))
273 (if (< dir 0)
274 (skip-syntax-backward syntax)
275 (skip-syntax-forward syntax))
276 (if (< dir 0)
d89a4a47 277 (while (and (not (bobp)) (= (preceding-char) char))
e37de120 278 (forward-char -1))
d89a4a47 279 (while (and (not (eobp)) (= (following-char) char))
e37de120
RS
280 (forward-char 1))))))
281
282;; Return a list of region bounds based on START and END according to MODE.
283;; If MODE is 0 then set point to (min START END), mark to (max START END).
284;; If MODE is 1 then set point to start of word at (min START END),
285;; mark to end of word at (max START END).
286;; If MODE is 2 then do the same for lines.
eb6ff46f 287(defun mouse-start-end (start end mode)
e37de120
RS
288 (if (> start end)
289 (let ((temp start))
290 (setq start end
291 end temp)))
9a974c88 292 (setq mode (mod mode 3))
e37de120
RS
293 (cond ((= mode 0)
294 (list start end))
295 ((and (= mode 1)
296 (= start end)
1ec71583 297 (char-after start)
e37de120 298 (= (char-syntax (char-after start)) ?\())
6f482eec
RS
299 (list start
300 (save-excursion
301 (goto-char start)
302 (forward-sexp 1)
303 (point))))
e37de120
RS
304 ((and (= mode 1)
305 (= start end)
1ec71583 306 (char-after start)
e37de120
RS
307 (= (char-syntax (char-after start)) ?\)))
308 (list (save-excursion
309 (goto-char (1+ start))
d89a4a47
RS
310 (backward-sexp 1)
311 (point))
e37de120
RS
312 (1+ start)))
313 ((= mode 1)
314 (list (save-excursion
315 (goto-char start)
316 (mouse-skip-word -1)
317 (point))
318 (save-excursion
319 (goto-char end)
320 (mouse-skip-word 1)
321 (point))))
322 ((= mode 2)
323 (list (save-excursion
324 (goto-char start)
325 (beginning-of-line 1)
326 (point))
327 (save-excursion
328 (goto-char end)
329 (forward-line 1)
330 (point))))))
e66feb07 331\f
3f26b32a
RS
332;; Subroutine: set the mark where CLICK happened,
333;; but don't do anything else.
334(defun mouse-set-mark-fast (click)
d65147f6 335 (mouse-minibuffer-check click)
3f26b32a
RS
336 (let ((posn (event-start click)))
337 (select-window (posn-window posn))
338 (if (numberp (posn-point posn))
339 (push-mark (posn-point posn) t t))))
340
341;; Momentarily show where the mark is, if highlighting doesn't show it.
342(defun mouse-show-mark ()
343 (or transient-mark-mode
344 (save-excursion
345 (goto-char (mark t))
346 (sit-for 1))))
347
cc0a8174
JB
348(defun mouse-set-mark (click)
349 "Set mark at the position clicked on with the mouse.
350Display cursor at that position for a second.
351This must be bound to a mouse click."
ec558adc 352 (interactive "e")
72ea54a4
RS
353 (let ((point-save (point)))
354 (unwind-protect
cc0a8174 355 (progn (mouse-set-point click)
897897e3
RS
356 (push-mark nil t t)
357 (or transient-mark-mode
358 (sit-for 1)))
72ea54a4
RS
359 (goto-char point-save))))
360
cc0a8174
JB
361(defun mouse-kill (click)
362 "Kill the region between point and the mouse click.
363The text is saved in the kill ring, as with \\[kill-region]."
ec558adc 364 (interactive "e")
d65147f6 365 (mouse-minibuffer-check click)
142c7672
KH
366 (let* ((posn (event-start click))
367 (click-posn (posn-point posn)))
368 (select-window (posn-window posn))
bd307392
JB
369 (if (numberp click-posn)
370 (kill-region (min (point) click-posn)
371 (max (point) click-posn)))))
72ea54a4 372
87ef29fd
JB
373(defun mouse-yank-at-click (click arg)
374 "Insert the last stretch of killed text at the position clicked on.
50f58001
RS
375Also move point to one end of the text thus inserted (normally the end).
376Prefix arguments are interpreted as with \\[yank].
377If `mouse-yank-at-point' is non-nil, insert at point
378regardless of where you click."
ec558adc 379 (interactive "e\nP")
50f58001 380 (or mouse-yank-at-point (mouse-set-point click))
d89a4a47 381 (setq this-command 'yank)
87ef29fd
JB
382 (yank arg))
383
384(defun mouse-kill-ring-save (click)
cc0a8174
JB
385 "Copy the region between point and the mouse click in the kill ring.
386This does not delete the region; it acts like \\[kill-ring-save]."
ec558adc 387 (interactive "e")
3f26b32a
RS
388 (mouse-set-mark-fast click)
389 (kill-ring-save (point) (mark t))
390 (mouse-show-mark))
72ea54a4 391
dbc4e1c1
JB
392;;; This function used to delete the text between point and the mouse
393;;; whenever it was equal to the front of the kill ring, but some
394;;; people found that confusing.
395
396;;; A list (TEXT START END), describing the text and position of the last
397;;; invocation of mouse-save-then-kill.
398(defvar mouse-save-then-kill-posn nil)
399
26d280b9 400(defun mouse-save-then-kill-delete-region (beg end)
9a974c88
RS
401 ;; We must make our own undo boundaries
402 ;; because they happen automatically only for the current buffer.
403 (undo-boundary)
dd524dbd
RS
404 (if (or (= beg end) (eq buffer-undo-list t))
405 ;; If we have no undo list in this buffer,
406 ;; just delete.
407 (delete-region beg end)
408 ;; Delete, but make the undo-list entry share with the kill ring.
409 ;; First, delete just one char, so in case buffer is being modified
410 ;; for the first time, the undo list records that fact.
2f4b15ef
RS
411 (let (before-change-function after-change-function
412 before-change-functions after-change-functions)
413 (delete-region beg
414 (+ beg (if (> end beg) 1 -1))))
dd524dbd
RS
415 (let ((buffer-undo-list buffer-undo-list))
416 ;; Undo that deletion--but don't change the undo list!
2f4b15ef
RS
417 (let (before-change-function after-change-function
418 before-change-functions after-change-functions)
419 (primitive-undo 1 buffer-undo-list))
dd524dbd
RS
420 ;; Now delete the rest of the specified region,
421 ;; but don't record it.
422 (setq buffer-undo-list t)
9a974c88
RS
423 (if (/= (length (car kill-ring)) (- (max end beg) (min end beg)))
424 (error "Lossage in mouse-save-then-kill-delete-region"))
dd524dbd
RS
425 (delete-region beg end))
426 (let ((tail buffer-undo-list))
427 ;; Search back in buffer-undo-list for the string
428 ;; that came from deleting one character.
429 (while (and tail (not (stringp (car (car tail)))))
430 (setq tail (cdr tail)))
431 ;; Replace it with an entry for the entire deleted text.
432 (and tail
9a974c88
RS
433 (setcar tail (cons (car kill-ring) (min beg end))))))
434 (undo-boundary))
eb6ff46f 435
947da0c4 436(defun mouse-save-then-kill (click)
40a45a9f
RS
437 "Save text to point in kill ring; the second time, kill the text.
438If the text between point and the mouse is the same as what's
439at the front of the kill ring, this deletes the text.
440Otherwise, it adds the text to the kill ring, like \\[kill-ring-save],
eb6ff46f
RS
441which prepares for a second click to delete the text.
442
443If you have selected words or lines, this command extends the
444selection through the word or line clicked on. If you do this
445again in a different position, it extends the selection again.
446If you do this twice in the same position, the selection is killed."
947da0c4 447 (interactive "e")
d65147f6 448 (mouse-minibuffer-check click)
3f26b32a
RS
449 (let ((click-posn (posn-point (event-start click)))
450 ;; Don't let a subsequent kill command append to this one:
451 ;; prevent setting this-command to kill-region.
452 (this-command this-command))
9a974c88 453 (if (> (mod mouse-selection-click-count 3) 0)
eb6ff46f
RS
454 (if (not (and (eq last-command 'mouse-save-then-kill)
455 (equal click-posn
456 (car (cdr-safe (cdr-safe mouse-save-then-kill-posn))))))
d89a4a47
RS
457 ;; Find both ends of the object selected by this click.
458 (let* ((range
459 (mouse-start-end click-posn click-posn
460 mouse-selection-click-count)))
461 ;; Move whichever end is closer to the click.
462 ;; That's what xterm does, and it seems reasonable.
463 (if (< (abs (- click-posn (mark t)))
464 (abs (- click-posn (point))))
465 (set-mark (car range))
466 (goto-char (nth 1 range)))
eb6ff46f
RS
467 ;; We have already put the old region in the kill ring.
468 ;; Replace it with the extended region.
469 ;; (It would be annoying to make a separate entry.)
470 (setcar kill-ring (buffer-substring (point) (mark t)))
d89a4a47
RS
471 (if interprogram-cut-function
472 (funcall interprogram-cut-function (car kill-ring)))
473 ;; Arrange for a repeated mouse-3 to kill this region.
474 (setq mouse-save-then-kill-posn
475 (list (car kill-ring) (point) click-posn))
eb6ff46f
RS
476 (mouse-show-mark))
477 ;; If we click this button again without moving it,
478 ;; that time kill.
dd524dbd
RS
479 (mouse-save-then-kill-delete-region (point) (mark))
480 (setq mouse-selection-click-count 0)
481 (setq mouse-save-then-kill-posn nil))
eb6ff46f
RS
482 (if (and (eq last-command 'mouse-save-then-kill)
483 mouse-save-then-kill-posn
484 (eq (car mouse-save-then-kill-posn) (car kill-ring))
485 (equal (cdr mouse-save-then-kill-posn) (list (point) click-posn)))
486 ;; If this is the second time we've called
487 ;; mouse-save-then-kill, delete the text from the buffer.
dd524dbd
RS
488 (progn
489 (mouse-save-then-kill-delete-region (point) (mark))
490 ;; After we kill, another click counts as "the first time".
491 (setq mouse-save-then-kill-posn nil))
492 (if (or (and (eq last-command 'mouse-save-then-kill)
493 mouse-save-then-kill-posn)
3544cfc9 494 (and mark-active transient-mark-mode)
d89a4a47 495 (and (eq last-command 'mouse-drag-region)
d89a4a47
RS
496 (or mark-even-if-inactive
497 (not transient-mark-mode))))
498 ;; We have a selection or suitable region, so adjust it.
499 (let* ((posn (event-start click))
500 (new (posn-point posn)))
501 (select-window (posn-window posn))
502 (if (numberp new)
503 (progn
504 ;; Move whichever end of the region is closer to the click.
505 ;; That is what xterm does, and it seems reasonable.
506 (if (< (abs (- new (point))) (abs (- new (mark t))))
507 (goto-char new)
508 (set-mark new))
509 (setq deactivate-mark nil)))
510 (setcar kill-ring (buffer-substring (point) (mark t)))
511 (if interprogram-cut-function
512 (funcall interprogram-cut-function (car kill-ring))))
513 ;; We just have point, so set mark here.
514 (mouse-set-mark-fast click)
515 (kill-ring-save (point) (mark t))
516 (mouse-show-mark))
eb6ff46f
RS
517 (setq mouse-save-then-kill-posn
518 (list (car kill-ring) (point) click-posn))))))
e66feb07
RS
519\f
520(global-set-key [M-mouse-1] 'mouse-start-secondary)
521(global-set-key [M-drag-mouse-1] 'mouse-set-secondary)
522(global-set-key [M-down-mouse-1] 'mouse-drag-secondary)
523(global-set-key [M-mouse-3] 'mouse-secondary-save-then-kill)
9a974c88 524(global-set-key [M-mouse-2] 'mouse-yank-secondary)
e66feb07
RS
525
526;; An overlay which records the current secondary selection
527;; or else is deleted when there is no secondary selection.
528;; May be nil.
529(defvar mouse-secondary-overlay nil)
530
531;; A marker which records the specified first end for a secondary selection.
532;; May be nil.
533(defvar mouse-secondary-start nil)
534
535(defun mouse-start-secondary (click)
536 "Set one end of the secondary selection to the position clicked on.
537Use \\[mouse-secondary-save-then-kill] to set the other end
538and complete the secondary selection."
539 (interactive "e")
d65147f6 540 (mouse-minibuffer-check click)
e66feb07 541 (let ((posn (event-start click)))
230aaa73
RS
542 (save-excursion
543 (set-buffer (window-buffer (posn-window posn)))
544 ;; Cancel any preexisting secondary selection.
545 (if mouse-secondary-overlay
546 (delete-overlay mouse-secondary-overlay))
547 (if (numberp (posn-point posn))
548 (progn
549 (or mouse-secondary-start
550 (setq mouse-secondary-start (make-marker)))
551 (move-marker mouse-secondary-start (posn-point posn)))))))
e66feb07
RS
552
553(defun mouse-set-secondary (click)
554 "Set the secondary selection to the text that the mouse is dragged over.
555This must be bound to a mouse drag event."
556 (interactive "e")
d65147f6 557 (mouse-minibuffer-check click)
e66feb07
RS
558 (let ((posn (event-start click))
559 beg
560 (end (event-end click)))
230aaa73
RS
561 (save-excursion
562 (set-buffer (window-buffer (posn-window posn)))
563 (if (numberp (posn-point posn))
564 (setq beg (posn-point posn)))
565 (if mouse-secondary-overlay
566 (move-overlay mouse-secondary-overlay beg (posn-point end))
567 (setq mouse-secondary-overlay (make-overlay beg (posn-point end))))
568 (overlay-put mouse-secondary-overlay 'face 'secondary-selection))))
947da0c4 569
d89a4a47 570(defun mouse-drag-secondary (start-event)
e66feb07 571 "Set the secondary selection to the text that the mouse is dragged over.
d89a4a47 572Highlight the drag area as you move the mouse.
e66feb07
RS
573This must be bound to a button-down mouse event."
574 (interactive "e")
d65147f6 575 (mouse-minibuffer-check start-event)
d89a4a47
RS
576 (let* ((start-posn (event-start start-event))
577 (start-point (posn-point start-posn))
578 (start-window (posn-window start-posn))
579 (start-frame (window-frame start-window))
580 (bounds (window-edges start-window))
581 (top (nth 1 bounds))
582 (bottom (if (window-minibuffer-p start-window)
583 (nth 3 bounds)
584 ;; Don't count the mode line.
585 (1- (nth 3 bounds))))
586 (click-count (1- (event-click-count start-event))))
587 (save-excursion
588 (set-buffer (window-buffer start-window))
589 (setq mouse-selection-click-count click-count)
d89a4a47
RS
590 (or mouse-secondary-overlay
591 (setq mouse-secondary-overlay
592 (make-overlay (point) (point))))
26d280b9 593 (overlay-put mouse-secondary-overlay 'face 'secondary-selection)
9a974c88 594 (if (> (mod click-count 3) 0)
26d280b9
RS
595 ;; Double or triple press: make an initial selection
596 ;; of one word or line.
d89a4a47
RS
597 (let ((range (mouse-start-end start-point start-point click-count)))
598 (set-marker mouse-secondary-start nil)
599 (move-overlay mouse-secondary-overlay 1 1
600 (window-buffer start-window))
601 (move-overlay mouse-secondary-overlay (car range) (nth 1 range)
602 (window-buffer start-window)))
26d280b9 603 ;; Single-press: cancel any preexisting secondary selection.
d89a4a47
RS
604 (or mouse-secondary-start
605 (setq mouse-secondary-start (make-marker)))
606 (set-marker mouse-secondary-start start-point)
607 (delete-overlay mouse-secondary-overlay))
608 (let (event end end-point)
609 (track-mouse
610 (while (progn
611 (setq event (read-event))
612 (or (mouse-movement-p event)
613 (eq (car-safe event) 'switch-frame)))
614
615 (if (eq (car-safe event) 'switch-frame)
616 nil
617 (setq end (event-end event)
618 end-point (posn-point end))
619 (cond
620
621 ;; Ignore switch-frame events.
622 ((eq (car-safe event) 'switch-frame))
623
624 ;; Are we moving within the original window?
625 ((and (eq (posn-window end) start-window)
626 (integer-or-marker-p end-point))
627 (if (/= start-point end-point)
628 (set-marker mouse-secondary-start nil))
629 (let ((range (mouse-start-end start-point end-point
630 click-count)))
631 (move-overlay mouse-secondary-overlay
632 (car range) (nth 1 range))))
3b0aebe9
RS
633 (t
634 (let ((mouse-row (cdr (cdr (mouse-position)))))
635 (cond
636 ((null mouse-row))
637 ((< mouse-row top)
e919a622
RS
638 (mouse-scroll-subr start-window (- mouse-row top)
639 mouse-secondary-overlay start-point))
3b0aebe9
RS
640 ((and (not (eobp))
641 (>= mouse-row bottom))
e919a622 642 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
3b0aebe9 643 mouse-secondary-overlay start-point)))))))))
d89a4a47
RS
644
645 (if (and (eq (get (event-basic-type event) 'event-kind) 'mouse-click)
646 (eq (posn-window (event-end event)) start-window)
647 (numberp (posn-point (event-end event))))
648 (if (marker-position mouse-secondary-start)
649 (save-window-excursion
650 (delete-overlay mouse-secondary-overlay)
9a974c88 651 (x-set-selection 'SECONDARY nil)
d89a4a47
RS
652 (select-window start-window)
653 (save-excursion
654 (goto-char mouse-secondary-start)
655 (sit-for 1)))
9a974c88
RS
656 (x-set-selection
657 'SECONDARY
658 (buffer-substring (overlay-start mouse-secondary-overlay)
659 (overlay-end mouse-secondary-overlay)))))))))
e66feb07 660
9a974c88 661(defun mouse-yank-secondary (click)
50f58001
RS
662 "Insert the secondary selection at the position clicked on.
663Move point to the end of the inserted text.
664If `mouse-yank-at-point' is non-nil, insert at point
665regardless of where you click."
9a974c88 666 (interactive "e")
50f58001
RS
667 (or mouse-yank-at-point (mouse-set-point click))
668 (insert (x-get-selection 'SECONDARY)))
9a974c88 669
7e6404f6 670(defun mouse-kill-secondary ()
9a974c88
RS
671 "Kill the text in the secondary selection.
672This is intended more as a keyboard command than as a mouse command
673but it can work as either one.
674
675The current buffer (in case of keyboard use), or the buffer clicked on,
676must be the one that the secondary selection is in. This requirement
677is to prevent accidents."
7e6404f6
RS
678 (interactive)
679 (let* ((keys (this-command-keys))
680 (click (elt keys (1- (length keys)))))
681 (or (eq (overlay-buffer mouse-secondary-overlay)
682 (if (listp click)
683 (window-buffer (posn-window (event-start click)))
684 (current-buffer)))
685 (error "Select or click on the buffer where the secondary selection is")))
9a974c88
RS
686 (save-excursion
687 (set-buffer (overlay-buffer mouse-secondary-overlay))
688 (kill-region (overlay-start mouse-secondary-overlay)
689 (overlay-end mouse-secondary-overlay)))
e66feb07 690 (delete-overlay mouse-secondary-overlay)
9a974c88 691 (x-set-selection 'SECONDARY nil)
e66feb07
RS
692 (setq mouse-secondary-overlay nil))
693
694(defun mouse-secondary-save-then-kill (click)
d89a4a47 695 "Save text to point in kill ring; the second time, kill the text.
7bbe2cc7
RS
696You must use this in a buffer where you have recently done \\[mouse-start-secondary].
697If the text between where you did \\[mouse-start-secondary] and where
698you use this command matches the text at the front of the kill ring,
699this command deletes the text.
e66feb07 700Otherwise, it adds the text to the kill ring, like \\[kill-ring-save],
7bbe2cc7 701which prepares for a second click with this command to delete the text.
d89a4a47 702
7bbe2cc7
RS
703If you have already made a secondary selection in that buffer,
704this command extends or retracts the selection to where you click.
705If you do this again in a different position, it extends or retracts
706again. If you do this twice in the same position, it kills the selection."
e66feb07 707 (interactive "e")
d65147f6 708 (mouse-minibuffer-check click)
d89a4a47
RS
709 (let ((posn (event-start click))
710 (click-posn (posn-point (event-start click)))
e66feb07
RS
711 ;; Don't let a subsequent kill command append to this one:
712 ;; prevent setting this-command to kill-region.
713 (this-command this-command))
9a974c88
RS
714 (or (eq (window-buffer (posn-window posn))
715 (or (and mouse-secondary-overlay
716 (overlay-buffer mouse-secondary-overlay))
717 (if mouse-secondary-start
718 (marker-buffer mouse-secondary-start))))
719 (error "Wrong buffer"))
720 (save-excursion
721 (set-buffer (window-buffer (posn-window posn)))
722 (if (> (mod mouse-selection-click-count 3) 0)
723 (if (not (and (eq last-command 'mouse-secondary-save-then-kill)
724 (equal click-posn
725 (car (cdr-safe (cdr-safe mouse-save-then-kill-posn))))))
726 ;; Find both ends of the object selected by this click.
727 (let* ((range
728 (mouse-start-end click-posn click-posn
729 mouse-selection-click-count)))
730 ;; Move whichever end is closer to the click.
731 ;; That's what xterm does, and it seems reasonable.
732 (if (< (abs (- click-posn (overlay-start mouse-secondary-overlay)))
733 (abs (- click-posn (overlay-end mouse-secondary-overlay))))
734 (move-overlay mouse-secondary-overlay (car range)
735 (overlay-end mouse-secondary-overlay))
d89a4a47
RS
736 (move-overlay mouse-secondary-overlay
737 (overlay-start mouse-secondary-overlay)
738 (nth 1 range)))
9a974c88
RS
739 ;; We have already put the old region in the kill ring.
740 ;; Replace it with the extended region.
741 ;; (It would be annoying to make a separate entry.)
742 (setcar kill-ring (buffer-substring
743 (overlay-start mouse-secondary-overlay)
744 (overlay-end mouse-secondary-overlay)))
745 (if interprogram-cut-function
746 (funcall interprogram-cut-function (car kill-ring)))
747 ;; Arrange for a repeated mouse-3 to kill this region.
748 (setq mouse-save-then-kill-posn
749 (list (car kill-ring) (point) click-posn)))
750 ;; If we click this button again without moving it,
751 ;; that time kill.
d89a4a47 752 (progn
9a974c88
RS
753 (mouse-save-then-kill-delete-region
754 (overlay-start mouse-secondary-overlay)
755 (overlay-end mouse-secondary-overlay))
756 (setq mouse-save-then-kill-posn nil)
757 (setq mouse-selection-click-count 0)
758 (delete-overlay mouse-secondary-overlay)))
759 (if (and (eq last-command 'mouse-secondary-save-then-kill)
760 mouse-save-then-kill-posn
761 (eq (car mouse-save-then-kill-posn) (car kill-ring))
762 (equal (cdr mouse-save-then-kill-posn) (list (point) click-posn)))
763 ;; If this is the second time we've called
764 ;; mouse-secondary-save-then-kill, delete the text from the buffer.
765 (progn
766 (mouse-save-then-kill-delete-region
767 (overlay-start mouse-secondary-overlay)
768 (overlay-end mouse-secondary-overlay))
769 (setq mouse-save-then-kill-posn nil)
770 (delete-overlay mouse-secondary-overlay))
771 (if (overlay-start mouse-secondary-overlay)
772 ;; We have a selection, so adjust it.
773 (progn
774 (if (numberp click-posn)
775 (progn
776 ;; Move whichever end of the region is closer to the click.
777 ;; That is what xterm does, and it seems reasonable.
778 (if (< (abs (- click-posn (overlay-start mouse-secondary-overlay)))
779 (abs (- click-posn (overlay-end mouse-secondary-overlay))))
780 (move-overlay mouse-secondary-overlay click-posn
781 (overlay-end mouse-secondary-overlay))
d89a4a47
RS
782 (move-overlay mouse-secondary-overlay
783 (overlay-start mouse-secondary-overlay)
784 click-posn))
9a974c88
RS
785 (setq deactivate-mark nil)))
786 (setcar kill-ring (buffer-substring
787 (overlay-start mouse-secondary-overlay)
788 (overlay-end mouse-secondary-overlay)))
789 (if interprogram-cut-function
790 (funcall interprogram-cut-function (car kill-ring))))
791 (if mouse-secondary-start
792 ;; All we have is one end of a selection,
793 ;; so put the other end here.
794 (let ((start (+ 0 mouse-secondary-start)))
795 (kill-ring-save start click-posn)
796 (if mouse-secondary-overlay
797 (move-overlay mouse-secondary-overlay start click-posn)
798 (setq mouse-secondary-overlay (make-overlay start click-posn)))
799 (overlay-put mouse-secondary-overlay 'face 'secondary-selection))))
800 (setq mouse-save-then-kill-posn
801 (list (car kill-ring) (point) click-posn))))
802 (x-set-selection 'SECONDARY
803 (if (overlay-buffer mouse-secondary-overlay)
804 (buffer-substring
805 (overlay-start mouse-secondary-overlay)
806 (overlay-end mouse-secondary-overlay)))))))
e66feb07 807\f
8b34e79d 808(defun mouse-buffer-menu (event)
2d82f7b9
RS
809 "Pop up a menu of buffers for selection with the mouse.
810This switches buffers in the window that you clicked on,
811and selects that window."
ec558adc 812 (interactive "e")
d65147f6 813 (mouse-minibuffer-check event)
8b34e79d
RS
814 (let ((menu
815 (list "Buffer Menu"
816 (cons "Select Buffer"
817 (let ((tail (buffer-list))
af2a85fe 818 (maxbuf 0)
8b34e79d 819 head)
af2a85fe
RS
820 (while tail
821 (or (eq ?\ (aref (buffer-name (car tail)) 0))
822 (setq maxbuf
823 (max maxbuf
824 (length (buffer-name (car tail))))))
825 (setq tail (cdr tail)))
826 (setq tail (buffer-list))
8b34e79d
RS
827 (while tail
828 (let ((elt (car tail)))
829 (if (not (string-match "^ "
830 (buffer-name elt)))
831 (setq head (cons
832 (cons
833 (format
af2a85fe
RS
834 (format "%%%ds %%s%%s %%s"
835 maxbuf)
8b34e79d 836 (buffer-name elt)
af2a85fe
RS
837 (if (buffer-modified-p elt)
838 "*" " ")
839 (save-excursion
840 (set-buffer elt)
841 (if buffer-read-only "%" " "))
8b34e79d
RS
842 (or (buffer-file-name elt) ""))
843 elt)
844 head))))
845 (setq tail (cdr tail)))
846 (reverse head))))))
2d82f7b9
RS
847 (let ((buf (x-popup-menu event menu))
848 (window (posn-window (event-start event))))
849 (if buf
850 (progn
c0bb9f3b 851 (or (framep window) (select-window window))
2d82f7b9 852 (switch-to-buffer buf))))))
72ea54a4 853\f
5ba2dc3f 854;;; These need to be rewritten for the new scroll bar implementation.
dbc4e1c1
JB
855
856;;;!! ;; Commands for the scroll bar.
857;;;!!
858;;;!! (defun mouse-scroll-down (click)
859;;;!! (interactive "@e")
860;;;!! (scroll-down (1+ (cdr (mouse-coords click)))))
861;;;!!
862;;;!! (defun mouse-scroll-up (click)
863;;;!! (interactive "@e")
864;;;!! (scroll-up (1+ (cdr (mouse-coords click)))))
865;;;!!
866;;;!! (defun mouse-scroll-down-full ()
867;;;!! (interactive "@")
868;;;!! (scroll-down nil))
869;;;!!
870;;;!! (defun mouse-scroll-up-full ()
871;;;!! (interactive "@")
872;;;!! (scroll-up nil))
873;;;!!
874;;;!! (defun mouse-scroll-move-cursor (click)
875;;;!! (interactive "@e")
876;;;!! (move-to-window-line (1+ (cdr (mouse-coords click)))))
877;;;!!
878;;;!! (defun mouse-scroll-absolute (event)
879;;;!! (interactive "@e")
880;;;!! (let* ((pos (car event))
881;;;!! (position (car pos))
882;;;!! (length (car (cdr pos))))
883;;;!! (if (<= length 0) (setq length 1))
884;;;!! (let* ((scale-factor (max 1 (/ length (/ 8000000 (buffer-size)))))
885;;;!! (newpos (* (/ (* (/ (buffer-size) scale-factor)
886;;;!! position)
887;;;!! length)
888;;;!! scale-factor)))
889;;;!! (goto-char newpos)
890;;;!! (recenter '(4)))))
891;;;!!
892;;;!! (defun mouse-scroll-left (click)
893;;;!! (interactive "@e")
894;;;!! (scroll-left (1+ (car (mouse-coords click)))))
895;;;!!
896;;;!! (defun mouse-scroll-right (click)
897;;;!! (interactive "@e")
898;;;!! (scroll-right (1+ (car (mouse-coords click)))))
899;;;!!
900;;;!! (defun mouse-scroll-left-full ()
901;;;!! (interactive "@")
902;;;!! (scroll-left nil))
903;;;!!
904;;;!! (defun mouse-scroll-right-full ()
905;;;!! (interactive "@")
906;;;!! (scroll-right nil))
907;;;!!
908;;;!! (defun mouse-scroll-move-cursor-horizontally (click)
909;;;!! (interactive "@e")
910;;;!! (move-to-column (1+ (car (mouse-coords click)))))
911;;;!!
912;;;!! (defun mouse-scroll-absolute-horizontally (event)
913;;;!! (interactive "@e")
914;;;!! (let* ((pos (car event))
915;;;!! (position (car pos))
916;;;!! (length (car (cdr pos))))
917;;;!! (set-window-hscroll (selected-window) 33)))
918;;;!!
919;;;!! (global-set-key [scroll-bar mouse-1] 'mouse-scroll-up)
920;;;!! (global-set-key [scroll-bar mouse-2] 'mouse-scroll-absolute)
921;;;!! (global-set-key [scroll-bar mouse-3] 'mouse-scroll-down)
922;;;!!
923;;;!! (global-set-key [vertical-slider mouse-1] 'mouse-scroll-move-cursor)
924;;;!! (global-set-key [vertical-slider mouse-2] 'mouse-scroll-move-cursor)
925;;;!! (global-set-key [vertical-slider mouse-3] 'mouse-scroll-move-cursor)
926;;;!!
927;;;!! (global-set-key [thumbup mouse-1] 'mouse-scroll-up-full)
928;;;!! (global-set-key [thumbup mouse-2] 'mouse-scroll-up-full)
929;;;!! (global-set-key [thumbup mouse-3] 'mouse-scroll-up-full)
930;;;!!
931;;;!! (global-set-key [thumbdown mouse-1] 'mouse-scroll-down-full)
932;;;!! (global-set-key [thumbdown mouse-2] 'mouse-scroll-down-full)
933;;;!! (global-set-key [thumbdown mouse-3] 'mouse-scroll-down-full)
934;;;!!
935;;;!! (global-set-key [horizontal-scroll-bar mouse-1] 'mouse-scroll-left)
936;;;!! (global-set-key [horizontal-scroll-bar mouse-2]
937;;;!! 'mouse-scroll-absolute-horizontally)
938;;;!! (global-set-key [horizontal-scroll-bar mouse-3] 'mouse-scroll-right)
939;;;!!
940;;;!! (global-set-key [horizontal-slider mouse-1]
941;;;!! 'mouse-scroll-move-cursor-horizontally)
942;;;!! (global-set-key [horizontal-slider mouse-2]
943;;;!! 'mouse-scroll-move-cursor-horizontally)
944;;;!! (global-set-key [horizontal-slider mouse-3]
945;;;!! 'mouse-scroll-move-cursor-horizontally)
946;;;!!
947;;;!! (global-set-key [thumbleft mouse-1] 'mouse-scroll-left-full)
948;;;!! (global-set-key [thumbleft mouse-2] 'mouse-scroll-left-full)
949;;;!! (global-set-key [thumbleft mouse-3] 'mouse-scroll-left-full)
950;;;!!
951;;;!! (global-set-key [thumbright mouse-1] 'mouse-scroll-right-full)
952;;;!! (global-set-key [thumbright mouse-2] 'mouse-scroll-right-full)
953;;;!! (global-set-key [thumbright mouse-3] 'mouse-scroll-right-full)
954;;;!!
955;;;!! (global-set-key [horizontal-scroll-bar S-mouse-2]
956;;;!! 'mouse-split-window-horizontally)
957;;;!! (global-set-key [mode-line S-mouse-2]
958;;;!! 'mouse-split-window-horizontally)
959;;;!! (global-set-key [vertical-scroll-bar S-mouse-2]
960;;;!! 'mouse-split-window)
6b2154de 961\f
dbc4e1c1
JB
962;;;!! ;;;;
963;;;!! ;;;; Here are experimental things being tested. Mouse events
964;;;!! ;;;; are of the form:
965;;;!! ;;;; ((x y) window screen-part key-sequence timestamp)
966;;;!! ;;
967;;;!! ;;;;
968;;;!! ;;;; Dynamically track mouse coordinates
969;;;!! ;;;;
970;;;!! ;;
971;;;!! ;;(defun track-mouse (event)
972;;;!! ;; "Track the coordinates, absolute and relative, of the mouse."
973;;;!! ;; (interactive "@e")
974;;;!! ;; (while mouse-grabbed
975;;;!! ;; (let* ((pos (read-mouse-position (selected-screen)))
976;;;!! ;; (abs-x (car pos))
977;;;!! ;; (abs-y (cdr pos))
978;;;!! ;; (relative-coordinate (coordinates-in-window-p
979;;;!! ;; (list (car pos) (cdr pos))
980;;;!! ;; (selected-window))))
981;;;!! ;; (if (consp relative-coordinate)
982;;;!! ;; (message "mouse: [%d %d], (%d %d)" abs-x abs-y
983;;;!! ;; (car relative-coordinate)
984;;;!! ;; (car (cdr relative-coordinate)))
985;;;!! ;; (message "mouse: [%d %d]" abs-x abs-y)))))
986;;;!!
987;;;!! ;;
988;;;!! ;; Dynamically put a box around the line indicated by point
989;;;!! ;;
990;;;!! ;;
991;;;!! ;;(require 'backquote)
992;;;!! ;;
993;;;!! ;;(defun mouse-select-buffer-line (event)
994;;;!! ;; (interactive "@e")
995;;;!! ;; (let ((relative-coordinate
996;;;!! ;; (coordinates-in-window-p (car event) (selected-window)))
997;;;!! ;; (abs-y (car (cdr (car event)))))
998;;;!! ;; (if (consp relative-coordinate)
999;;;!! ;; (progn
1000;;;!! ;; (save-excursion
1001;;;!! ;; (move-to-window-line (car (cdr relative-coordinate)))
1002;;;!! ;; (x-draw-rectangle
1003;;;!! ;; (selected-screen)
1004;;;!! ;; abs-y 0
1005;;;!! ;; (save-excursion
1006;;;!! ;; (move-to-window-line (car (cdr relative-coordinate)))
1007;;;!! ;; (end-of-line)
1008;;;!! ;; (push-mark nil t)
1009;;;!! ;; (beginning-of-line)
1010;;;!! ;; (- (region-end) (region-beginning))) 1))
1011;;;!! ;; (sit-for 1)
1012;;;!! ;; (x-erase-rectangle (selected-screen))))))
1013;;;!! ;;
1014;;;!! ;;(defvar last-line-drawn nil)
1015;;;!! ;;(defvar begin-delim "[^ \t]")
1016;;;!! ;;(defvar end-delim "[^ \t]")
1017;;;!! ;;
1018;;;!! ;;(defun mouse-boxing (event)
1019;;;!! ;; (interactive "@e")
1020;;;!! ;; (save-excursion
1021;;;!! ;; (let ((screen (selected-screen)))
1022;;;!! ;; (while (= (x-mouse-events) 0)
1023;;;!! ;; (let* ((pos (read-mouse-position screen))
1024;;;!! ;; (abs-x (car pos))
1025;;;!! ;; (abs-y (cdr pos))
1026;;;!! ;; (relative-coordinate
1027;;;!! ;; (coordinates-in-window-p (` ((, abs-x) (, abs-y)))
1028;;;!! ;; (selected-window)))
1029;;;!! ;; (begin-reg nil)
1030;;;!! ;; (end-reg nil)
1031;;;!! ;; (end-column nil)
1032;;;!! ;; (begin-column nil))
1033;;;!! ;; (if (and (consp relative-coordinate)
1034;;;!! ;; (or (not last-line-drawn)
1035;;;!! ;; (not (= last-line-drawn abs-y))))
1036;;;!! ;; (progn
1037;;;!! ;; (move-to-window-line (car (cdr relative-coordinate)))
1038;;;!! ;; (if (= (following-char) 10)
1039;;;!! ;; ()
1040;;;!! ;; (progn
1041;;;!! ;; (setq begin-reg (1- (re-search-forward end-delim)))
1042;;;!! ;; (setq begin-column (1- (current-column)))
1043;;;!! ;; (end-of-line)
1044;;;!! ;; (setq end-reg (1+ (re-search-backward begin-delim)))
1045;;;!! ;; (setq end-column (1+ (current-column)))
1046;;;!! ;; (message "%s" (buffer-substring begin-reg end-reg))
1047;;;!! ;; (x-draw-rectangle screen
1048;;;!! ;; (setq last-line-drawn abs-y)
1049;;;!! ;; begin-column
1050;;;!! ;; (- end-column begin-column) 1))))))))))
1051;;;!! ;;
1052;;;!! ;;(defun mouse-erase-box ()
1053;;;!! ;; (interactive)
1054;;;!! ;; (if last-line-drawn
1055;;;!! ;; (progn
1056;;;!! ;; (x-erase-rectangle (selected-screen))
1057;;;!! ;; (setq last-line-drawn nil))))
1058;;;!!
1059;;;!! ;;; (defun test-x-rectangle ()
1060;;;!! ;;; (use-local-mouse-map (setq rectangle-test-map (make-sparse-keymap)))
1061;;;!! ;;; (define-key rectangle-test-map mouse-motion-button-left 'mouse-boxing)
1062;;;!! ;;; (define-key rectangle-test-map mouse-button-left-up 'mouse-erase-box))
1063;;;!!
1064;;;!! ;;
1065;;;!! ;; Here is how to do double clicking in lisp. About to change.
1066;;;!! ;;
1067;;;!!
1068;;;!! (defvar double-start nil)
1069;;;!! (defconst double-click-interval 300
1070;;;!! "Max ticks between clicks")
1071;;;!!
1072;;;!! (defun double-down (event)
1073;;;!! (interactive "@e")
1074;;;!! (if double-start
1075;;;!! (let ((interval (- (nth 4 event) double-start)))
1076;;;!! (if (< interval double-click-interval)
1077;;;!! (progn
1078;;;!! (backward-up-list 1)
1079;;;!! ;; (message "Interval %d" interval)
1080;;;!! (sleep-for 1)))
1081;;;!! (setq double-start nil))
1082;;;!! (setq double-start (nth 4 event))))
1083;;;!!
1084;;;!! (defun double-up (event)
1085;;;!! (interactive "@e")
1086;;;!! (and double-start
1087;;;!! (> (- (nth 4 event ) double-start) double-click-interval)
1088;;;!! (setq double-start nil)))
1089;;;!!
1090;;;!! ;;; (defun x-test-doubleclick ()
1091;;;!! ;;; (use-local-mouse-map (setq doubleclick-test-map (make-sparse-keymap)))
1092;;;!! ;;; (define-key doubleclick-test-map mouse-button-left 'double-down)
1093;;;!! ;;; (define-key doubleclick-test-map mouse-button-left-up 'double-up))
1094;;;!!
1095;;;!! ;;
5ba2dc3f 1096;;;!! ;; This scrolls while button is depressed. Use preferable in scroll bar.
dbc4e1c1
JB
1097;;;!! ;;
1098;;;!!
1099;;;!! (defvar scrolled-lines 0)
1100;;;!! (defconst scroll-speed 1)
1101;;;!!
1102;;;!! (defun incr-scroll-down (event)
1103;;;!! (interactive "@e")
1104;;;!! (setq scrolled-lines 0)
1105;;;!! (incremental-scroll scroll-speed))
1106;;;!!
1107;;;!! (defun incr-scroll-up (event)
1108;;;!! (interactive "@e")
1109;;;!! (setq scrolled-lines 0)
1110;;;!! (incremental-scroll (- scroll-speed)))
1111;;;!!
1112;;;!! (defun incremental-scroll (n)
1113;;;!! (while (= (x-mouse-events) 0)
1114;;;!! (setq scrolled-lines (1+ (* scroll-speed scrolled-lines)))
1115;;;!! (scroll-down n)
1116;;;!! (sit-for 300 t)))
1117;;;!!
1118;;;!! (defun incr-scroll-stop (event)
1119;;;!! (interactive "@e")
1120;;;!! (message "Scrolled %d lines" scrolled-lines)
1121;;;!! (setq scrolled-lines 0)
1122;;;!! (sleep-for 1))
1123;;;!!
1124;;;!! ;;; (defun x-testing-scroll ()
1125;;;!! ;;; (let ((scrolling-map (function mouse-vertical-scroll-bar-prefix)))
1126;;;!! ;;; (define-key scrolling-map mouse-button-left 'incr-scroll-down)
1127;;;!! ;;; (define-key scrolling-map mouse-button-right 'incr-scroll-up)
1128;;;!! ;;; (define-key scrolling-map mouse-button-left-up 'incr-scroll-stop)
1129;;;!! ;;; (define-key scrolling-map mouse-button-right-up 'incr-scroll-stop)))
1130;;;!!
1131;;;!! ;;
1132;;;!! ;; Some playthings suitable for picture mode? They need work.
1133;;;!! ;;
1134;;;!!
1135;;;!! (defun mouse-kill-rectangle (event)
1136;;;!! "Kill the rectangle between point and the mouse cursor."
1137;;;!! (interactive "@e")
1138;;;!! (let ((point-save (point)))
1139;;;!! (save-excursion
1140;;;!! (mouse-set-point event)
1141;;;!! (push-mark nil t)
1142;;;!! (if (> point-save (point))
1143;;;!! (kill-rectangle (point) point-save)
1144;;;!! (kill-rectangle point-save (point))))))
1145;;;!!
1146;;;!! (defun mouse-open-rectangle (event)
1147;;;!! "Kill the rectangle between point and the mouse cursor."
1148;;;!! (interactive "@e")
1149;;;!! (let ((point-save (point)))
1150;;;!! (save-excursion
1151;;;!! (mouse-set-point event)
1152;;;!! (push-mark nil t)
1153;;;!! (if (> point-save (point))
1154;;;!! (open-rectangle (point) point-save)
1155;;;!! (open-rectangle point-save (point))))))
1156;;;!!
1157;;;!! ;; Must be a better way to do this.
1158;;;!!
1159;;;!! (defun mouse-multiple-insert (n char)
1160;;;!! (while (> n 0)
1161;;;!! (insert char)
1162;;;!! (setq n (1- n))))
1163;;;!!
1164;;;!! ;; What this could do is not finalize until button was released.
1165;;;!!
1166;;;!! (defun mouse-move-text (event)
1167;;;!! "Move text from point to cursor position, inserting spaces."
1168;;;!! (interactive "@e")
1169;;;!! (let* ((relative-coordinate
1170;;;!! (coordinates-in-window-p (car event) (selected-window))))
1171;;;!! (if (consp relative-coordinate)
1172;;;!! (cond ((> (current-column) (car relative-coordinate))
1173;;;!! (delete-char
1174;;;!! (- (car relative-coordinate) (current-column))))
1175;;;!! ((< (current-column) (car relative-coordinate))
1176;;;!! (mouse-multiple-insert
1177;;;!! (- (car relative-coordinate) (current-column)) " "))
1178;;;!! ((= (current-column) (car relative-coordinate)) (ding))))))
07a78410 1179\f
f936ae06
RS
1180;; Choose a completion with the mouse.
1181
1182(defun mouse-choose-completion (event)
49e61c42 1183 "Click on an alternative in the `*Completions*' buffer to choose it."
f936ae06 1184 (interactive "e")
d89a4a47
RS
1185 (let ((buffer (window-buffer))
1186 choice)
f936ae06
RS
1187 (save-excursion
1188 (set-buffer (window-buffer (posn-window (event-start event))))
f36f4e9e
RS
1189 (if completion-reference-buffer
1190 (setq buffer completion-reference-buffer))
f936ae06
RS
1191 (save-excursion
1192 (goto-char (posn-point (event-start event)))
b6be5d95 1193 (let (beg end)
f936ae06 1194 (skip-chars-forward "^ \t\n")
b6be5d95
RS
1195 (while (looking-at " [^ \n\t]")
1196 (forward-char 1)
1197 (skip-chars-forward "^ \t\n"))
1198 (setq end (point))
1199 (skip-chars-backward "^ \t\n")
1200 (while (and (= (preceding-char) ?\ )
1201 (not (and (> (point) (1+ (point-min)))
1202 (= (char-after (- (point) 2)) ?\ ))))
1203 (backward-char 1)
1204 (skip-chars-backward "^ \t\n"))
1205 (setq beg (point))
1206 (setq choice (buffer-substring beg end)))))
73e2025f
RS
1207 (let ((owindow (selected-window)))
1208 (select-window (posn-window (event-start event)))
874a2cbd
RS
1209 (if (and (one-window-p t 'selected-frame)
1210 (window-dedicated-p (selected-window)))
1211 ;; This is a special buffer's frame
1212 (iconify-frame (selected-frame))
1213 (or (window-dedicated-p (selected-window))
1214 (bury-buffer)))
73e2025f 1215 (select-window owindow))
40fc4836 1216 (choose-completion-string choice buffer)))
f936ae06 1217\f
07a78410
RS
1218;; Font selection.
1219
0eb9fef3
RS
1220(defun font-menu-add-default ()
1221 (let* ((default (cdr (assq 'font (frame-parameters (selected-frame)))))
1222 (font-alist x-fixed-font-alist)
0d94f5ca 1223 (elt (or (assoc "Misc" font-alist) (nth 1 font-alist))))
0eb9fef3
RS
1224 (if (assoc "Default" elt)
1225 (delete (assoc "Default" elt) elt))
1226 (setcdr elt
3d64d15b 1227 (cons (list "Default"
0eb9fef3
RS
1228 (cdr (assq 'font (frame-parameters (selected-frame)))))
1229 (cdr elt)))))
1230
07a78410
RS
1231(defvar x-fixed-font-alist
1232 '("Font menu"
1233 ("Misc"
1900a92b
RS
1234 ("6x10" "-misc-fixed-medium-r-normal--10-100-75-75-c-60-*-1" "6x10")
1235 ("6x12" "-misc-fixed-medium-r-semicondensed--12-110-75-75-c-60-*-1" "6x12")
1236 ("6x13" "-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-*-1" "6x13")
fa21fdec
RS
1237 ("lucida 13"
1238 "-b&h-lucidatypewriter-medium-r-normal-sans-0-0-0-0-m-0-*-1")
1900a92b
RS
1239 ("7x13" "-misc-fixed-medium-r-normal--13-120-75-75-c-70-*-1" "7x13")
1240 ("7x14" "-misc-fixed-medium-r-normal--14-130-75-75-c-70-*-1" "7x14")
1241 ("9x15" "-misc-fixed-medium-r-normal--15-140-*-*-c-*-*-1" "9x15")
fa21fdec
RS
1242 ("")
1243 ("clean 8x8" "-schumacher-clean-medium-r-normal--*-80-*-*-c-*-*-1")
1244 ("clean 8x14" "-schumacher-clean-medium-r-normal--*-140-*-*-c-*-*-1")
1245 ("clean 8x10" "-schumacher-clean-medium-r-normal--*-100-*-*-c-*-*-1")
1246 ("clean 8x16" "-schumacher-clean-medium-r-normal--*-160-*-*-c-*-*-1")
1247 ("")
1248 ("sony 8x16" "-sony-fixed-medium-r-normal--16-120-100-100-c-80-*-1")
1249 ("")
07a78410 1250 ("fixed" "fixed")
07a78410
RS
1251 ("10x20" "10x20")
1252 ("11x18" "11x18")
1253 ("12x24" "12x24"))
1254;;; We don't seem to have these; who knows what they are.
1255;;; ("fg-18" "fg-18")
1256;;; ("fg-25" "fg-25")
1257;;; ("lucidasanstypewriter-12" "lucidasanstypewriter-12")
1258;;; ("lucidasanstypewriter-bold-14" "lucidasanstypewriter-bold-14")
1259;;; ("lucidasanstypewriter-bold-24" "lucidasanstypewriter-bold-24")
1260;;; ("lucidatypewriter-bold-r-24" "-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1")
1261;;; ("fixed-medium-20" "-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*")
1262 ("Courier"
82c048a9
RS
1263 ("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1")
1264 ("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1")
1265 ("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1")
1266 ("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1")
1267 ("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1")
1268 ("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1")
1269 ("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1")
1270 ("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1")
1271 ("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1")
1272 ("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1")
1273 ("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1")
1274 ("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1")
1275 ("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1")
1276 ("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1")
1277 ("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1")
1278 ("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1")
1279 ("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1")
1280 ("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1")
1281 ("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1")
1282 ("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1")
1283 ("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1")
1284 ("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1")
1285 ("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1")
1286 ("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1"))
07a78410
RS
1287 )
1288 "X fonts suitable for use in Emacs.")
1289
1900a92b 1290(defun mouse-set-font (&rest fonts)
07a78410
RS
1291 "Select an emacs font from a list of known good fonts"
1292 (interactive
1293 (x-popup-menu last-nonmenu-event x-fixed-font-alist))
df4de8c6
KH
1294 (if fonts
1295 (let (font)
1296 (while fonts
1297 (condition-case nil
1298 (progn
3fadec1a 1299 (set-default-font (car fonts))
df4de8c6
KH
1300 (setq font (car fonts))
1301 (setq fonts nil))
3fadec1a
RS
1302 (error
1303 (setq fonts (cdr fonts)))))
df4de8c6 1304 (if (null font)
3fadec1a 1305 (error "Font not found")))))
cc0a8174
JB
1306\f
1307;;; Bindings for mouse commands.
1308
fcfc3c63 1309(define-key global-map [down-mouse-1] 'mouse-drag-region)
dbc4e1c1 1310(global-set-key [mouse-1] 'mouse-set-point)
dbc4e1c1 1311(global-set-key [drag-mouse-1] 'mouse-set-region)
fcfc3c63 1312
e37de120
RS
1313;; These are tested for in mouse-drag-region.
1314(global-set-key [double-mouse-1] 'mouse-set-point)
1315(global-set-key [triple-mouse-1] 'mouse-set-point)
1316
dbc4e1c1
JB
1317(global-set-key [mouse-2] 'mouse-yank-at-click)
1318(global-set-key [mouse-3] 'mouse-save-then-kill)
8b34e79d 1319
dbc4e1c1
JB
1320;; By binding these to down-going events, we let the user use the up-going
1321;; event to make the selection, saving a click.
1322(global-set-key [C-down-mouse-1] 'mouse-buffer-menu)
1323(global-set-key [C-down-mouse-3] 'mouse-set-font)
07a78410 1324
8b34e79d
RS
1325;; Replaced with dragging mouse-1
1326;; (global-set-key [S-mouse-1] 'mouse-set-mark)
947da0c4 1327
3c2dd2c0
RS
1328(global-set-key [mode-line mouse-1] 'mouse-select-window)
1329(global-set-key [mode-line mouse-2] 'mouse-delete-other-windows)
dbc4e1c1 1330(global-set-key [mode-line mouse-3] 'mouse-delete-window)
3c2dd2c0 1331(global-set-key [mode-line C-mouse-2] 'mouse-split-window-horizontally)
49116ac0
JB
1332
1333(provide 'mouse)
1334
6594deb0 1335;;; mouse.el ends here