* frame.el (x-display-name): Declare.
[bpt/emacs.git] / lisp / mouse.el
CommitLineData
e1894109 1;;; mouse.el --- window system-independent mouse support -*- lexical-binding: t -*-
84176303 2
ab422c4d 3;; Copyright (C) 1993-1995, 1999-2013 Free Software Foundation, Inc.
eea8d4ef 4
84176303 5;; Maintainer: FSF
de420e82 6;; Keywords: hardware, mouse
bd78fa1d 7;; Package: emacs
84176303 8
be010748 9;; This file is part of GNU Emacs.
72ea54a4 10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
be010748 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
72ea54a4 15
be010748
RS
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.
72ea54a4 20
be010748 21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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
ad0d18af 36;; Indent track-mouse like progn.
cc0a8174 37(put 'track-mouse 'lisp-indent-function 0)
72ea54a4 38
3b558d41 39(defcustom mouse-yank-at-point nil
9201cc28 40 "If non-nil, mouse yank commands yank at point instead of at click."
3b558d41
RS
41 :type 'boolean
42 :group 'mouse)
b2dae92a 43
f9d71b42 44(defcustom mouse-drag-copy-region nil
93d68d4f
DDLHG
45 "If non-nil, copy to kill-ring upon mouse adjustments of the region.
46
47This affects `mouse-save-then-kill' (\\[mouse-save-then-kill]) in
48addition to mouse drags."
b2dae92a 49 :type 'boolean
2490cbbc 50 :version "24.1"
b2dae92a
KS
51 :group 'mouse)
52
5dbda518 53(defcustom mouse-1-click-follows-link 450
787e24c3 54 "Non-nil means that clicking Mouse-1 on a link follows the link.
65f76581 55
787e24c3
KS
56With the default setting, an ordinary Mouse-1 click on a link
57performs the same action as Mouse-2 on that link, while a longer
97b1270c 58Mouse-1 click \(hold down the Mouse-1 button for more than 450
787e24c3 59milliseconds) performs the original Mouse-1 binding \(which
65f76581
KS
60typically sets point where you click the mouse).
61
62If value is an integer, the time elapsed between pressing and
63releasing the mouse button determines whether to follow the link
787e24c3 64or perform the normal Mouse-1 action (typically set point).
22bcf204 65The absolute numeric value specifies the maximum duration of a
65f76581
KS
66\"short click\" in milliseconds. A positive value means that a
67short click follows the link, and a longer click performs the
1d68acd3 68normal action. A negative value gives the opposite behavior.
65f76581
KS
69
70If value is `double', a double click follows the link.
71
787e24c3 72Otherwise, a single Mouse-1 click unconditionally follows the link.
65f76581
KS
73
74Note that dragging the mouse never follows the link.
75
76This feature only works in modes that specifically identify
77clickable text as links, so it may not work with some external
78packages. See `mouse-on-link-p' for details."
bf247b6e 79 :version "22.1"
65f76581
KS
80 :type '(choice (const :tag "Disabled" nil)
81 (const :tag "Double click" double)
97b1270c 82 (number :tag "Single click time limit" :value 450)
65f76581
KS
83 (other :tag "Single click" t))
84 :group 'mouse)
85
185a53bb 86(defcustom mouse-1-click-in-non-selected-windows t
9201cc28 87 "If non-nil, a Mouse-1 click also follows links in non-selected windows.
185a53bb
KS
88
89If nil, a Mouse-1 click on a link in a non-selected window performs
90the normal mouse-1 binding, typically selects the window and sets
91point at the click position."
92 :type 'boolean
93 :version "22.1"
94 :group 'mouse)
95
27a98a62
SM
96(defun mouse--down-1-maybe-follows-link (&optional _prompt)
97 "Turn `mouse-1' events into `mouse-2' events if follows-link.
98Expects to be bound to `down-mouse-1' in `key-translation-map'."
99 (if (or (null mouse-1-click-follows-link)
100 (not (eq (if (eq mouse-1-click-follows-link 'double)
101 'double-down-mouse-1 'down-mouse-1)
102 (car-safe last-input-event)))
103 (not (mouse-on-link-p (event-start last-input-event)))
104 (and (not mouse-1-click-in-non-selected-windows)
105 (not (eq (selected-window)
106 (posn-window (event-start last-input-event))))))
107 nil
108 (let ((this-event last-input-event)
109 (timedout
110 (sit-for (if (numberp mouse-1-click-follows-link)
111 (/ (abs mouse-1-click-follows-link) 1000.0)
112 0))))
113 (if (if (and (numberp mouse-1-click-follows-link)
114 (>= mouse-1-click-follows-link 0))
115 timedout (not timedout))
116 nil
117
118 (let ((event (read-event)))
119 (if (eq (car-safe event) (if (eq mouse-1-click-follows-link 'double)
120 'double-mouse-1 'mouse-1))
121 ;; Turn the mouse-1 into a mouse-2 to follow links.
122 (let ((newup (if (eq mouse-1-click-follows-link 'double)
123 'double-mouse-2 'mouse-2))
124 (newdown (if (eq mouse-1-click-follows-link 'double)
125 'double-down-mouse-2 'down-mouse-2)))
126 ;; If mouse-2 has never been done by the user, it doesn't have
127 ;; the necessary property to be interpreted correctly.
128 (put newup 'event-kind (get (car event) 'event-kind))
129 (put newdown 'event-kind (get (car this-event) 'event-kind))
130 (push (cons newup (cdr event)) unread-command-events)
0e6008c5
SM
131 ;; Modify the event in place, so read-key-sequence doesn't
132 ;; generate a second fake prefix key (see fake_prefixed_keys in
133 ;; src/keyboard.c).
134 (setcar this-event newdown)
135 (vector this-event))
27a98a62
SM
136 (push event unread-command-events)
137 nil))))))
138
139(define-key key-translation-map [down-mouse-1]
140 #'mouse--down-1-maybe-follows-link)
141(define-key key-translation-map [double-down-mouse-1]
142 #'mouse--down-1-maybe-follows-link)
185a53bb 143
cc0a8174 144\f
95132d1c
RS
145;; Provide a mode-specific menu on a mouse button.
146
21ad0f7b
SM
147(defun popup-menu (menu &optional position prefix)
148 "Popup the given menu and call the selected option.
de420e82
DL
149MENU can be a keymap, an easymenu-style menu or a list of keymaps as for
150`x-popup-menu'.
c69f56a2
MY
151The menu is shown at the place where POSITION specifies. About
152the form of POSITION, see `popup-menu-normalize-position'.
21ad0f7b 153PREFIX is the prefix argument (if any) to pass to the command."
de420e82
DL
154 (let* ((map (cond
155 ((keymapp menu) menu)
156 ((and (listp menu) (keymapp (car menu))) menu)
157 (t (let* ((map (easy-menu-create-menu (car menu) (cdr menu)))
72596e2f
SM
158 (filter (when (symbolp map)
159 (plist-get (get map 'menu-prop) :filter))))
160 (if filter (funcall filter (symbol-function map)) map)))))
c69f56a2
MY
161 event cmd
162 (position (popup-menu-normalize-position position)))
21ad0f7b 163 ;; The looping behavior was taken from lmenu's popup-menu-popup
7636d2a3
EZ
164 (while (and map (setq event
165 ;; map could be a prefix key, in which case
166 ;; we need to get its function cell
167 ;; definition.
d32af6dd 168 (x-popup-menu position (indirect-function map))))
21ad0f7b
SM
169 ;; Strangely x-popup-menu returns a list.
170 ;; mouse-major-mode-menu was using a weird:
171 ;; (key-binding (apply 'vector (append '(menu-bar) menu-prefix events)))
0dd672a6
SM
172 (setq cmd
173 (if (and (not (keymapp map)) (listp map))
174 ;; We were given a list of keymaps. Search them all
175 ;; in sequence until a first binding is found.
176 (let ((mouse-click (apply 'vector event))
177 binding)
178 (while (and map (null binding))
179 (setq binding (lookup-key (car map) mouse-click))
c8e5a42c 180 (if (numberp binding) ; `too long'
0dd672a6
SM
181 (setq binding nil))
182 (setq map (cdr map)))
183 binding)
184 ;; We were given a single keymap.
185 (lookup-key map (apply 'vector event))))
186 ;; Clear out echoing, which perhaps shows a prefix arg.
187 (message "")
188 ;; Maybe try again but with the submap.
189 (setq map (if (keymapp cmd) cmd)))
324cd972
RS
190 ;; If the user did not cancel by refusing to select,
191 ;; and if the result is a command, run it.
192 (when (and (null map) (commandp cmd))
0dd672a6
SM
193 (setq prefix-arg prefix)
194 ;; `setup-specified-language-environment', for instance,
195 ;; expects this to be set from a menu keymap.
196 (setq last-command-event (car (last event)))
197 ;; mouse-major-mode-menu was using `command-execute' instead.
65b61266 198 (call-interactively cmd))))
bcd010a0 199
c69f56a2 200(defun popup-menu-normalize-position (position)
e1894109
SM
201 "Convert the POSITION to the form which `popup-menu' expects internally.
202POSITION can an event, a posn- value, a value having
203form ((XOFFSET YOFFSET) WINDOW), or nil.
204If nil, the current mouse position is used."
c69f56a2
MY
205 (pcase position
206 ;; nil -> mouse cursor position
c69f56a2
MY
207 (`nil
208 (let ((mp (mouse-pixel-position)))
209 (list (list (cadr mp) (cddr mp)) (car mp))))
e1894109
SM
210 ;; Value returned from `event-end' or `posn-at-point'.
211 ((pred posnp)
c69f56a2
MY
212 (let ((xy (posn-x-y position)))
213 (list (list (car xy) (cdr xy))
214 (posn-window position))))
e1894109 215 ;; Event.
c69f56a2
MY
216 ((pred eventp)
217 (popup-menu-normalize-position (event-end position)))
e1894109 218 (t position)))
c69f56a2 219
7e4e9c66 220(defun minor-mode-menu-from-indicator (indicator)
fb1a03c9
DN
221 "Show menu for minor mode specified by INDICATOR.
222Interactively, INDICATOR is read using completion.
223If there is no menu defined for the minor mode, then create one with
224items `Turn Off' and `Help'."
225 (interactive
5e38cdab 226 (list (completing-read
fb1a03c9
DN
227 "Minor mode indicator: "
228 (describe-minor-mode-completion-table-for-indicator))))
97b952b7
SM
229 (let* ((minor-mode (lookup-minor-mode-from-indicator indicator))
230 (mm-fun (or (get minor-mode :minor-mode-function) minor-mode)))
fb1a03c9
DN
231 (unless minor-mode (error "Cannot find minor mode for `%s'" indicator))
232 (let* ((map (cdr-safe (assq minor-mode minor-mode-map-alist)))
233 (menu (and (keymapp map) (lookup-key map [menu-bar]))))
ad0d18af
SM
234 (setq menu
235 (if menu
236 (mouse-menu-non-singleton menu)
fb1a03c9 237 `(keymap
ad0d18af 238 ,indicator
97b952b7 239 (turn-off menu-item "Turn Off minor mode" ,mm-fun)
ad0d18af 240 (help menu-item "Help for minor mode"
5e38cdab 241 (lambda () (interactive)
97b952b7 242 (describe-function ',mm-fun))))))
fb1a03c9 243 (popup-menu menu))))
7e4e9c66
GM
244
245(defun mouse-minor-mode-menu (event)
246 "Show minor-mode menu for EVENT on minor modes area of the mode line."
247 (interactive "@e")
248 (let ((indicator (car (nth 4 (car (cdr event))))))
249 (minor-mode-menu-from-indicator indicator)))
250
0b2b62ff 251(defun mouse-menu-major-mode-map ()
d5e6e0b6 252 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
ad0d18af
SM
253 (let* (;; Keymap from which to inherit; may be null.
254 (ancestor (mouse-menu-non-singleton
b98e5762 255 (and (current-local-map)
25db2767 256 (local-key-binding [menu-bar]))))
b98e5762
DL
257 ;; Make a keymap in which our last command leads to a menu or
258 ;; default to the edit menu.
259 (newmap (if ancestor
48d33090
SM
260 (make-sparse-keymap (concat (format-mode-line mode-name)
261 " Mode"))
4d6769e1 262 menu-bar-edit-menu)))
b98e5762 263 (if ancestor
00f7c5ed 264 (set-keymap-parent newmap ancestor))
0b2b62ff 265 newmap))
95132d1c 266
ad0d18af 267(defun mouse-menu-non-singleton (menubar)
d1f14baa
CY
268 "Return menu keybar MENUBAR, or a lone submenu inside it.
269If MENUBAR defines exactly one submenu, return just that submenu.
270Otherwise, return MENUBAR."
95132d1c 271 (if menubar
ad0d18af
SM
272 (let (submap)
273 (map-keymap
274 (lambda (k v) (setq submap (if submap t (cons k v))))
00f7c5ed 275 (keymap-canonicalize menubar))
ad0d18af
SM
276 (if (eq submap t)
277 menubar
278 (lookup-key menubar (vector (car submap)))))))
de420e82 279
0b2b62ff
SM
280(defun mouse-menu-bar-map ()
281 "Return a keymap equivalent to the menu bar.
de420e82
DL
282The contents are the items that would be in the menu bar whether or
283not it is actually displayed."
d5e6e0b6 284 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
7636d2a3
EZ
285 (let* ((local-menu (and (current-local-map)
286 (lookup-key (current-local-map) [menu-bar])))
287 (global-menu (lookup-key global-map [menu-bar]))
59836110
EZ
288 ;; If a keymap doesn't have a prompt string (a lazy
289 ;; programmer didn't bother to provide one), create it and
290 ;; insert it into the keymap; each keymap gets its own
291 ;; prompt. This is required for non-toolkit versions to
292 ;; display non-empty menu pane names.
293 (minor-mode-menus
294 (mapcar
00f7c5ed
SM
295 (lambda (menu)
296 (let* ((minor-mode (car menu))
297 (menu (cdr menu))
298 (title-or-map (cadr menu)))
299 (or (stringp title-or-map)
300 (setq menu
301 (cons 'keymap
302 (cons (concat
303 (capitalize (subst-char-in-string
304 ?- ?\s (symbol-name
305 minor-mode)))
306 " Menu")
307 (cdr menu)))))
308 menu))
59836110 309 (minor-mode-key-binding [menu-bar])))
7636d2a3
EZ
310 (local-title-or-map (and local-menu (cadr local-menu)))
311 (global-title-or-map (cadr global-menu)))
7636d2a3
EZ
312 (or (null local-menu)
313 (stringp local-title-or-map)
314 (setq local-menu (cons 'keymap
b38f5e6f 315 (cons (concat (format-mode-line mode-name)
48d33090 316 " Mode Menu")
7636d2a3
EZ
317 (cdr local-menu)))))
318 (or (stringp global-title-or-map)
319 (setq global-menu (cons 'keymap
320 (cons "Global Menu"
321 (cdr global-menu)))))
de420e82 322 ;; Supplying the list is faster than making a new map.
0b2b62ff
SM
323 ;; FIXME: We have a problem here: we have to use the global/local/minor
324 ;; so they're displayed in the expected order, but later on in the command
325 ;; loop, they're actually looked up in the opposite order.
326 (apply 'append
327 global-menu
328 local-menu
329 minor-mode-menus)))
330
331(defun mouse-major-mode-menu (event &optional prefix)
332 "Pop up a mode-specific menu of mouse commands.
333Default to the Edit menu if the major mode doesn't define a menu."
59f7af81 334 (declare (obsolete mouse-menu-major-mode-map "23.1"))
0b2b62ff
SM
335 (interactive "@e\nP")
336 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
337 (popup-menu (mouse-menu-major-mode-map) event prefix))
0b2b62ff
SM
338
339(defun mouse-popup-menubar (event prefix)
340 "Pop up a menu equivalent to the menu bar for keyboard EVENT with PREFIX.
341The contents are the items that would be in the menu bar whether or
342not it is actually displayed."
59f7af81 343 (declare (obsolete mouse-menu-bar-map "23.1"))
0b2b62ff
SM
344 (interactive "@e \nP")
345 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
fd6fa53f 346 (popup-menu (mouse-menu-bar-map) (unless (integerp event) event) prefix))
de420e82
DL
347
348(defun mouse-popup-menubar-stuff (event prefix)
349 "Popup a menu like either `mouse-major-mode-menu' or `mouse-popup-menubar'.
350Use the former if the menu bar is showing, otherwise the latter."
59f7af81 351 (declare (obsolete nil "23.1"))
0b2b62ff
SM
352 (interactive "@e\nP")
353 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
354 (popup-menu
355 (if (zerop (or (frame-parameter nil 'menu-bar-lines) 0))
356 (mouse-menu-bar-map)
357 (mouse-menu-major-mode-map))
358 event prefix))
95132d1c 359\f
544e7e73
RS
360;; Commands that operate on windows.
361
d65147f6
KH
362(defun mouse-minibuffer-check (event)
363 (let ((w (posn-window (event-start event))))
364 (and (window-minibuffer-p w)
365 (not (minibuffer-window-active-p w))
71873e2b 366 (user-error "Minibuffer window is not active")))
33c448cd
RS
367 ;; Give temporary modes such as isearch a chance to turn off.
368 (run-hooks 'mouse-leave-buffer-hook))
d65147f6 369
cc0a8174 370(defun mouse-delete-window (click)
947da0c4 371 "Delete the window you click on.
6b48d742 372Do nothing if the frame has just one window.
a926a0fa 373This command must be bound to a mouse click."
ec558adc 374 (interactive "e")
6b48d742 375 (unless (one-window-p t)
a926a0fa
RS
376 (mouse-minibuffer-check click)
377 (delete-window (posn-window (event-start click)))))
cc0a8174 378
3c2dd2c0
RS
379(defun mouse-select-window (click)
380 "Select the window clicked on; don't move point."
381 (interactive "e")
d65147f6 382 (mouse-minibuffer-check click)
3c2dd2c0
RS
383 (let ((oframe (selected-frame))
384 (frame (window-frame (posn-window (event-start click)))))
385 (select-window (posn-window (event-start click)))
386 (raise-frame frame)
387 (select-frame frame)
388 (or (eq frame oframe)
e1877477 389 (set-mouse-position (selected-frame) (1- (frame-width)) 0))))
3c2dd2c0 390
b0f3a26b
JB
391(defun mouse-tear-off-window (click)
392 "Delete the window clicked on, and create a new frame displaying its buffer."
393 (interactive "e")
d65147f6 394 (mouse-minibuffer-check click)
b0f3a26b
JB
395 (let* ((window (posn-window (event-start click)))
396 (buf (window-buffer window))
01a911e3 397 (frame (make-frame)))
b0f3a26b
JB
398 (select-frame frame)
399 (switch-to-buffer buf)
400 (delete-window window)))
401
b5370f03 402(defun mouse-delete-other-windows ()
5925bb84 403 "Delete all windows except the one you click on."
b5370f03 404 (interactive "@")
cc0a8174 405 (delete-other-windows))
72ea54a4 406
cc0a8174
JB
407(defun mouse-split-window-vertically (click)
408 "Select Emacs window mouse is on, then split it vertically in half.
409The window is split at the line clicked on.
410This command must be bound to a mouse click."
947da0c4 411 (interactive "@e")
d65147f6 412 (mouse-minibuffer-check click)
b5370f03
JB
413 (let ((start (event-start click)))
414 (select-window (posn-window start))
85d6b80b 415 (let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
5ba2dc3f
JB
416 (first-line window-min-height)
417 (last-line (- (window-height) window-min-height)))
418 (if (< last-line first-line)
0a50b993 419 (error "Window too short to split")
5ba2dc3f
JB
420 (split-window-vertically
421 (min (max new-height first-line) last-line))))))
cc0a8174 422
947da0c4
RS
423(defun mouse-split-window-horizontally (click)
424 "Select Emacs window mouse is on, then split it horizontally in half.
425The window is split at the column clicked on.
426This command must be bound to a mouse click."
427 (interactive "@e")
d65147f6 428 (mouse-minibuffer-check click)
5ba2dc3f
JB
429 (let ((start (event-start click)))
430 (select-window (posn-window start))
431 (let ((new-width (1+ (car (posn-col-row (event-end click)))))
432 (first-col window-min-width)
433 (last-col (- (window-width) window-min-width)))
434 (if (< last-col first-col)
0a50b993 435 (error "Window too narrow to split")
5ba2dc3f
JB
436 (split-window-horizontally
437 (min (max new-width first-col) last-col))))))
947da0c4 438
e07b9a6d
MR
439;; `mouse-drag-line' is now the common routine for handling all line
440;; dragging events combining the earlier `mouse-drag-mode-line-1' and
441;; `mouse-drag-vertical-line'. It should improve the behavior of line
442;; dragging wrt Emacs 23 as follows:
443
444;; (1) Gratuitous error messages and restrictions have been (hopefully)
445;; removed. (The help-echo that dragging the mode-line can resize a
446;; one-window-frame's window will still show through via bindings.el.)
447
448;; (2) No gratuitous selection of other windows should happen. (This
449;; has not been completely fixed for mouse-autoselected windows yet.)
450
451;; (3) Mouse clicks below a scroll-bar should pass through via unread
452;; command events.
453
454;; Note that `window-in-direction' replaces `mouse-drag-window-above'
455;; and `mouse-drag-vertical-line-rightward-window' with Emacs 24.1.
01ac65bd 456
e07b9a6d 457(defun mouse-drag-line (start-event line)
01ac65bd 458 "Drag a mode line, header line, or vertical line with the mouse.
e07b9a6d 459START-EVENT is the starting mouse-event of the drag action. LINE
01ac65bd 460must be one of the symbols `header', `mode', or `vertical'."
33c448cd
RS
461 ;; Give temporary modes such as isearch a chance to turn off.
462 (run-hooks 'mouse-leave-buffer-hook)
e07b9a6d 463 (let* ((echo-keystrokes 0)
ee0e2bdd 464 (start (event-start start-event))
e07b9a6d
MR
465 (window (posn-window start))
466 (frame (window-frame window))
467 (minibuffer-window (minibuffer-window frame))
01ac65bd
CY
468 (side (and (eq line 'vertical)
469 (or (cdr (assq 'vertical-scroll-bars
470 (frame-parameters frame)))
471 'right)))
472 (draggable t)
c491dd70 473 event position growth dragged)
e07b9a6d
MR
474 (cond
475 ((eq line 'header)
476 ;; Check whether header-line can be dragged at all.
53ebff1f 477 (if (window-at-side-p window 'top)
01ac65bd 478 (setq draggable nil)
53ebff1f 479 (setq window (window-in-direction 'above window t))))
e07b9a6d
MR
480 ((eq line 'mode)
481 ;; Check whether mode-line can be dragged at all.
01ac65bd
CY
482 (and (window-at-side-p window 'bottom)
483 ;; Allow resizing the minibuffer window if it's on the same
484 ;; frame as and immediately below the clicked window, and
485 ;; it's active or `resize-mini-windows' is nil.
486 (not (and (eq (window-frame minibuffer-window) frame)
487 (= (nth 1 (window-edges minibuffer-window))
488 (nth 3 (window-edges window)))
489 (or (not resize-mini-windows)
490 (eq minibuffer-window
491 (active-minibuffer-window)))))
492 (setq draggable nil)))
e07b9a6d 493 ((eq line 'vertical)
01ac65bd
CY
494 ;; Get the window to adjust for the vertical case. If the
495 ;; scroll bar is on the window's right or there's no scroll bar
496 ;; at all, adjust the window where the start-event occurred. If
497 ;; the scroll bar is on the start-event window's left, adjust
498 ;; the window on the left of it.
499 (unless (eq side 'right)
500 (setq window (window-in-direction 'left window t)))))
e07b9a6d
MR
501
502 ;; Start tracking.
544e7e73 503 (track-mouse
c491dd70
GM
504 ;; Loop reading events and sampling the position of the mouse,
505 ;; until there is a non-mouse-movement event. Also,
506 ;; scroll-bar-movement events are the same as mouse movement for
507 ;; our purposes. (Why? -- cyd)
508 ;; If you change this, check that all of the following still work:
509 ;; Resizing windows by dragging mode-lines and header lines,
510 ;; and vertical lines (in windows without scroll bars).
511 ;; Doing this should not select another window, even if
512 ;; mouse-autoselect-window is non-nil.
513 ;; Mouse-1 clicks in Info header lines should advance position
514 ;; by one node at a time if mouse-1-click-follows-link is non-nil,
515 ;; otherwise they should just select the window.
516 (while (progn
517 (setq event (read-event))
518 (memq (car-safe event)
519 '(mouse-movement scroll-bar-movement
520 switch-frame select-window)))
01ac65bd 521 (setq position (mouse-position))
c8e5a42c
MR
522 ;; Do nothing if
523 ;; - there is a switch-frame event.
524 ;; - the mouse isn't in the frame that we started in
525 ;; - the mouse isn't in any Emacs frame
e07b9a6d 526 (cond
c8e5a42c
MR
527 ((memq (car event) '(switch-frame select-window))
528 nil)
c491dd70
GM
529 ((not (and (eq (car position) frame)
530 (cadr position)))
e07b9a6d
MR
531 nil)
532 ((eq line 'vertical)
01ac65bd
CY
533 ;; Drag vertical divider.
534 (setq growth (- (cadr position)
535 (if (eq side 'right) 0 2)
536 (nth 2 (window-edges window))
537 -1))
e07b9a6d 538 (unless (zerop growth)
e07b9a6d
MR
539 (setq dragged t))
540 (adjust-window-trailing-edge window growth t))
01ac65bd
CY
541 (draggable
542 ;; Drag horizontal divider.
e07b9a6d
MR
543 (setq growth
544 (if (eq line 'mode)
01ac65bd 545 (- (cddr position) (nth 3 (window-edges window)) -1)
e07b9a6d 546 ;; The window's top includes the header line!
01ac65bd 547 (- (nth 3 (window-edges window)) (cddr position))))
e07b9a6d 548 (unless (zerop growth)
e07b9a6d 549 (setq dragged t))
01ac65bd
CY
550 (adjust-window-trailing-edge window (if (eq line 'mode)
551 growth
552 (- growth)))))))
553 ;; Process the terminating event.
c491dd70 554 (unless dragged
8c7727c3 555 (push event unread-command-events))))
e07b9a6d 556
b0d22e20
GM
557(defun mouse-drag-mode-line (start-event)
558 "Change the height of a window by dragging on the mode line."
559 (interactive "e")
e07b9a6d 560 (mouse-drag-line start-event 'mode))
b0d22e20
GM
561
562(defun mouse-drag-header-line (start-event)
e07b9a6d 563 "Change the height of a window by dragging on the header line."
b0d22e20 564 (interactive "e")
e07b9a6d 565 (mouse-drag-line start-event 'header))
73c8f64c 566
08a1c178
RS
567(defun mouse-drag-vertical-line (start-event)
568 "Change the width of a window by dragging on the vertical line."
569 (interactive "e")
e07b9a6d 570 (mouse-drag-line start-event 'vertical))
08a1c178 571\f
2a5fa27b 572(defun mouse-set-point (event)
cc0a8174 573 "Move point to the position clicked on with the mouse.
2a5fa27b 574This should be bound to a mouse click event type."
ec558adc 575 (interactive "e")
d65147f6 576 (mouse-minibuffer-check event)
2a5fa27b
RS
577 ;; Use event-end in case called from mouse-drag-region.
578 ;; If EVENT is a click, event-end and event-start give same value.
541a44d2 579 (posn-set-point (event-end event)))
cc0a8174 580
e6c2f5d4
RS
581(defvar mouse-last-region-beg nil)
582(defvar mouse-last-region-end nil)
583(defvar mouse-last-region-tick nil)
584
585(defun mouse-region-match ()
586 "Return non-nil if there's an active region that was set with the mouse."
587 (and (mark t) mark-active
588 (eq mouse-last-region-beg (region-beginning))
589 (eq mouse-last-region-end (region-end))
590 (eq mouse-last-region-tick (buffer-modified-tick))))
591
652ccd35 592(defun mouse-set-region (click)
e37de120 593 "Set the region to the text dragged over, and copy to kill ring.
43f5740b
LMI
594This should be bound to a mouse drag event.
595See the `mouse-drag-copy-region' variable to control whether this
596command alters the kill ring or not."
652ccd35 597 (interactive "e")
d65147f6 598 (mouse-minibuffer-check click)
f9be2e35
CY
599 (select-window (posn-window (event-start click)))
600 (let ((beg (posn-point (event-start click)))
601 (end (posn-point (event-end click))))
602 (and mouse-drag-copy-region (integerp beg) (integerp end)
603 ;; Don't set this-command to `kill-region', so a following
604 ;; C-w won't double the text in the kill ring. Ignore
605 ;; `last-command' so we don't append to a preceding kill.
606 (let (this-command last-command deactivate-mark)
607 (copy-region-as-kill beg end)))
608 (if (numberp beg) (goto-char beg))
609 ;; On a text terminal, bounce the cursor.
33a35434 610 (or transient-mark-mode
f9be2e35 611 (window-system)
fcfc3c63 612 (sit-for 1))
652ccd35 613 (push-mark)
1cc8a3f4 614 (set-mark (point))
f9be2e35 615 (if (numberp end) (goto-char end))
e6c2f5d4
RS
616 (mouse-set-region-1)))
617
618(defun mouse-set-region-1 ()
a5809dbd 619 ;; Set transient-mark-mode for a little while.
688468a0
CY
620 (unless (eq (car-safe transient-mark-mode) 'only)
621 (setq transient-mark-mode
622 (cons 'only
623 (unless (eq transient-mark-mode 'lambda)
624 transient-mark-mode))))
e6c2f5d4
RS
625 (setq mouse-last-region-beg (region-beginning))
626 (setq mouse-last-region-end (region-end))
627 (setq mouse-last-region-tick (buffer-modified-tick)))
652ccd35 628
3b558d41 629(defcustom mouse-scroll-delay 0.25
9201cc28 630 "The pause between scroll steps caused by mouse drags, in seconds.
600c6e3a
JB
631If you drag the mouse beyond the edge of a window, Emacs scrolls the
632window to bring the text beyond that edge into view, with a delay of
633this many seconds between scroll steps. Scrolling stops when you move
634the mouse back into the window, or release the button.
635This variable's value may be non-integral.
3b558d41
RS
636Setting this to zero causes Emacs to scroll as fast as it can."
637 :type 'number
638 :group 'mouse)
600c6e3a 639
3b558d41 640(defcustom mouse-scroll-min-lines 1
9201cc28 641 "The minimum number of lines scrolled by dragging mouse out of window.
a3d6bb97
RS
642Moving the mouse out the top or bottom edge of the window begins
643scrolling repeatedly. The number of lines scrolled per repetition
644is normally equal to the number of lines beyond the window edge that
645the mouse has moved. However, it always scrolls at least the number
3b558d41
RS
646of lines specified by this variable."
647 :type 'integer
648 :group 'mouse)
08a1c178 649
e919a622
RS
650(defun mouse-scroll-subr (window jump &optional overlay start)
651 "Scroll the window WINDOW, JUMP lines at a time, until new input arrives.
600c6e3a
JB
652If OVERLAY is an overlay, let it stretch from START to the far edge of
653the newly visible text.
654Upon exit, point is at the far edge of the newly visible text."
08a1c178
RS
655 (cond
656 ((and (> jump 0) (< jump mouse-scroll-min-lines))
657 (setq jump mouse-scroll-min-lines))
658 ((and (< jump 0) (< (- jump) mouse-scroll-min-lines))
659 (setq jump (- mouse-scroll-min-lines))))
4e399a53
RS
660 (let ((opoint (point)))
661 (while (progn
662 (goto-char (window-start window))
663 (if (not (zerop (vertical-motion jump window)))
664 (progn
665 (set-window-start window (point))
666 (if (natnump jump)
0320e66f
RS
667 (if (window-end window)
668 (progn
669 (goto-char (window-end window))
670 ;; window-end doesn't reflect the window's new
671 ;; start position until the next redisplay.
672 (vertical-motion (1- jump) window))
673 (vertical-motion (- (window-height window) 2)))
4e399a53
RS
674 (goto-char (window-start window)))
675 (if overlay
676 (move-overlay overlay start (point)))
677 ;; Now that we have scrolled WINDOW properly,
678 ;; put point back where it was for the redisplay
679 ;; so that we don't mess up the selected window.
680 (or (eq window (selected-window))
681 (goto-char opoint))
d2287ded 682 (sit-for mouse-scroll-delay)))))
4e399a53
RS
683 (or (eq window (selected-window))
684 (goto-char opoint))))
fcfc3c63 685
dd524dbd 686(defvar mouse-selection-click-count 0)
eb6ff46f 687
c8c5bd24
RS
688(defvar mouse-selection-click-count-buffer nil)
689
600c6e3a 690(defun mouse-drag-region (start-event)
bcd5aef1 691 "Set the region to the text that the mouse is dragged over.
78210c95
RS
692Highlight the drag area as you move the mouse.
693This must be bound to a button-down mouse event.
d017deb2 694In Transient Mark mode, the highlighting remains as long as the mark
6454615c
RS
695remains active. Otherwise, it remains until the next input event.
696
697If the click is in the echo area, display the `*Messages*' buffer."
bcd5aef1 698 (interactive "e")
fd6fa53f
SM
699 ;; Give temporary modes such as isearch a chance to turn off.
700 (run-hooks 'mouse-leave-buffer-hook)
701 (mouse-drag-track start-event t))
6454615c 702
65f76581 703
91a2acb2 704(defun mouse-posn-property (pos property)
9ed38a84
DK
705 "Look for a property at click position.
706POS may be either a buffer position or a click position like
89bf250e 707those returned from `event-start'. If the click position is on
9ed38a84
DK
708a string, the text property PROPERTY is examined.
709If this is nil or the click is not on a string, then
710the corresponding buffer position is searched for PROPERTY.
711If PROPERTY is encountered in one of those places,
712its value is returned."
91a2acb2
DK
713 (if (consp pos)
714 (let ((w (posn-window pos)) (pt (posn-point pos))
715 (str (posn-string pos)))
716 (or (and str
717 (get-text-property (cdr str) property (car str)))
718 (and pt
719 (get-char-property pt property w))))
720 (get-char-property pos property)))
721
65f76581
KS
722(defun mouse-on-link-p (pos)
723 "Return non-nil if POS is on a link in the current buffer.
23eb76c4
TTN
724POS must be a buffer position in the current buffer or a mouse
725event location in the selected window (see `event-start').
185a53bb
KS
726However, if `mouse-1-click-in-non-selected-windows' is non-nil,
727POS may be a mouse event location in any window.
65f76581
KS
728
729A clickable link is identified by one of the following methods:
730
b41a4019 731- If the character at POS has a non-nil `follow-link' text or
e5fb57e9 732overlay property, the value of that property determines what to do.
65f76581 733
b41a4019
KS
734- If there is a local key-binding or a keybinding at position POS
735for the `follow-link' event, the binding of that event determines
736what to do.
65f76581 737
b41a4019
KS
738The resulting value determine whether POS is inside a link:
739
740- If the value is `mouse-face', POS is inside a link if there
65f76581
KS
741is a non-nil `mouse-face' property at POS. Return t in this case.
742
b41a4019 743- If the value is a function, FUNC, POS is inside a link if
65f76581 744the call \(FUNC POS) returns non-nil. Return the return value
23eb76c4 745from that call. Arg is \(posn-point POS) if POS is a mouse event.
65f76581 746
b41a4019 747- Otherwise, return the value itself.
65f76581
KS
748
749The return value is interpreted as follows:
750
751- If it is a string, the mouse-1 event is translated into the
752first character of the string, i.e. the action of the mouse-1
753click is the local or global binding of that character.
754
755- If it is a vector, the mouse-1 event is translated into the
756first element of that vector, i.e. the action of the mouse-1
757click is the local or global binding of that event.
758
759- Otherwise, the mouse-1 event is translated into a mouse-2 event
760at the same position."
91a2acb2 761 (let ((action
9a1ff164 762 (and (or (not (consp pos))
91a2acb2
DK
763 mouse-1-click-in-non-selected-windows
764 (eq (selected-window) (posn-window pos)))
765 (or (mouse-posn-property pos 'follow-link)
0e6008c5
SM
766 (let ((area (posn-area pos)))
767 (when area
768 (key-binding (vector area 'follow-link) nil t pos)))
91a2acb2
DK
769 (key-binding [follow-link] nil t pos)))))
770 (cond
771 ((eq action 'mouse-face)
772 (and (mouse-posn-property pos 'mouse-face) t))
773 ((functionp action)
9ed38a84 774 ;; FIXME: This seems questionable if the click is not in a buffer.
e9ae308c 775 ;; Should we instead decide that `action' takes a `posn'?
9ed38a84
DK
776 (if (consp pos)
777 (with-current-buffer (window-buffer (posn-window pos))
624c972d 778 (funcall action (posn-point pos)))
9ed38a84 779 (funcall action pos)))
91a2acb2 780 (t action))))
b0ca1b8a 781
5dbda518
KS
782(defun mouse-fixup-help-message (msg)
783 "Fix help message MSG for `mouse-1-click-follows-link'."
784 (let (mp pos)
785 (if (and mouse-1-click-follows-link
786 (stringp msg)
26ee77a6 787 (string-match-p "\\`mouse-2" msg)
5dbda518
KS
788 (setq mp (mouse-pixel-position))
789 (consp (setq pos (cdr mp)))
790 (car pos) (>= (car pos) 0)
791 (cdr pos) (>= (cdr pos) 0)
792 (setq pos (posn-at-x-y (car pos) (cdr pos) (car mp)))
793 (windowp (posn-window pos)))
794 (with-current-buffer (window-buffer (posn-window pos))
795 (if (mouse-on-link-p pos)
796 (setq msg (concat
797 (cond
798 ((eq mouse-1-click-follows-link 'double) "double-")
799 ((and (integerp mouse-1-click-follows-link)
800 (< mouse-1-click-follows-link 0)) "Long ")
801 (t ""))
802 "mouse-1" (substring msg 7)))))))
803 msg)
65f76581 804
624c972d 805(defun mouse-drag-track (start-event &optional
f1c4f757
S
806 do-mouse-drag-region-post-process)
807 "Track mouse drags by highlighting area between point and cursor.
5592c08f
CY
808The region will be defined with mark and point.
809DO-MOUSE-DRAG-REGION-POST-PROCESS should only be used by
810`mouse-drag-region'."
d65147f6 811 (mouse-minibuffer-check start-event)
aaf15b8b 812 (setq mouse-selection-click-count-buffer (current-buffer))
3f5c9cad 813 (deactivate-mark)
371d6a61 814 (let* ((scroll-margin 0) ; Avoid margin scrolling (Bug#9541).
aaf15b8b
SM
815 ;; We've recorded what we needed from the current buffer and
816 ;; window, now let's jump to the place of the event, where things
817 ;; are happening.
818 (_ (mouse-set-point start-event))
819 (echo-keystrokes 0)
4c9afcbe 820 (start-posn (event-start start-event))
600c6e3a
JB
821 (start-point (posn-point start-posn))
822 (start-window (posn-window start-posn))
02beb936 823 (start-window-start (window-start start-window))
1853aa6b 824 (start-hscroll (window-hscroll start-window))
600c6e3a 825 (bounds (window-edges start-window))
8413d0d2 826 (make-cursor-line-fully-visible nil)
600c6e3a
JB
827 (top (nth 1 bounds))
828 (bottom (if (window-minibuffer-p start-window)
829 (nth 3 bounds)
830 ;; Don't count the mode line.
e37de120 831 (1- (nth 3 bounds))))
81133808 832 (click-count (1- (event-click-count start-event)))
a9d01547
CY
833 ;; Suppress automatic hscrolling, because that is a nuisance
834 ;; when setting point near the right fringe (but see below).
41f03f4d
GM
835 (auto-hscroll-mode-saved auto-hscroll-mode)
836 (auto-hscroll-mode nil)
8cca9703 837 moved-off-start event end end-point)
5592c08f 838
81133808 839 (setq mouse-selection-click-count click-count)
08a1c178
RS
840 ;; In case the down click is in the middle of some intangible text,
841 ;; use the end of that text, and put it in START-POINT.
842 (if (< (point) start-point)
843 (goto-char start-point))
844 (setq start-point (point))
5592c08f 845
81133808
CY
846 ;; Activate the region, using `mouse-start-end' to determine where
847 ;; to put point and mark (e.g., double-click will select a word).
5592c08f
CY
848 (setq transient-mark-mode
849 (if (eq transient-mark-mode 'lambda)
850 '(only)
851 (cons 'only transient-mark-mode)))
9852377f 852 (let ((range (mouse-start-end start-point start-point click-count)))
6d3e82d2 853 (push-mark (nth 0 range) t t)
81133808 854 (goto-char (nth 1 range)))
5592c08f
CY
855
856 ;; Track the mouse until we get a non-movement event.
857 (track-mouse
858 (while (progn
859 (setq event (read-event))
860 (or (mouse-movement-p event)
861 (memq (car-safe event) '(switch-frame select-window))))
862 (unless (memq (car-safe event) '(switch-frame select-window))
863 ;; Automatic hscrolling did not occur during the call to
864 ;; `read-event'; but if the user subsequently drags the
865 ;; mouse, go ahead and hscroll.
41f03f4d 866 (let ((auto-hscroll-mode auto-hscroll-mode-saved))
5592c08f
CY
867 (redisplay))
868 (setq end (event-end event)
869 end-point (posn-point end))
8cca9703
CY
870 ;; Note whether the mouse has left the starting position.
871 (unless (eq end-point start-point)
872 (setq moved-off-start t))
5592c08f 873 (if (and (eq (posn-window end) start-window)
b846d039 874 (integer-or-marker-p end-point))
6d3e82d2
CY
875 (mouse--drag-set-mark-and-point start-point
876 end-point click-count)
5592c08f
CY
877 (let ((mouse-row (cdr (cdr (mouse-position)))))
878 (cond
879 ((null mouse-row))
880 ((< mouse-row top)
881 (mouse-scroll-subr start-window (- mouse-row top)
882 nil start-point))
883 ((>= mouse-row bottom)
884 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
885 nil start-point))))))))
886
887 ;; Handle the terminating event if possible.
888 (when (consp event)
889 ;; Ensure that point is on the end of the last event.
890 (when (and (setq end-point (posn-point (event-end event)))
2e3329a5 891 (eq (posn-window end) start-window)
5592c08f
CY
892 (integer-or-marker-p end-point)
893 (/= start-point end-point))
6d3e82d2
CY
894 (mouse--drag-set-mark-and-point start-point
895 end-point click-count))
896
5592c08f
CY
897 ;; Find its binding.
898 (let* ((fun (key-binding (vector (car event))))
925baaa9
GM
899 ;; FIXME This doesn't make sense, because
900 ;; event-click-count always returns something >= 1.
5592c08f
CY
901 (do-multi-click (and (> (event-click-count event) 0)
902 (functionp fun)
903 (not (memq fun '(mouse-set-point
904 mouse-set-region))))))
905 (if (and (/= (mark) (point))
906 (not do-multi-click))
f479ef6e 907
5592c08f
CY
908 ;; If point has moved, finish the drag.
909 (let* (last-command this-command)
5592c08f
CY
910 (and mouse-drag-copy-region
911 do-mouse-drag-region-post-process
912 (let (deactivate-mark)
9852377f 913 (copy-region-as-kill (mark) (point)))))
f479ef6e 914
8cca9703 915 ;; Otherwise, run binding of terminating up-event.
13841bfc 916 (deactivate-mark)
05e89fea
CY
917 (if do-multi-click
918 (goto-char start-point)
05e89fea
CY
919 (unless moved-off-start
920 (pop-mark)))
921
5592c08f
CY
922 (when (and (functionp fun)
923 (= start-hscroll (window-hscroll start-window))
924 ;; Don't run the up-event handler if the window
925 ;; start changed in a redisplay after the
926 ;; mouse-set-point for the down-mouse event at
927 ;; the beginning of this function. When the
928 ;; window start has changed, the up-mouse event
929 ;; contains a different position due to the new
930 ;; window contents, and point is set again.
931 (or end-point
932 (= (window-start start-window)
933 start-window-start)))
5592c08f
CY
934 (push event unread-command-events)))))))
935
6d3e82d2
CY
936(defun mouse--drag-set-mark-and-point (start click click-count)
937 (let* ((range (mouse-start-end start click click-count))
938 (beg (nth 0 range))
939 (end (nth 1 range)))
940 (cond ((eq (mark) beg)
941 (goto-char end))
942 ((eq (mark) end)
943 (goto-char beg))
944 ((< click (mark))
945 (set-mark end)
946 (goto-char beg))
947 (t
948 (set-mark beg)
949 (goto-char end)))))
950
e37de120 951;; Commands to handle xterm-style multiple clicks.
e37de120
RS
952(defun mouse-skip-word (dir)
953 "Skip over word, over whitespace, or over identical punctuation.
954If DIR is positive skip forward; if negative, skip backward."
955 (let* ((char (following-char))
956 (syntax (char-to-string (char-syntax char))))
258e3295
KH
957 (cond ((string= syntax "w")
958 ;; Here, we can't use skip-syntax-forward/backward because
959 ;; they don't pay attention to word-separating-categories,
960 ;; and thus they will skip over a true word boundary. So,
fffa137c 961 ;; we simulate the original behavior by using forward-word.
258e3295
KH
962 (if (< dir 0)
963 (if (not (looking-at "\\<"))
964 (forward-word -1))
965 (if (or (looking-at "\\<") (not (looking-at "\\>")))
966 (forward-word 1))))
967 ((string= syntax " ")
08a1c178
RS
968 (if (< dir 0)
969 (skip-syntax-backward syntax)
970 (skip-syntax-forward syntax)))
971 ((string= syntax "_")
972 (if (< dir 0)
973 (skip-syntax-backward "w_")
974 (skip-syntax-forward "w_")))
975 ((< dir 0)
976 (while (and (not (bobp)) (= (preceding-char) char))
977 (forward-char -1)))
978 (t
979 (while (and (not (eobp)) (= (following-char) char))
980 (forward-char 1))))))
e37de120 981
eb6ff46f 982(defun mouse-start-end (start end mode)
c3bb6d70 983 "Return a list of region bounds based on START and END according to MODE.
a7df580d
DL
984If MODE is 0 then set point to (min START END), mark to (max START END).
985If MODE is 1 then set point to start of word at (min START END),
986mark to end of word at (max START END).
987If MODE is 2 then do the same for lines."
e37de120
RS
988 (if (> start end)
989 (let ((temp start))
990 (setq start end
991 end temp)))
9a974c88 992 (setq mode (mod mode 3))
e37de120
RS
993 (cond ((= mode 0)
994 (list start end))
995 ((and (= mode 1)
996 (= start end)
1ec71583 997 (char-after start)
e37de120 998 (= (char-syntax (char-after start)) ?\())
6f482eec
RS
999 (list start
1000 (save-excursion
1001 (goto-char start)
1002 (forward-sexp 1)
1003 (point))))
e37de120
RS
1004 ((and (= mode 1)
1005 (= start end)
1ec71583 1006 (char-after start)
e37de120 1007 (= (char-syntax (char-after start)) ?\)))
7b611de0 1008 (list (save-excursion
e37de120 1009 (goto-char (1+ start))
d89a4a47
RS
1010 (backward-sexp 1)
1011 (point))
e37de120 1012 (1+ start)))
53770877
RS
1013 ((and (= mode 1)
1014 (= start end)
1015 (char-after start)
1016 (= (char-syntax (char-after start)) ?\"))
1017 (let ((open (or (eq start (point-min))
1018 (save-excursion
1019 (goto-char (- start 1))
1020 (looking-at "\\s(\\|\\s \\|\\s>")))))
1021 (if open
1022 (list start
1023 (save-excursion
1024 (condition-case nil
7b611de0 1025 (progn
53770877
RS
1026 (goto-char start)
1027 (forward-sexp 1)
1028 (point))
1029 (error end))))
f1017d55 1030 (list (save-excursion
53770877
RS
1031 (condition-case nil
1032 (progn
1033 (goto-char (1+ start))
1034 (backward-sexp 1)
1035 (point))
f1017d55
RS
1036 (error end)))
1037 (1+ start)))))
e37de120
RS
1038 ((= mode 1)
1039 (list (save-excursion
1040 (goto-char start)
1041 (mouse-skip-word -1)
1042 (point))
1043 (save-excursion
1044 (goto-char end)
1045 (mouse-skip-word 1)
1046 (point))))
1047 ((= mode 2)
1048 (list (save-excursion
1049 (goto-char start)
6d3e82d2 1050 (line-beginning-position 1))
e37de120
RS
1051 (save-excursion
1052 (goto-char end)
1053 (forward-line 1)
1054 (point))))))
e66feb07 1055\f
3f26b32a
RS
1056;; Subroutine: set the mark where CLICK happened,
1057;; but don't do anything else.
1058(defun mouse-set-mark-fast (click)
d65147f6 1059 (mouse-minibuffer-check click)
3f26b32a
RS
1060 (let ((posn (event-start click)))
1061 (select-window (posn-window posn))
1062 (if (numberp (posn-point posn))
1063 (push-mark (posn-point posn) t t))))
1064
98aac09d
MB
1065(defun mouse-undouble-last-event (events)
1066 (let* ((index (1- (length events)))
1067 (last (nthcdr index events))
1068 (event (car last))
1069 (basic (event-basic-type event))
397a88f3
RS
1070 (old-modifiers (event-modifiers event))
1071 (modifiers (delq 'double (delq 'triple (copy-sequence old-modifiers))))
98aac09d
MB
1072 (new
1073 (if (consp event)
7132500b
RS
1074 ;; Use reverse, not nreverse, since event-modifiers
1075 ;; does not copy the list it returns.
3bb846b8 1076 (cons (event-convert-list (reverse (cons basic modifiers)))
98aac09d
MB
1077 (cdr event))
1078 event)))
1079 (setcar last new)
397a88f3
RS
1080 (if (and (not (equal modifiers old-modifiers))
1081 (key-binding (apply 'vector events)))
98aac09d
MB
1082 t
1083 (setcar last event)
1084 nil)))
1085
7b611de0 1086;; Momentarily show where the mark is, if highlighting doesn't show it.
7aeb7370 1087
cc0a8174
JB
1088(defun mouse-set-mark (click)
1089 "Set mark at the position clicked on with the mouse.
1090Display cursor at that position for a second.
1091This must be bound to a mouse click."
ec558adc 1092 (interactive "e")
f598fb03
RS
1093 (mouse-minibuffer-check click)
1094 (select-window (posn-window (event-start click)))
1095 ;; We don't use save-excursion because that preserves the mark too.
72ea54a4
RS
1096 (let ((point-save (point)))
1097 (unwind-protect
cc0a8174 1098 (progn (mouse-set-point click)
897897e3
RS
1099 (push-mark nil t t)
1100 (or transient-mark-mode
1101 (sit-for 1)))
72ea54a4
RS
1102 (goto-char point-save))))
1103
cc0a8174
JB
1104(defun mouse-kill (click)
1105 "Kill the region between point and the mouse click.
1106The text is saved in the kill ring, as with \\[kill-region]."
ec558adc 1107 (interactive "e")
d65147f6 1108 (mouse-minibuffer-check click)
142c7672
KH
1109 (let* ((posn (event-start click))
1110 (click-posn (posn-point posn)))
1111 (select-window (posn-window posn))
bd307392
JB
1112 (if (numberp click-posn)
1113 (kill-region (min (point) click-posn)
1114 (max (point) click-posn)))))
72ea54a4 1115
87ef29fd
JB
1116(defun mouse-yank-at-click (click arg)
1117 "Insert the last stretch of killed text at the position clicked on.
0e57ab65 1118Also move point to one end of the text thus inserted (normally the end),
231c4d1a 1119and set mark at the beginning.
50f58001
RS
1120Prefix arguments are interpreted as with \\[yank].
1121If `mouse-yank-at-point' is non-nil, insert at point
9852377f 1122regardless of where you click."
a4cabe41 1123 (interactive "e\nP")
33c448cd
RS
1124 ;; Give temporary modes such as isearch a chance to turn off.
1125 (run-hooks 'mouse-leave-buffer-hook)
3f5c9cad
CY
1126 (when select-active-regions
1127 ;; Without this, confusing things happen upon e.g. inserting into
1128 ;; the middle of an active region.
6f3a2682 1129 (deactivate-mark))
50f58001 1130 (or mouse-yank-at-point (mouse-set-point click))
d89a4a47 1131 (setq this-command 'yank)
a814e9df 1132 (setq mouse-selection-click-count 0)
87ef29fd
JB
1133 (yank arg))
1134
63571b5a
RS
1135(defun mouse-yank-primary (click)
1136 "Insert the primary selection at the position clicked on.
e1eb5385
CY
1137Move point to the end of the inserted text, and set mark at
1138beginning. If `mouse-yank-at-point' is non-nil, insert at point
63571b5a
RS
1139regardless of where you click."
1140 (interactive "e")
1141 ;; Give temporary modes such as isearch a chance to turn off.
1142 (run-hooks 'mouse-leave-buffer-hook)
1c409d0b
CY
1143 ;; Without this, confusing things happen upon e.g. inserting into
1144 ;; the middle of an active region.
6c6a75d5 1145 (when select-active-regions
1c409d0b
CY
1146 (let (select-active-regions)
1147 (deactivate-mark)))
63571b5a 1148 (or mouse-yank-at-point (mouse-set-point click))
e7afcf30
EZ
1149 (let ((primary
1150 (cond
0fda9b75 1151 ((eq (framep (selected-frame)) 'w32)
e77714da
EZ
1152 ;; MS-Windows emulates PRIMARY in x-get-selection, but not
1153 ;; in x-get-selection-value (the latter only accesses the
1154 ;; clipboard). So try PRIMARY first, in case they selected
1155 ;; something with the mouse in the current Emacs session.
1156 (or (x-get-selection 'PRIMARY)
1157 (x-get-selection-value)))
1158 ((fboundp 'x-get-selection-value) ; MS-DOS and X.
1159 ;; On X, x-get-selection-value supports more formats and
1160 ;; encodings, so use it in preference to x-get-selection.
e7afcf30
EZ
1161 (or (x-get-selection-value)
1162 (x-get-selection 'PRIMARY)))
1163 ;; FIXME: What about xterm-mouse-mode etc.?
1164 (t
1165 (x-get-selection 'PRIMARY)))))
e1eb5385
CY
1166 (unless primary
1167 (error "No selection is available"))
1168 (push-mark (point))
1169 (insert primary)))
63571b5a 1170
87ef29fd 1171(defun mouse-kill-ring-save (click)
cc0a8174
JB
1172 "Copy the region between point and the mouse click in the kill ring.
1173This does not delete the region; it acts like \\[kill-ring-save]."
ec558adc 1174 (interactive "e")
3f26b32a 1175 (mouse-set-mark-fast click)
6452d8a6 1176 (let (this-command last-command)
5592c08f 1177 (kill-ring-save (point) (mark t))))
72ea54a4 1178
ad0d18af
SM
1179;; This function used to delete the text between point and the mouse
1180;; whenever it was equal to the front of the kill ring, but some
1181;; people found that confusing.
dbc4e1c1 1182
d2625c3d 1183;; The position of the last invocation of `mouse-save-then-kill'.
dbc4e1c1
JB
1184(defvar mouse-save-then-kill-posn nil)
1185
26d280b9 1186(defun mouse-save-then-kill-delete-region (beg end)
9a974c88
RS
1187 ;; We must make our own undo boundaries
1188 ;; because they happen automatically only for the current buffer.
1189 (undo-boundary)
dd524dbd
RS
1190 (if (or (= beg end) (eq buffer-undo-list t))
1191 ;; If we have no undo list in this buffer,
1192 ;; just delete.
1193 (delete-region beg end)
1194 ;; Delete, but make the undo-list entry share with the kill ring.
1195 ;; First, delete just one char, so in case buffer is being modified
1196 ;; for the first time, the undo list records that fact.
8faa9707 1197 (let (before-change-functions after-change-functions)
2f4b15ef
RS
1198 (delete-region beg
1199 (+ beg (if (> end beg) 1 -1))))
dd524dbd
RS
1200 (let ((buffer-undo-list buffer-undo-list))
1201 ;; Undo that deletion--but don't change the undo list!
8faa9707 1202 (let (before-change-functions after-change-functions)
2f4b15ef 1203 (primitive-undo 1 buffer-undo-list))
dd524dbd
RS
1204 ;; Now delete the rest of the specified region,
1205 ;; but don't record it.
1206 (setq buffer-undo-list t)
9a974c88
RS
1207 (if (/= (length (car kill-ring)) (- (max end beg) (min end beg)))
1208 (error "Lossage in mouse-save-then-kill-delete-region"))
dd524dbd
RS
1209 (delete-region beg end))
1210 (let ((tail buffer-undo-list))
1211 ;; Search back in buffer-undo-list for the string
1212 ;; that came from deleting one character.
1213 (while (and tail (not (stringp (car (car tail)))))
1214 (setq tail (cdr tail)))
1215 ;; Replace it with an entry for the entire deleted text.
1216 (and tail
9a974c88
RS
1217 (setcar tail (cons (car kill-ring) (min beg end))))))
1218 (undo-boundary))
eb6ff46f 1219
947da0c4 1220(defun mouse-save-then-kill (click)
d2625c3d
CY
1221 "Set the region according to CLICK; the second time, kill it.
1222CLICK should be a mouse click event.
1223
1224If the region is inactive, activate it temporarily. Set mark at
1225the original point, and move point to the position of CLICK.
1226
1227If the region is already active, adjust it. Normally, do this by
1228moving point or mark, whichever is closer, to CLICK. But if you
1229have selected whole words or lines, move point or mark to the
1230word or line boundary closest to CLICK instead.
1231
93d68d4f
DDLHG
1232If `mouse-drag-copy-region' is non-nil, this command also saves the
1233new region to the kill ring (replacing the previous kill if the
1234previous region was just saved to the kill ring).
1235
d2625c3d 1236If this command is called a second consecutive time with the same
93d68d4f
DDLHG
1237CLICK position, kill the region (or delete it
1238if `mouse-drag-copy-region' is non-nil)"
947da0c4 1239 (interactive "e")
d2625c3d
CY
1240 (mouse-minibuffer-check click)
1241 (let* ((posn (event-start click))
1242 (click-pt (posn-point posn))
1243 (window (posn-window posn))
1244 (buf (window-buffer window))
1245 ;; Don't let a subsequent kill command append to this one.
1246 (this-command this-command)
1247 ;; Check if the user has multi-clicked to select words/lines.
1248 (click-count
1249 (if (and (eq mouse-selection-click-count-buffer buf)
1250 (with-current-buffer buf (mark t)))
1251 mouse-selection-click-count
1252 0)))
1253 (cond
1254 ((not (numberp click-pt)) nil)
1255 ;; If the user clicked without moving point, kill the region.
1256 ;; This also resets `mouse-selection-click-count'.
1257 ((and (eq last-command 'mouse-save-then-kill)
1258 (eq click-pt mouse-save-then-kill-posn)
1259 (eq window (selected-window)))
93d68d4f
DDLHG
1260 (if mouse-drag-copy-region
1261 ;; Region already saved in the previous click;
1262 ;; don't make a duplicate entry, just delete.
1263 (delete-region (mark t) (point))
1264 (kill-region (mark t) (point)))
d2625c3d
CY
1265 (setq mouse-selection-click-count 0)
1266 (setq mouse-save-then-kill-posn nil))
1267
1268 ;; Otherwise, if there is a suitable region, adjust it by moving
1269 ;; one end (whichever is closer) to CLICK-PT.
1270 ((or (with-current-buffer buf (region-active-p))
1271 (and (eq window (selected-window))
1272 (mark t)
1273 (or (and (eq last-command 'mouse-save-then-kill)
1274 mouse-save-then-kill-posn)
1275 (and (memq last-command '(mouse-drag-region
1276 mouse-set-region))
1277 (or mark-even-if-inactive
1278 (not transient-mark-mode))))))
1279 (select-window window)
1280 (let* ((range (mouse-start-end click-pt click-pt click-count)))
1281 (if (< (abs (- click-pt (mark t)))
1282 (abs (- click-pt (point))))
1283 (set-mark (car range))
1284 (goto-char (nth 1 range)))
1285 (setq deactivate-mark nil)
1286 (mouse-set-region-1)
93d68d4f
DDLHG
1287 (when mouse-drag-copy-region
1288 ;; Region already copied to kill-ring once, so replace.
1289 (kill-new (filter-buffer-substring (mark t) (point)) t))
d2625c3d
CY
1290 ;; Arrange for a repeated mouse-3 to kill the region.
1291 (setq mouse-save-then-kill-posn click-pt)))
1292
1293 ;; Otherwise, set the mark where point is and move to CLICK-PT.
1294 (t
1295 (select-window window)
1296 (mouse-set-mark-fast click)
1297 (let ((before-scroll (with-current-buffer buf point-before-scroll)))
1298 (if before-scroll (goto-char before-scroll)))
1299 (exchange-point-and-mark)
1300 (mouse-set-region-1)
93d68d4f
DDLHG
1301 (when mouse-drag-copy-region
1302 (kill-new (filter-buffer-substring (mark t) (point))))
d2625c3d
CY
1303 (setq mouse-save-then-kill-posn click-pt)))))
1304
e66feb07
RS
1305\f
1306(global-set-key [M-mouse-1] 'mouse-start-secondary)
1307(global-set-key [M-drag-mouse-1] 'mouse-set-secondary)
1308(global-set-key [M-down-mouse-1] 'mouse-drag-secondary)
1309(global-set-key [M-mouse-3] 'mouse-secondary-save-then-kill)
9a974c88 1310(global-set-key [M-mouse-2] 'mouse-yank-secondary)
e66feb07 1311
aaf15b8b
SM
1312(defconst mouse-secondary-overlay
1313 (let ((ol (make-overlay (point-min) (point-min))))
1314 (delete-overlay ol)
1315 (overlay-put ol 'face 'secondary-selection)
1316 ol)
1317 "An overlay which records the current secondary selection.
1318It is deleted when there is no secondary selection.")
e66feb07 1319
a94c7fcc
RS
1320(defvar mouse-secondary-click-count 0)
1321
e66feb07
RS
1322;; A marker which records the specified first end for a secondary selection.
1323;; May be nil.
1324(defvar mouse-secondary-start nil)
1325
1326(defun mouse-start-secondary (click)
1327 "Set one end of the secondary selection to the position clicked on.
1328Use \\[mouse-secondary-save-then-kill] to set the other end
1329and complete the secondary selection."
1330 (interactive "e")
d65147f6 1331 (mouse-minibuffer-check click)
e66feb07 1332 (let ((posn (event-start click)))
aaf15b8b 1333 (with-current-buffer (window-buffer (posn-window posn))
230aaa73 1334 ;; Cancel any preexisting secondary selection.
aaf15b8b 1335 (delete-overlay mouse-secondary-overlay)
230aaa73
RS
1336 (if (numberp (posn-point posn))
1337 (progn
1338 (or mouse-secondary-start
1339 (setq mouse-secondary-start (make-marker)))
1340 (move-marker mouse-secondary-start (posn-point posn)))))))
e66feb07
RS
1341
1342(defun mouse-set-secondary (click)
1343 "Set the secondary selection to the text that the mouse is dragged over.
1344This must be bound to a mouse drag event."
1345 (interactive "e")
d65147f6 1346 (mouse-minibuffer-check click)
e66feb07
RS
1347 (let ((posn (event-start click))
1348 beg
1349 (end (event-end click)))
aaf15b8b 1350 (with-current-buffer (window-buffer (posn-window posn))
230aaa73
RS
1351 (if (numberp (posn-point posn))
1352 (setq beg (posn-point posn)))
3e4f866b
CY
1353 (move-overlay mouse-secondary-overlay beg (posn-point end))
1354 (x-set-selection
1355 'SECONDARY
1356 (buffer-substring (overlay-start mouse-secondary-overlay)
1357 (overlay-end mouse-secondary-overlay))))))
947da0c4 1358
d89a4a47 1359(defun mouse-drag-secondary (start-event)
e66feb07 1360 "Set the secondary selection to the text that the mouse is dragged over.
d89a4a47 1361Highlight the drag area as you move the mouse.
efc10c97
RS
1362This must be bound to a button-down mouse event.
1363The function returns a non-nil value if it creates a secondary selection."
e66feb07 1364 (interactive "e")
d65147f6 1365 (mouse-minibuffer-check start-event)
4c9afcbe
RS
1366 (let* ((echo-keystrokes 0)
1367 (start-posn (event-start start-event))
d89a4a47
RS
1368 (start-point (posn-point start-posn))
1369 (start-window (posn-window start-posn))
d89a4a47
RS
1370 (bounds (window-edges start-window))
1371 (top (nth 1 bounds))
1372 (bottom (if (window-minibuffer-p start-window)
1373 (nth 3 bounds)
1374 ;; Don't count the mode line.
1375 (1- (nth 3 bounds))))
1376 (click-count (1- (event-click-count start-event))))
aaf15b8b 1377 (with-current-buffer (window-buffer start-window)
a94c7fcc 1378 (setq mouse-secondary-click-count click-count)
9a974c88 1379 (if (> (mod click-count 3) 0)
26d280b9
RS
1380 ;; Double or triple press: make an initial selection
1381 ;; of one word or line.
d89a4a47
RS
1382 (let ((range (mouse-start-end start-point start-point click-count)))
1383 (set-marker mouse-secondary-start nil)
d89a4a47
RS
1384 (move-overlay mouse-secondary-overlay (car range) (nth 1 range)
1385 (window-buffer start-window)))
26d280b9 1386 ;; Single-press: cancel any preexisting secondary selection.
d89a4a47
RS
1387 (or mouse-secondary-start
1388 (setq mouse-secondary-start (make-marker)))
1389 (set-marker mouse-secondary-start start-point)
1390 (delete-overlay mouse-secondary-overlay))
1391 (let (event end end-point)
1392 (track-mouse
1393 (while (progn
1394 (setq event (read-event))
1395 (or (mouse-movement-p event)
fbd8dc8a 1396 (memq (car-safe event) '(switch-frame select-window))))
d89a4a47 1397
fbd8dc8a 1398 (if (memq (car-safe event) '(switch-frame select-window))
d89a4a47
RS
1399 nil
1400 (setq end (event-end event)
1401 end-point (posn-point end))
1402 (cond
d89a4a47
RS
1403 ;; Are we moving within the original window?
1404 ((and (eq (posn-window end) start-window)
1405 (integer-or-marker-p end-point))
d89a4a47
RS
1406 (let ((range (mouse-start-end start-point end-point
1407 click-count)))
0136e1e3
RS
1408 (if (or (/= start-point end-point)
1409 (null (marker-position mouse-secondary-start)))
1410 (progn
1411 (set-marker mouse-secondary-start nil)
1412 (move-overlay mouse-secondary-overlay
1413 (car range) (nth 1 range))))))
3b0aebe9
RS
1414 (t
1415 (let ((mouse-row (cdr (cdr (mouse-position)))))
1416 (cond
1417 ((null mouse-row))
1418 ((< mouse-row top)
e919a622
RS
1419 (mouse-scroll-subr start-window (- mouse-row top)
1420 mouse-secondary-overlay start-point))
d2287ded 1421 ((>= mouse-row bottom)
e919a622 1422 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
3b0aebe9 1423 mouse-secondary-overlay start-point)))))))))
d89a4a47 1424
4e399a53 1425 (if (consp event)
d89a4a47
RS
1426 (if (marker-position mouse-secondary-start)
1427 (save-window-excursion
1428 (delete-overlay mouse-secondary-overlay)
9a974c88 1429 (x-set-selection 'SECONDARY nil)
d89a4a47
RS
1430 (select-window start-window)
1431 (save-excursion
1432 (goto-char mouse-secondary-start)
efc10c97
RS
1433 (sit-for 1)
1434 nil))
9a974c88
RS
1435 (x-set-selection
1436 'SECONDARY
1437 (buffer-substring (overlay-start mouse-secondary-overlay)
1438 (overlay-end mouse-secondary-overlay)))))))))
e66feb07 1439
9a974c88 1440(defun mouse-yank-secondary (click)
50f58001
RS
1441 "Insert the secondary selection at the position clicked on.
1442Move point to the end of the inserted text.
1443If `mouse-yank-at-point' is non-nil, insert at point
1444regardless of where you click."
a4cabe41 1445 (interactive "e")
33c448cd
RS
1446 ;; Give temporary modes such as isearch a chance to turn off.
1447 (run-hooks 'mouse-leave-buffer-hook)
50f58001 1448 (or mouse-yank-at-point (mouse-set-point click))
b3709a53
RS
1449 (let ((secondary (x-get-selection 'SECONDARY)))
1450 (if secondary
aa2d4bd3 1451 (insert secondary)
b3709a53 1452 (error "No secondary selection"))))
9a974c88 1453
7e6404f6 1454(defun mouse-kill-secondary ()
9a974c88
RS
1455 "Kill the text in the secondary selection.
1456This is intended more as a keyboard command than as a mouse command
1457but it can work as either one.
1458
1459The current buffer (in case of keyboard use), or the buffer clicked on,
1460must be the one that the secondary selection is in. This requirement
1461is to prevent accidents."
7e6404f6
RS
1462 (interactive)
1463 (let* ((keys (this-command-keys))
1464 (click (elt keys (1- (length keys)))))
1465 (or (eq (overlay-buffer mouse-secondary-overlay)
1466 (if (listp click)
1467 (window-buffer (posn-window (event-start click)))
1468 (current-buffer)))
1469 (error "Select or click on the buffer where the secondary selection is")))
9dfab550 1470 (let (this-command)
aaf15b8b 1471 (with-current-buffer (overlay-buffer mouse-secondary-overlay)
9dfab550
RS
1472 (kill-region (overlay-start mouse-secondary-overlay)
1473 (overlay-end mouse-secondary-overlay))))
f9be2e35 1474 (delete-overlay mouse-secondary-overlay))
e66feb07
RS
1475
1476(defun mouse-secondary-save-then-kill (click)
d2625c3d
CY
1477 "Set the secondary selection and save it to the kill ring.
1478The second time, kill it. CLICK should be a mouse click event.
1479
1480If you have not called `mouse-start-secondary' in the clicked
1481buffer, activate the secondary selection and set it between point
1482and the click position CLICK.
1483
1484Otherwise, adjust the bounds of the secondary selection.
1485Normally, do this by moving its beginning or end, whichever is
1486closer, to CLICK. But if you have selected whole words or lines,
1487adjust to the word or line boundary closest to CLICK instead.
1488
1489If this command is called a second consecutive time with the same
1490CLICK position, kill the secondary selection."
e66feb07 1491 (interactive "e")
d65147f6 1492 (mouse-minibuffer-check click)
d2625c3d
CY
1493 (let* ((posn (event-start click))
1494 (click-pt (posn-point posn))
1495 (window (posn-window posn))
1496 (buf (window-buffer window))
1497 ;; Don't let a subsequent kill command append to this one.
1498 (this-command this-command)
1499 ;; Check if the user has multi-clicked to select words/lines.
1500 (click-count
1501 (if (eq (overlay-buffer mouse-secondary-overlay) buf)
1502 mouse-secondary-click-count
1503 0))
1504 (beg (overlay-start mouse-secondary-overlay))
1505 (end (overlay-end mouse-secondary-overlay)))
1506
1507 (cond
1508 ((not (numberp click-pt)) nil)
1509
1510 ;; If the secondary selection is not active in BUF, activate it.
1511 ((not (eq buf (or (overlay-buffer mouse-secondary-overlay)
1512 (if mouse-secondary-start
1513 (marker-buffer mouse-secondary-start)))))
1514 (select-window window)
1515 (setq mouse-secondary-start (make-marker))
1516 (move-marker mouse-secondary-start (point))
1517 (move-overlay mouse-secondary-overlay (point) click-pt buf)
1518 (kill-ring-save (point) click-pt))
1519
1520 ;; If the user clicked without moving point, delete the secondary
1521 ;; selection. This also resets `mouse-secondary-click-count'.
1522 ((and (eq last-command 'mouse-secondary-save-then-kill)
1523 (eq click-pt mouse-save-then-kill-posn)
1524 (eq window (selected-window)))
1525 (mouse-save-then-kill-delete-region beg end)
1526 (delete-overlay mouse-secondary-overlay)
1527 (setq mouse-secondary-click-count 0)
1528 (setq mouse-save-then-kill-posn nil))
1529
1530 ;; Otherwise, if there is a suitable secondary selection overlay,
1531 ;; adjust it by moving one end (whichever is closer) to CLICK-PT.
1532 ((and beg (eq buf (overlay-buffer mouse-secondary-overlay)))
1533 (let* ((range (mouse-start-end click-pt click-pt click-count)))
1534 (if (< (abs (- click-pt beg))
1535 (abs (- click-pt end)))
1536 (move-overlay mouse-secondary-overlay (car range) end)
1537 (move-overlay mouse-secondary-overlay beg (nth 1 range))))
1538 (setq deactivate-mark nil)
1539 (if (eq last-command 'mouse-secondary-save-then-kill)
1540 ;; If the front of the kill ring comes from an immediately
1541 ;; previous use of this command, replace the entry.
1542 (kill-new
1543 (buffer-substring (overlay-start mouse-secondary-overlay)
1544 (overlay-end mouse-secondary-overlay))
1545 t)
1546 (let (deactivate-mark)
1547 (copy-region-as-kill (overlay-start mouse-secondary-overlay)
1548 (overlay-end mouse-secondary-overlay))))
1549 (setq mouse-save-then-kill-posn click-pt))
1550
1551 ;; Otherwise, set the secondary selection overlay.
1552 (t
1553 (select-window window)
1554 (if mouse-secondary-start
1555 ;; All we have is one end of a selection, so put the other
1556 ;; end here.
1557 (let ((start (+ 0 mouse-secondary-start)))
1558 (kill-ring-save start click-pt)
1559 (move-overlay mouse-secondary-overlay start click-pt)))
1560 (setq mouse-save-then-kill-posn click-pt))))
1561
1562 ;; Finally, set the window system's secondary selection.
1563 (let (str)
1564 (and (overlay-buffer mouse-secondary-overlay)
1565 (setq str (buffer-substring (overlay-start mouse-secondary-overlay)
1566 (overlay-end mouse-secondary-overlay)))
1567 (> (length str) 0)
1568 (x-set-selection 'SECONDARY str))))
1569
e66feb07 1570\f
0d9be91c 1571(defcustom mouse-buffer-menu-maxlen 20
9201cc28 1572 "Number of buffers in one pane (submenu) of the buffer menu.
f1107960 1573If we have lots of buffers, divide them into groups of
0d9be91c 1574`mouse-buffer-menu-maxlen' and make a pane (or submenu) for each one."
3b558d41
RS
1575 :type 'integer
1576 :group 'mouse)
f1107960 1577
3ca87c7b 1578(defcustom mouse-buffer-menu-mode-mult 4
9201cc28 1579 "Group the buffers by the major mode groups on \\[mouse-buffer-menu]?
3ca87c7b
RS
1580This number which determines (in a hairy way) whether \\[mouse-buffer-menu]
1581will split the buffer menu by the major modes (see
1582`mouse-buffer-menu-mode-groups') or just by menu length.
1583Set to 1 (or even 0!) if you want to group by major mode always, and to
1584a large number if you prefer a mixed multitude. The default is 4."
1585 :type 'integer
1586 :group 'mouse
1587 :version "20.3")
1588
284a88a3 1589(defvar mouse-buffer-menu-mode-groups
e8e4d5c8 1590 (mapcar (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
284a88a3
RS
1591 '(("Info\\|Help\\|Apropos\\|Man" . "Help")
1592 ("\\bVM\\b\\|\\bMH\\b\\|Message\\|Mail\\|Group\\|Score\\|Summary\\|Article"
1593 . "Mail/News")
1594 ("\\<C\\>" . "C")
1595 ("ObjC" . "C")
1596 ("Text" . "Text")
1597 ("Outline" . "Text")
c71a58a3 1598 ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML")
f399e4ad 1599 ("log\\|diff\\|vc\\|cvs\\|Annotate" . "Version Control") ; "Change Management"?
7bc61bb7
SS
1600 ("Threads\\|Memory\\|Disassembly\\|Breakpoints\\|Frames\\|Locals\\|Registers\\|Inferior I/O\\|Debugger"
1601 . "GDB")
a7610c52 1602 ("Lisp" . "Lisp")))
284a88a3
RS
1603 "How to group various major modes together in \\[mouse-buffer-menu].
1604Each element has the form (REGEXP . GROUPNAME).
1605If the major mode's name string matches REGEXP, use GROUPNAME instead.")
1606
8b34e79d 1607(defun mouse-buffer-menu (event)
2d82f7b9
RS
1608 "Pop up a menu of buffers for selection with the mouse.
1609This switches buffers in the window that you clicked on,
1610and selects that window."
ec558adc 1611 (interactive "e")
d65147f6 1612 (mouse-minibuffer-check event)
3ca87c7b 1613 (let ((buffers (buffer-list)) alist menu split-by-major-mode sum-of-squares)
284a88a3 1614 ;; Make an alist of elements that look like (MENU-ITEM . BUFFER).
cc2ee8ec
SS
1615 (dolist (buf buffers)
1616 ;; Divide all buffers into buckets for various major modes.
1617 ;; Each bucket looks like (MODE NAMESTRING BUFFERS...).
1618 (with-current-buffer buf
1619 (let* ((adjusted-major-mode major-mode) elt)
1620 (dolist (group mouse-buffer-menu-mode-groups)
1621 (when (string-match (car group) (format-mode-line mode-name))
1622 (setq adjusted-major-mode (cdr group))))
1623 (setq elt (assoc adjusted-major-mode split-by-major-mode))
1624 (unless elt
1625 (setq elt (list adjusted-major-mode
1626 (if (stringp adjusted-major-mode)
1627 adjusted-major-mode
48d33090 1628 (format-mode-line mode-name nil nil buf)))
cc2ee8ec
SS
1629 split-by-major-mode (cons elt split-by-major-mode)))
1630 (or (memq buf (cdr (cdr elt)))
1631 (setcdr (cdr elt) (cons buf (cdr (cdr elt))))))))
284a88a3
RS
1632 ;; Compute the sum of squares of sizes of the major-mode buckets.
1633 (let ((tail split-by-major-mode))
1634 (setq sum-of-squares 0)
1635 (while tail
1636 (setq sum-of-squares
1637 (+ sum-of-squares
3ca87c7b 1638 (let ((len (length (cdr (cdr (car tail)))))) (* len len))))
284a88a3 1639 (setq tail (cdr tail))))
3ca87c7b
RS
1640 (if (< (* sum-of-squares mouse-buffer-menu-mode-mult)
1641 (* (length buffers) (length buffers)))
284a88a3
RS
1642 ;; Subdividing by major modes really helps, so let's do it.
1643 (let (subdivided-menus (buffers-left (length buffers)))
1644 ;; Sort the list to put the most popular major modes first.
1645 (setq split-by-major-mode
1646 (sort split-by-major-mode
1647 (function (lambda (elt1 elt2)
1648 (> (length elt1) (length elt2))))))
1649 ;; Make a separate submenu for each major mode
1650 ;; that has more than one buffer,
1651 ;; unless all the remaining buffers are less than 1/10 of them.
1652 (while (and split-by-major-mode
1653 (and (> (length (car split-by-major-mode)) 3)
1654 (> (* buffers-left 10) (length buffers))))
4b4ea1dc
EZ
1655 (let ((this-mode-list (mouse-buffer-menu-alist
1656 (cdr (cdr (car split-by-major-mode))))))
1657 (and this-mode-list
1658 (setq subdivided-menus
1659 (cons (cons
1660 (nth 1 (car split-by-major-mode))
1661 this-mode-list)
1662 subdivided-menus))))
284a88a3
RS
1663 (setq buffers-left
1664 (- buffers-left (length (cdr (car split-by-major-mode)))))
1665 (setq split-by-major-mode (cdr split-by-major-mode)))
1666 ;; If any major modes are left over,
1667 ;; make a single submenu for them.
1668 (if split-by-major-mode
4b4ea1dc
EZ
1669 (let ((others-list
1670 (mouse-buffer-menu-alist
1671 ;; we don't need split-by-major-mode any more,
1672 ;; so we can ditch it with nconc.
1673 (apply 'nconc (mapcar 'cddr split-by-major-mode)))))
1674 (and others-list
1675 (setq subdivided-menus
1676 (cons (cons "Others" others-list)
1677 subdivided-menus)))))
3ca87c7b 1678 (setq menu (cons "Buffer Menu" (nreverse subdivided-menus))))
284a88a3
RS
1679 (progn
1680 (setq alist (mouse-buffer-menu-alist buffers))
1681 (setq menu (cons "Buffer Menu"
1682 (mouse-buffer-menu-split "Select Buffer" alist)))))
2d82f7b9
RS
1683 (let ((buf (x-popup-menu event menu))
1684 (window (posn-window (event-start event))))
3ca87c7b 1685 (when buf
f134ad18
RS
1686 (select-window
1687 (if (framep window) (frame-selected-window window)
1688 window))
3ca87c7b 1689 (switch-to-buffer buf)))))
284a88a3
RS
1690
1691(defun mouse-buffer-menu-alist (buffers)
1692 (let (tail
1693 (maxlen 0)
1694 head)
1695 (setq buffers
1696 (sort buffers
1697 (function (lambda (elt1 elt2)
1698 (string< (buffer-name elt1) (buffer-name elt2))))))
1699 (setq tail buffers)
1700 (while tail
fc2b429e 1701 (or (eq ?\s (aref (buffer-name (car tail)) 0))
284a88a3
RS
1702 (setq maxlen
1703 (max maxlen
1704 (length (buffer-name (car tail))))))
1705 (setq tail (cdr tail)))
1706 (setq tail buffers)
1707 (while tail
1708 (let ((elt (car tail)))
66564ab0 1709 (if (/= (aref (buffer-name elt) 0) ?\s)
284a88a3
RS
1710 (setq head
1711 (cons
1712 (cons
1713 (format
fc1f472b 1714 (format "%%-%ds %%s%%s %%s" maxlen)
284a88a3
RS
1715 (buffer-name elt)
1716 (if (buffer-modified-p elt) "*" " ")
7fdbcd83 1717 (with-current-buffer elt
284a88a3 1718 (if buffer-read-only "%" " "))
7b611de0 1719 (or (buffer-file-name elt)
7fdbcd83 1720 (with-current-buffer elt
284a88a3
RS
1721 (if list-buffers-directory
1722 (expand-file-name
1723 list-buffers-directory)))
1724 ""))
1725 elt)
1726 head))))
1727 (setq tail (cdr tail)))
1728 ;; Compensate for the reversal that the above loop does.
1729 (nreverse head)))
1730
1731(defun mouse-buffer-menu-split (title alist)
1732 ;; If we have lots of buffers, divide them into groups of 20
1733 ;; and make a pane (or submenu) for each one.
0d9be91c 1734 (if (> (length alist) (/ (* mouse-buffer-menu-maxlen 3) 2))
284a88a3
RS
1735 (let ((alist alist) sublists next
1736 (i 1))
1737 (while alist
0d9be91c 1738 ;; Pull off the next mouse-buffer-menu-maxlen buffers
284a88a3 1739 ;; and make them the next element of sublist.
0d9be91c 1740 (setq next (nthcdr mouse-buffer-menu-maxlen alist))
284a88a3 1741 (if next
0d9be91c 1742 (setcdr (nthcdr (1- mouse-buffer-menu-maxlen) alist)
284a88a3
RS
1743 nil))
1744 (setq sublists (cons (cons (format "Buffers %d" i) alist)
1745 sublists))
1746 (setq i (1+ i))
1747 (setq alist next))
1748 (nreverse sublists))
1749 ;; Few buffers--put them all in one pane.
1750 (list (cons title alist))))
72ea54a4 1751\f
d5e63715
SM
1752(define-obsolete-function-alias
1753 'mouse-choose-completion 'choose-completion "23.2")
f936ae06 1754
07a78410
RS
1755;; Font selection.
1756
0eb9fef3
RS
1757(defun font-menu-add-default ()
1758 (let* ((default (cdr (assq 'font (frame-parameters (selected-frame)))))
1759 (font-alist x-fixed-font-alist)
0d94f5ca 1760 (elt (or (assoc "Misc" font-alist) (nth 1 font-alist))))
0eb9fef3
RS
1761 (if (assoc "Default" elt)
1762 (delete (assoc "Default" elt) elt))
1763 (setcdr elt
6b8e486e 1764 (cons (list "Default" default)
0eb9fef3
RS
1765 (cdr elt)))))
1766
07a78410 1767(defvar x-fixed-font-alist
a7610c52
DN
1768 (list
1769 (purecopy "Font Menu")
1770 (cons
1771 (purecopy "Misc")
1772 (mapcar
1773 (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
19d973e8 1774 ;; For these, we specify the pixel height and width.
a7610c52 1775 '(("fixed" "fixed")
19d973e8
RS
1776 ("6x10" "-misc-fixed-medium-r-normal--10-*-*-*-c-60-iso8859-1" "6x10")
1777 ("6x12"
1778 "-misc-fixed-medium-r-semicondensed--12-*-*-*-c-60-iso8859-1" "6x12")
1779 ("6x13"
1780 "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" "6x13")
1781 ("7x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-70-iso8859-1" "7x13")
1782 ("7x14" "-misc-fixed-medium-r-normal--14-*-*-*-c-70-iso8859-1" "7x14")
1783 ("8x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-80-iso8859-1" "8x13")
1784 ("9x15" "-misc-fixed-medium-r-normal--15-*-*-*-c-90-iso8859-1" "9x15")
1785 ("10x20" "-misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1" "10x20")
1786 ("11x18" "-misc-fixed-medium-r-normal--18-*-*-*-c-110-iso8859-1" "11x18")
1787 ("12x24" "-misc-fixed-medium-r-normal--24-*-*-*-c-120-iso8859-1" "12x24")
fa21fdec 1788 ("")
f29c3695
RS
1789 ("clean 5x8"
1790 "-schumacher-clean-medium-r-normal--8-*-*-*-c-50-iso8859-1")
1791 ("clean 6x8"
1792 "-schumacher-clean-medium-r-normal--8-*-*-*-c-60-iso8859-1")
19d973e8
RS
1793 ("clean 8x8"
1794 "-schumacher-clean-medium-r-normal--8-*-*-*-c-80-iso8859-1")
1795 ("clean 8x10"
1796 "-schumacher-clean-medium-r-normal--10-*-*-*-c-80-iso8859-1")
1797 ("clean 8x14"
1798 "-schumacher-clean-medium-r-normal--14-*-*-*-c-80-iso8859-1")
1799 ("clean 8x16"
1800 "-schumacher-clean-medium-r-normal--16-*-*-*-c-80-iso8859-1")
fa21fdec 1801 ("")
29a3028d 1802 ("sony 8x16" "-sony-fixed-medium-r-normal--16-*-*-*-c-80-iso8859-1")
ad0d18af
SM
1803 ;; We don't seem to have these; who knows what they are.
1804 ;; ("fg-18" "fg-18")
1805 ;; ("fg-25" "fg-25")
29a3028d
DL
1806 ("lucidasanstypewriter-12" "-b&h-lucidatypewriter-medium-r-normal-sans-*-120-*-*-*-*-iso8859-1")
1807 ("lucidasanstypewriter-bold-14" "-b&h-lucidatypewriter-bold-r-normal-sans-*-140-*-*-*-*-iso8859-1")
1808 ("lucidasanstypewriter-bold-24"
1809 "-b&h-lucidatypewriter-bold-r-normal-sans-*-240-*-*-*-*-iso8859-1")
ad0d18af
SM
1810 ;; ("lucidatypewriter-bold-r-24" "-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1")
1811 ;; ("fixed-medium-20" "-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*")
a7610c52
DN
1812 )))
1813
1814 (cons
1815 (purecopy "Courier")
1816 (mapcar
1817 (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
19d973e8 1818 ;; For these, we specify the point height.
a7610c52 1819 '(("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1")
82c048a9
RS
1820 ("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1")
1821 ("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1")
1822 ("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1")
1823 ("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1")
1824 ("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1")
1825 ("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1")
1826 ("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1")
1827 ("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1")
1828 ("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1")
1829 ("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1")
1830 ("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1")
1831 ("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1")
1832 ("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1")
1833 ("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1")
1834 ("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1")
1835 ("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1")
1836 ("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1")
1837 ("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1")
1838 ("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1")
1839 ("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1")
1840 ("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1")
1841 ("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1")
a7610c52
DN
1842 ("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1")
1843 ))))
07a78410
RS
1844 "X fonts suitable for use in Emacs.")
1845
aa360da1
GM
1846(declare-function generate-fontset-menu "fontset" ())
1847
ecb044e1
CY
1848(defun mouse-select-font ()
1849 "Prompt for a font name, using `x-popup-menu', and return it."
1850 (interactive)
1851 (unless (display-multi-font-p)
1852 (error "Cannot change fonts on this display"))
c1202d4b
CY
1853 (car
1854 (x-popup-menu
1855 (if (listp last-nonmenu-event)
1856 last-nonmenu-event
1857 (list '(0 0) (selected-window)))
1858 (append x-fixed-font-alist
1859 (list (generate-fontset-menu))))))
ecb044e1 1860
3db09e26
CY
1861(declare-function text-scale-mode "face-remap")
1862
1900a92b 1863(defun mouse-set-font (&rest fonts)
ecb044e1
CY
1864 "Set the default font for the selected frame.
1865The argument FONTS is a list of font names; the first valid font
1866in this list is used.
1867
1868When called interactively, pop up a menu and allow the user to
1869choose a font."
07a78410 1870 (interactive
8eb1dc02
RS
1871 (progn (unless (display-multi-font-p)
1872 (error "Cannot change fonts on this display"))
1873 (x-popup-menu
91c51412
LT
1874 (if (listp last-nonmenu-event)
1875 last-nonmenu-event
1876 (list '(0 0) (selected-window)))
8eb1dc02
RS
1877 ;; Append list of fontsets currently defined.
1878 (append x-fixed-font-alist (list (generate-fontset-menu))))))
df4de8c6
KH
1879 (if fonts
1880 (let (font)
1881 (while fonts
1882 (condition-case nil
1883 (progn
b7d1d101 1884 (set-frame-font (car fonts))
df4de8c6
KH
1885 (setq font (car fonts))
1886 (setq fonts nil))
3fadec1a
RS
1887 (error
1888 (setq fonts (cdr fonts)))))
df4de8c6 1889 (if (null font)
8eb1dc02 1890 (error "Font not found")))))
3db09e26
CY
1891
1892(defvar mouse-appearance-menu-map nil)
9c257005 1893(declare-function x-select-font "xfns.c" (&optional frame ignored)) ; USE_GTK
b816c5e3
GM
1894(declare-function buffer-face-mode-invoke "face-remap"
1895 (face arg &optional interactive))
f2d9c15f 1896(declare-function font-face-attributes "font.c" (font &optional frame))
3db09e26
CY
1897
1898(defun mouse-appearance-menu (event)
e8579ebc 1899 "Show a menu for changing the default face in the current buffer."
3db09e26
CY
1900 (interactive "@e")
1901 (require 'face-remap)
1902 (when (display-multi-font-p)
1903 (with-selected-window (car (event-start event))
1904 (if mouse-appearance-menu-map
1905 nil ; regenerate new fonts
1906 ;; Initialize mouse-appearance-menu-map
1907 (setq mouse-appearance-menu-map
1908 (make-sparse-keymap "Change Default Buffer Face"))
1909 (define-key mouse-appearance-menu-map [face-remap-reset-base]
1910 '(menu-item "Reset to Default" face-remap-reset-base))
1911 (define-key mouse-appearance-menu-map [text-scale-decrease]
1912 '(menu-item "Decrease Buffer Text Size" text-scale-decrease))
1913 (define-key mouse-appearance-menu-map [text-scale-increase]
1914 '(menu-item "Increase Buffer Text Size" text-scale-increase))
1915 ;; Font selector
1916 (if (functionp 'x-select-font)
1917 (define-key mouse-appearance-menu-map [x-select-font]
1918 '(menu-item "Change Buffer Font..." x-select-font))
1919 ;; If the select-font is unavailable, construct a menu.
1920 (let ((font-submenu (make-sparse-keymap "Change Text Font"))
1921 (font-alist (cdr (append x-fixed-font-alist
1922 (list (generate-fontset-menu))))))
1923 (dolist (family font-alist)
1924 (let* ((submenu-name (car family))
1925 (submenu-map (make-sparse-keymap submenu-name)))
1926 (dolist (font (cdr family))
1927 (let ((font-name (car font))
1928 font-symbol)
1929 (if (string= font-name "")
1930 (define-key submenu-map [space]
1931 '("--"))
1932 (setq font-symbol (intern (cadr font)))
1933 (define-key submenu-map (vector font-symbol)
1934 (list 'menu-item (car font) font-symbol)))))
1935 (define-key font-submenu (vector (intern submenu-name))
1936 (list 'menu-item submenu-name submenu-map))))
1937 (define-key mouse-appearance-menu-map [font-submenu]
1938 (list 'menu-item "Change Text Font" font-submenu)))))
1939 (let ((choice (x-popup-menu event mouse-appearance-menu-map)))
1940 (setq choice (nth (1- (length choice)) choice))
1941 (cond ((eq choice 'text-scale-increase)
1942 (text-scale-increase 1))
1943 ((eq choice 'text-scale-decrease)
1944 (text-scale-increase -1))
1945 ((eq choice 'face-remap-reset-base)
1946 (text-scale-mode 0)
4271b424 1947 (buffer-face-mode 0))
520713e7 1948 (choice
3db09e26
CY
1949 ;; Either choice == 'x-select-font, or choice is a
1950 ;; symbol whose name is a font.
383dcbf9
CY
1951 (let ((font (if (eq choice 'x-select-font)
1952 (x-select-font)
1953 (symbol-name choice))))
1954 (buffer-face-mode-invoke
1955 (if (fontp font 'font-spec)
1956 (list :font font)
1957 (font-face-attributes font))
1958 t (called-interactively-p 'interactive)))))))))
3db09e26 1959
cc0a8174
JB
1960\f
1961;;; Bindings for mouse commands.
1962
fcfc3c63 1963(define-key global-map [down-mouse-1] 'mouse-drag-region)
dbc4e1c1 1964(global-set-key [mouse-1] 'mouse-set-point)
dbc4e1c1 1965(global-set-key [drag-mouse-1] 'mouse-set-region)
fcfc3c63 1966
e37de120
RS
1967;; These are tested for in mouse-drag-region.
1968(global-set-key [double-mouse-1] 'mouse-set-point)
1969(global-set-key [triple-mouse-1] 'mouse-set-point)
1970
fe3f64d5
SM
1971(defun mouse--strip-first-event (_prompt)
1972 (substring (this-single-command-raw-keys) 1))
1973
1974(define-key function-key-map [left-fringe mouse-1] 'mouse--strip-first-event)
1975(define-key function-key-map [right-fringe mouse-1] 'mouse--strip-first-event)
76693d12 1976
f9d71b42 1977(global-set-key [mouse-2] 'mouse-yank-primary)
3e9323d6 1978;; Allow yanking also when the corresponding cursor is "in the fringe".
fe3f64d5
SM
1979(define-key function-key-map [right-fringe mouse-2] 'mouse--strip-first-event)
1980(define-key function-key-map [left-fringe mouse-2] 'mouse--strip-first-event)
dbc4e1c1 1981(global-set-key [mouse-3] 'mouse-save-then-kill)
fe3f64d5
SM
1982(define-key function-key-map [right-fringe mouse-3] 'mouse--strip-first-event)
1983(define-key function-key-map [left-fringe mouse-3] 'mouse--strip-first-event)
8b34e79d 1984
dbc4e1c1
JB
1985;; By binding these to down-going events, we let the user use the up-going
1986;; event to make the selection, saving a click.
08a1c178
RS
1987(global-set-key [C-down-mouse-1] 'mouse-buffer-menu)
1988(if (not (eq system-type 'ms-dos))
3db09e26 1989 (global-set-key [S-down-mouse-1] 'mouse-appearance-menu))
eef805d7 1990;; C-down-mouse-2 is bound in facemenu.el.
0b2b62ff 1991(global-set-key [C-down-mouse-3]
1e8780b1 1992 `(menu-item ,(purecopy "Menu Bar") ignore
0b2b62ff
SM
1993 :filter (lambda (_)
1994 (if (zerop (or (frame-parameter nil 'menu-bar-lines) 0))
1995 (mouse-menu-bar-map)
1996 (mouse-menu-major-mode-map)))))
95132d1c 1997
06a8c9f8
EZ
1998;; Binding mouse-1 to mouse-select-window when on mode-, header-, or
1999;; vertical-line prevents Emacs from signaling an error when the mouse
2000;; button is released after dragging these lines, on non-toolkit
2001;; versions.
3c2dd2c0 2002(global-set-key [mode-line mouse-1] 'mouse-select-window)
544e7e73
RS
2003(global-set-key [mode-line drag-mouse-1] 'mouse-select-window)
2004(global-set-key [mode-line down-mouse-1] 'mouse-drag-mode-line)
b0d22e20 2005(global-set-key [header-line down-mouse-1] 'mouse-drag-header-line)
06a8c9f8 2006(global-set-key [header-line mouse-1] 'mouse-select-window)
3c2dd2c0 2007(global-set-key [mode-line mouse-2] 'mouse-delete-other-windows)
dbc4e1c1 2008(global-set-key [mode-line mouse-3] 'mouse-delete-window)
3c2dd2c0 2009(global-set-key [mode-line C-mouse-2] 'mouse-split-window-horizontally)
9926ab64 2010(global-set-key [vertical-scroll-bar C-mouse-2] 'mouse-split-window-vertically)
b6522df6 2011(global-set-key [vertical-line C-mouse-2] 'mouse-split-window-vertically)
08a1c178
RS
2012(global-set-key [vertical-line down-mouse-1] 'mouse-drag-vertical-line)
2013(global-set-key [vertical-line mouse-1] 'mouse-select-window)
49116ac0
JB
2014
2015(provide 'mouse)
2016
6594deb0 2017;;; mouse.el ends here