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