* lisp/emacs-lisp/package.el (package--with-work-buffer-async):
[emacs.git] / lisp / mouse.el
blob221d30bc3d87d4ec700a33ef05c0e25e40b07850
1 ;;; mouse.el --- window system-independent mouse support -*- lexical-binding: t -*-
3 ;; Copyright (C) 1993-1995, 1999-2015 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Keywords: hardware, mouse
7 ;; Package: emacs
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
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.
30 ;;; Code:
32 ;;; Utility functions.
34 ;; Indent track-mouse like progn.
35 (put 'track-mouse 'lisp-indent-function 0)
37 (defcustom mouse-yank-at-point nil
38 "If non-nil, mouse yank commands yank at point instead of at click."
39 :type 'boolean
40 :group 'mouse)
42 (defcustom mouse-drag-copy-region nil
43 "If non-nil, copy to kill-ring upon mouse adjustments of the region.
45 This affects `mouse-save-then-kill' (\\[mouse-save-then-kill]) in
46 addition to mouse drags."
47 :type 'boolean
48 :version "24.1"
49 :group 'mouse)
51 (defcustom mouse-1-click-follows-link 450
52 "Non-nil means that clicking Mouse-1 on a link follows the link.
54 With the default setting, an ordinary Mouse-1 click on a link
55 performs the same action as Mouse-2 on that link, while a longer
56 Mouse-1 click \(hold down the Mouse-1 button for more than 450
57 milliseconds) performs the original Mouse-1 binding \(which
58 typically sets point where you click the mouse).
60 If value is an integer, the time elapsed between pressing and
61 releasing the mouse button determines whether to follow the link
62 or perform the normal Mouse-1 action (typically set point).
63 The absolute numeric value specifies the maximum duration of a
64 \"short click\" in milliseconds. A positive value means that a
65 short click follows the link, and a longer click performs the
66 normal action. A negative value gives the opposite behavior.
68 If value is `double', a double click follows the link.
70 Otherwise, a single Mouse-1 click unconditionally follows the link.
72 Note that dragging the mouse never follows the link.
74 This feature only works in modes that specifically identify
75 clickable text as links, so it may not work with some external
76 packages. See `mouse-on-link-p' for details."
77 :version "22.1"
78 :type '(choice (const :tag "Disabled" nil)
79 (const :tag "Double click" double)
80 (number :tag "Single click time limit" :value 450)
81 (other :tag "Single click" t))
82 :group 'mouse)
84 (defcustom mouse-1-click-in-non-selected-windows t
85 "If non-nil, a Mouse-1 click also follows links in non-selected windows.
87 If nil, a Mouse-1 click on a link in a non-selected window performs
88 the normal mouse-1 binding, typically selects the window and sets
89 point at the click position."
90 :type 'boolean
91 :version "22.1"
92 :group 'mouse)
94 (defun mouse--down-1-maybe-follows-link (&optional _prompt)
95 "Turn `mouse-1' events into `mouse-2' events if follows-link.
96 Expects to be bound to `down-mouse-1' in `key-translation-map'."
97 (when (and mouse-1-click-follows-link
98 (eq (if (eq mouse-1-click-follows-link 'double)
99 'double-down-mouse-1 'down-mouse-1)
100 (car-safe last-input-event))
101 (mouse-on-link-p (event-start last-input-event))
102 (or mouse-1-click-in-non-selected-windows
103 (eq (selected-window)
104 (posn-window (event-start last-input-event)))))
105 (let ((timedout
106 (sit-for (if (numberp mouse-1-click-follows-link)
107 (/ (abs mouse-1-click-follows-link) 1000.0)
108 0))))
109 (if (if (and (numberp mouse-1-click-follows-link)
110 (>= mouse-1-click-follows-link 0))
111 timedout (not timedout))
114 (let ((event (read-key))) ;Use read-key so it works for xterm-mouse-mode!
115 (if (eq (car-safe event) (if (eq mouse-1-click-follows-link 'double)
116 'double-mouse-1 'mouse-1))
117 ;; Turn the mouse-1 into a mouse-2 to follow links.
118 (let ((newup (if (eq mouse-1-click-follows-link 'double)
119 'double-mouse-2 'mouse-2)))
120 ;; If mouse-2 has never been done by the user, it doesn't have
121 ;; the necessary property to be interpreted correctly.
122 (unless (get newup 'event-kind)
123 (put newup 'event-kind (get (car event) 'event-kind)))
124 (push (cons newup (cdr event)) unread-command-events)
125 ;; Don't change the down event, only the up-event (bug#18212).
126 nil)
127 (push event unread-command-events)
128 nil))))))
130 (define-key key-translation-map [down-mouse-1]
131 #'mouse--down-1-maybe-follows-link)
132 (define-key key-translation-map [double-down-mouse-1]
133 #'mouse--down-1-maybe-follows-link)
136 ;; Provide a mode-specific menu on a mouse button.
138 (defun minor-mode-menu-from-indicator (indicator)
139 "Show menu for minor mode specified by INDICATOR.
140 Interactively, INDICATOR is read using completion.
141 If there is no menu defined for the minor mode, then create one with
142 items `Turn Off' and `Help'."
143 (interactive
144 (list (completing-read
145 "Minor mode indicator: "
146 (describe-minor-mode-completion-table-for-indicator))))
147 (let* ((minor-mode (lookup-minor-mode-from-indicator indicator))
148 (mm-fun (or (get minor-mode :minor-mode-function) minor-mode)))
149 (unless minor-mode (error "Cannot find minor mode for `%s'" indicator))
150 (let* ((map (cdr-safe (assq minor-mode minor-mode-map-alist)))
151 (menu (and (keymapp map) (lookup-key map [menu-bar]))))
152 (setq menu
153 (if menu
154 (mouse-menu-non-singleton menu)
155 (if (fboundp mm-fun) ; bug#20201
156 `(keymap
157 ,indicator
158 (turn-off menu-item "Turn Off minor mode" ,mm-fun)
159 (help menu-item "Help for minor mode"
160 (lambda () (interactive)
161 (describe-function ',mm-fun)))))))
162 (if menu
163 (popup-menu menu)
164 (message "No menu available")))))
166 (defun mouse-minor-mode-menu (event)
167 "Show minor-mode menu for EVENT on minor modes area of the mode line."
168 (interactive "@e")
169 (let ((indicator (car (nth 4 (car (cdr event))))))
170 (minor-mode-menu-from-indicator indicator)))
172 (defun mouse-menu-major-mode-map ()
173 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
174 (let* (;; Keymap from which to inherit; may be null.
175 (ancestor (mouse-menu-non-singleton
176 (and (current-local-map)
177 (local-key-binding [menu-bar]))))
178 ;; Make a keymap in which our last command leads to a menu or
179 ;; default to the edit menu.
180 (newmap (if ancestor
181 (make-sparse-keymap (concat (format-mode-line mode-name)
182 " Mode"))
183 menu-bar-edit-menu)))
184 (if ancestor
185 (set-keymap-parent newmap ancestor))
186 newmap))
188 (defun mouse-menu-non-singleton (menubar)
189 "Return menu keybar MENUBAR, or a lone submenu inside it.
190 If MENUBAR defines exactly one submenu, return just that submenu.
191 Otherwise, return MENUBAR."
192 (if menubar
193 (let (submap)
194 (map-keymap
195 (lambda (k v) (setq submap (if submap t (cons k v))))
196 (keymap-canonicalize menubar))
197 (if (eq submap t)
198 menubar
199 (lookup-key menubar (vector (car submap)))))))
201 (defun mouse-menu-bar-map ()
202 "Return a keymap equivalent to the menu bar.
203 The contents are the items that would be in the menu bar whether or
204 not it is actually displayed."
205 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
206 (let* ((local-menu (and (current-local-map)
207 (lookup-key (current-local-map) [menu-bar])))
208 (global-menu (lookup-key global-map [menu-bar]))
209 ;; If a keymap doesn't have a prompt string (a lazy
210 ;; programmer didn't bother to provide one), create it and
211 ;; insert it into the keymap; each keymap gets its own
212 ;; prompt. This is required for non-toolkit versions to
213 ;; display non-empty menu pane names.
214 (minor-mode-menus
215 (mapcar
216 (lambda (menu)
217 (let* ((minor-mode (car menu))
218 (menu (cdr menu))
219 (title-or-map (cadr menu)))
220 (or (stringp title-or-map)
221 (setq menu
222 (cons 'keymap
223 (cons (concat
224 (capitalize (subst-char-in-string
225 ?- ?\s (symbol-name
226 minor-mode)))
227 " Menu")
228 (cdr menu)))))
229 menu))
230 (minor-mode-key-binding [menu-bar])))
231 (local-title-or-map (and local-menu (cadr local-menu)))
232 (global-title-or-map (cadr global-menu)))
233 (or (null local-menu)
234 (stringp local-title-or-map)
235 (setq local-menu (cons 'keymap
236 (cons (concat (format-mode-line mode-name)
237 " Mode Menu")
238 (cdr local-menu)))))
239 (or (stringp global-title-or-map)
240 (setq global-menu (cons 'keymap
241 (cons "Global Menu"
242 (cdr global-menu)))))
243 ;; Supplying the list is faster than making a new map.
244 ;; FIXME: We have a problem here: we have to use the global/local/minor
245 ;; so they're displayed in the expected order, but later on in the command
246 ;; loop, they're actually looked up in the opposite order.
247 (apply 'append
248 global-menu
249 local-menu
250 minor-mode-menus)))
252 (defun mouse-major-mode-menu (event &optional prefix)
253 "Pop up a mode-specific menu of mouse commands.
254 Default to the Edit menu if the major mode doesn't define a menu."
255 (declare (obsolete mouse-menu-major-mode-map "23.1"))
256 (interactive "@e\nP")
257 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
258 (popup-menu (mouse-menu-major-mode-map) event prefix))
260 (defun mouse-popup-menubar (event prefix)
261 "Pop up a menu equivalent to the menu bar for keyboard EVENT with PREFIX.
262 The contents are the items that would be in the menu bar whether or
263 not it is actually displayed."
264 (declare (obsolete mouse-menu-bar-map "23.1"))
265 (interactive "@e \nP")
266 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
267 (popup-menu (mouse-menu-bar-map) (unless (integerp event) event) prefix))
269 (defun mouse-popup-menubar-stuff (event prefix)
270 "Popup a menu like either `mouse-major-mode-menu' or `mouse-popup-menubar'.
271 Use the former if the menu bar is showing, otherwise the latter."
272 (declare (obsolete nil "23.1"))
273 (interactive "@e\nP")
274 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
275 (popup-menu
276 (if (zerop (or (frame-parameter nil 'menu-bar-lines) 0))
277 (mouse-menu-bar-map)
278 (mouse-menu-major-mode-map))
279 event prefix))
281 ;; Commands that operate on windows.
283 (defun mouse-minibuffer-check (event)
284 (let ((w (posn-window (event-start event))))
285 (and (window-minibuffer-p w)
286 (not (minibuffer-window-active-p w))
287 (user-error "Minibuffer window is not active")))
288 ;; Give temporary modes such as isearch a chance to turn off.
289 (run-hooks 'mouse-leave-buffer-hook))
291 (defun mouse-delete-window (click)
292 "Delete the window you click on.
293 Do nothing if the frame has just one window.
294 This command must be bound to a mouse click."
295 (interactive "e")
296 (unless (one-window-p t)
297 (mouse-minibuffer-check click)
298 (delete-window (posn-window (event-start click)))))
300 (defun mouse-select-window (click)
301 "Select the window clicked on; don't move point."
302 (interactive "e")
303 (mouse-minibuffer-check click)
304 (let ((oframe (selected-frame))
305 (frame (window-frame (posn-window (event-start click)))))
306 (select-window (posn-window (event-start click)))
307 (raise-frame frame)
308 (select-frame frame)
309 (or (eq frame oframe)
310 (set-mouse-position (selected-frame) (1- (frame-width)) 0))))
312 (define-obsolete-function-alias 'mouse-tear-off-window 'tear-off-window "24.4")
313 (defun tear-off-window (click)
314 "Delete the selected window, and create a new frame displaying its buffer."
315 (interactive "e")
316 (mouse-minibuffer-check click)
317 (let* ((window (posn-window (event-start click)))
318 (buf (window-buffer window))
319 (frame (make-frame))) ;FIXME: Use pop-to-buffer.
320 (select-frame frame)
321 (switch-to-buffer buf)
322 (delete-window window)))
324 (defun mouse-delete-other-windows ()
325 "Delete all windows except the one you click on."
326 (interactive "@")
327 (delete-other-windows))
329 (defun mouse-split-window-vertically (click)
330 "Select Emacs window mouse is on, then split it vertically in half.
331 The window is split at the line clicked on.
332 This command must be bound to a mouse click."
333 (interactive "@e")
334 (mouse-minibuffer-check click)
335 (let ((start (event-start click)))
336 (select-window (posn-window start))
337 (let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
338 (first-line window-min-height)
339 (last-line (- (window-height) window-min-height)))
340 (if (< last-line first-line)
341 (user-error "Window too short to split")
342 ;; Bind `window-combination-resize' to nil so we are sure to get
343 ;; the split right at the line clicked on.
344 (let (window-combination-resize)
345 (split-window-vertically
346 (min (max new-height first-line) last-line)))))))
348 (defun mouse-split-window-horizontally (click)
349 "Select Emacs window mouse is on, then split it horizontally in half.
350 The window is split at the column clicked on.
351 This command must be bound to a mouse click."
352 (interactive "@e")
353 (mouse-minibuffer-check click)
354 (let ((start (event-start click)))
355 (select-window (posn-window start))
356 (let ((new-width (1+ (car (posn-col-row (event-end click)))))
357 (first-col window-min-width)
358 (last-col (- (window-width) window-min-width)))
359 (if (< last-col first-col)
360 (user-error "Window too narrow to split")
361 ;; Bind `window-combination-resize' to nil so we are sure to get
362 ;; the split right at the column clicked on.
363 (let (window-combination-resize)
364 (split-window-horizontally
365 (min (max new-width first-col) last-col)))))))
367 (defun mouse-drag-line (start-event line)
368 "Drag a mode line, header line, or vertical line with the mouse.
369 START-EVENT is the starting mouse-event of the drag action. LINE
370 must be one of the symbols `header', `mode', or `vertical'."
371 ;; Give temporary modes such as isearch a chance to turn off.
372 (run-hooks 'mouse-leave-buffer-hook)
373 (let* ((echo-keystrokes 0)
374 (start (event-start start-event))
375 (window (posn-window start))
376 (frame (window-frame window))
377 ;; `position' records the x- or y-coordinate of the last
378 ;; sampled position.
379 (position (if (eq line 'vertical)
380 (+ (window-pixel-left window)
381 (car (posn-x-y start)))
382 (+ (window-pixel-top window)
383 (cdr (posn-x-y start)))))
384 ;; `last-position' records the x- or y-coordinate of the
385 ;; previously sampled position. The difference of `position'
386 ;; and `last-position' determines the size change of WINDOW.
387 (last-position position)
388 (draggable t)
389 posn-window growth dragged)
390 ;; Decide on whether we are allowed to track at all and whose
391 ;; window's edge we drag.
392 (cond
393 ((eq line 'header)
394 (if (window-at-side-p window 'top)
395 ;; We can't drag the header line of a topmost window.
396 (setq draggable nil)
397 ;; Drag bottom edge of window above the header line.
398 (setq window (window-in-direction 'above window t))))
399 ((eq line 'mode)
400 (if (and (window-at-side-p window 'bottom)
401 ;; Allow resizing the minibuffer window if it's on the
402 ;; same frame as and immediately below `window', and it's
403 ;; either active or `resize-mini-windows' is nil.
404 (let ((minibuffer-window (minibuffer-window frame)))
405 (not (and (eq (window-frame minibuffer-window) frame)
406 (or (not resize-mini-windows)
407 (eq minibuffer-window
408 (active-minibuffer-window)))))))
409 (setq draggable nil))))
411 (let* ((exitfun nil)
412 (move
413 (lambda (event) (interactive "e")
414 (cond
415 ((not (consp event))
416 nil)
417 ((eq line 'vertical)
418 ;; Drag right edge of `window'.
419 (setq start (event-start event))
420 (setq position (car (posn-x-y start)))
421 ;; Set `posn-window' to the window where `event' was recorded.
422 ;; This can be `window' or the window on the left or right of
423 ;; `window'.
424 (when (window-live-p (setq posn-window (posn-window start)))
425 ;; Add left edge of `posn-window' to `position'.
426 (setq position (+ (window-pixel-left posn-window) position))
427 (unless (nth 1 start)
428 ;; Add width of objects on the left of the text area to
429 ;; `position'.
430 (when (eq (window-current-scroll-bars posn-window) 'left)
431 (setq position (+ (window-scroll-bar-width posn-window)
432 position)))
433 (setq position (+ (car (window-fringes posn-window))
434 (or (car (window-margins posn-window)) 0)
435 position))))
436 ;; When the cursor overshoots after shrinking a window to its
437 ;; minimum size and the dragging direction changes, have the
438 ;; cursor first catch up with the window edge.
439 (unless (or (zerop (setq growth (- position last-position)))
440 (and (> growth 0)
441 (< position (+ (window-pixel-left window)
442 (window-pixel-width window))))
443 (and (< growth 0)
444 (> position (+ (window-pixel-left window)
445 (window-pixel-width window)))))
446 (setq dragged t)
447 (adjust-window-trailing-edge window growth t t))
448 (setq last-position position))
449 (draggable
450 ;; Drag bottom edge of `window'.
451 (setq start (event-start event))
452 ;; Set `posn-window' to the window where `event' was recorded.
453 ;; This can be either `window' or the window above or below of
454 ;; `window'.
455 (setq posn-window (posn-window start))
456 (setq position (cdr (posn-x-y start)))
457 (when (window-live-p posn-window)
458 ;; Add top edge of `posn-window' to `position'.
459 (setq position (+ (window-pixel-top posn-window) position))
460 ;; If necessary, add height of header line to `position'
461 (when (memq (posn-area start)
462 '(nil left-fringe right-fringe left-margin right-margin))
463 (setq position (+ (window-header-line-height posn-window) position))))
464 ;; When the cursor overshoots after shrinking a window to its
465 ;; minimum size and the dragging direction changes, have the
466 ;; cursor first catch up with the window edge.
467 (unless (or (zerop (setq growth (- position last-position)))
468 (and (> growth 0)
469 (< position (+ (window-pixel-top window)
470 (window-pixel-height window))))
471 (and (< growth 0)
472 (> position (+ (window-pixel-top window)
473 (window-pixel-height window)))))
474 (setq dragged t)
475 (adjust-window-trailing-edge window growth nil t))
476 (setq last-position position))))))
477 ;; Start tracking. The special value 'dragging' signals the
478 ;; display engine to freeze the mouse pointer shape for as long
479 ;; as we drag.
480 (setq track-mouse 'dragging)
481 ;; Loop reading events and sampling the position of the mouse.
482 (setq exitfun
483 (set-transient-map
484 (let ((map (make-sparse-keymap)))
485 (define-key map [switch-frame] #'ignore)
486 (define-key map [select-window] #'ignore)
487 (define-key map [scroll-bar-movement] #'ignore)
488 (define-key map [mouse-movement] move)
489 ;; Swallow drag-mouse-1 events to avoid selecting some other window.
490 (define-key map [drag-mouse-1]
491 (lambda () (interactive) (funcall exitfun)))
492 ;; For vertical line dragging swallow also a mouse-1
493 ;; event (but only if we dragged at least once to allow mouse-1
494 ;; clicks to get through).
495 (when (eq line 'vertical)
496 (define-key map [mouse-1]
497 `(menu-item "" ,(lambda () (interactive) (funcall exitfun))
498 :filter ,(lambda (cmd) (if dragged cmd)))))
499 ;; Some of the events will of course end up looked up
500 ;; with a mode-line, header-line or vertical-line prefix ...
501 (define-key map [mode-line] map)
502 (define-key map [header-line] map)
503 (define-key map [vertical-line] map)
504 ;; ... and some maybe even with a right- or bottom-divider
505 ;; prefix.
506 (define-key map [right-divider] map)
507 (define-key map [bottom-divider] map)
508 map)
509 t (lambda () (setq track-mouse nil)))))))
511 (defun mouse-drag-mode-line (start-event)
512 "Change the height of a window by dragging on the mode line."
513 (interactive "e")
514 (mouse-drag-line start-event 'mode))
516 (defun mouse-drag-header-line (start-event)
517 "Change the height of a window by dragging on the header line."
518 (interactive "e")
519 (mouse-drag-line start-event 'header))
521 (defun mouse-drag-vertical-line (start-event)
522 "Change the width of a window by dragging on the vertical line."
523 (interactive "e")
524 (mouse-drag-line start-event 'vertical))
526 (defun mouse-set-point (event &optional promote-to-region)
527 "Move point to the position clicked on with the mouse.
528 This should be bound to a mouse click event type.
529 If PROMOTE-TO-REGION is non-nil and event is a multiple-click,
530 select the corresponding element around point."
531 (interactive "e\np")
532 (mouse-minibuffer-check event)
533 (if (and promote-to-region (> (event-click-count event) 1))
534 (mouse-set-region event)
535 ;; Use event-end in case called from mouse-drag-region.
536 ;; If EVENT is a click, event-end and event-start give same value.
537 (posn-set-point (event-end event))))
539 (defvar mouse-last-region-beg nil)
540 (defvar mouse-last-region-end nil)
541 (defvar mouse-last-region-tick nil)
543 (defun mouse-region-match ()
544 "Return non-nil if there's an active region that was set with the mouse."
545 (and (mark t) mark-active
546 (eq mouse-last-region-beg (region-beginning))
547 (eq mouse-last-region-end (region-end))
548 (eq mouse-last-region-tick (buffer-modified-tick))))
550 (defvar mouse--drag-start-event nil)
552 (defun mouse-set-region (click)
553 "Set the region to the text dragged over, and copy to kill ring.
554 This should be bound to a mouse drag event.
555 See the `mouse-drag-copy-region' variable to control whether this
556 command alters the kill ring or not."
557 (interactive "e")
558 (mouse-minibuffer-check click)
559 (select-window (posn-window (event-start click)))
560 (let ((beg (posn-point (event-start click)))
561 (end (posn-point (event-end click)))
562 (click-count (event-click-count click)))
563 (let ((drag-start (terminal-parameter nil 'mouse-drag-start)))
564 (when drag-start
565 ;; Drag events don't come with a click count, sadly, so we hack
566 ;; our way around this problem by remembering the start-event in
567 ;; `mouse-drag-start' and fetching the click-count from there.
568 (when (and (<= click-count 1)
569 (equal beg (posn-point (event-start drag-start))))
570 (setq click-count (event-click-count drag-start)))
571 ;; Occasionally we get spurious drag events where the user hasn't
572 ;; dragged his mouse, but instead Emacs has dragged the text under the
573 ;; user's mouse. Try to recover those cases (bug#17562).
574 (when (and (equal (posn-x-y (event-start click))
575 (posn-x-y (event-end click)))
576 (not (eq (car drag-start) 'mouse-movement)))
577 (setq end beg))
578 (setf (terminal-parameter nil 'mouse-drag-start) nil)))
579 (when (and (integerp beg) (integerp end))
580 (let ((range (mouse-start-end beg end (1- click-count))))
581 (if (< end beg)
582 (setq end (nth 0 range) beg (nth 1 range))
583 (setq beg (nth 0 range) end (nth 1 range)))))
584 (and mouse-drag-copy-region (integerp beg) (integerp end)
585 ;; Don't set this-command to `kill-region', so a following
586 ;; C-w won't double the text in the kill ring. Ignore
587 ;; `last-command' so we don't append to a preceding kill.
588 (let (this-command last-command deactivate-mark)
589 (copy-region-as-kill beg end)))
590 (if (numberp beg) (goto-char beg))
591 ;; On a text terminal, bounce the cursor.
592 (or transient-mark-mode
593 (window-system)
594 (sit-for 1))
595 (push-mark)
596 (set-mark (point))
597 (if (numberp end) (goto-char end))
598 (mouse-set-region-1)))
600 (defun mouse-set-region-1 ()
601 ;; Set transient-mark-mode for a little while.
602 (unless (eq (car-safe transient-mark-mode) 'only)
603 (setq-local transient-mark-mode
604 (cons 'only
605 (unless (eq transient-mark-mode 'lambda)
606 transient-mark-mode))))
607 (setq mouse-last-region-beg (region-beginning))
608 (setq mouse-last-region-end (region-end))
609 (setq mouse-last-region-tick (buffer-modified-tick)))
611 (defcustom mouse-scroll-delay 0.25
612 "The pause between scroll steps caused by mouse drags, in seconds.
613 If you drag the mouse beyond the edge of a window, Emacs scrolls the
614 window to bring the text beyond that edge into view, with a delay of
615 this many seconds between scroll steps. Scrolling stops when you move
616 the mouse back into the window, or release the button.
617 This variable's value may be non-integral.
618 Setting this to zero causes Emacs to scroll as fast as it can."
619 :type 'number
620 :group 'mouse)
622 (defcustom mouse-scroll-min-lines 1
623 "The minimum number of lines scrolled by dragging mouse out of window.
624 Moving the mouse out the top or bottom edge of the window begins
625 scrolling repeatedly. The number of lines scrolled per repetition
626 is normally equal to the number of lines beyond the window edge that
627 the mouse has moved. However, it always scrolls at least the number
628 of lines specified by this variable."
629 :type 'integer
630 :group 'mouse)
632 (defun mouse-scroll-subr (window jump &optional overlay start)
633 "Scroll the window WINDOW, JUMP lines at a time, until new input arrives.
634 If OVERLAY is an overlay, let it stretch from START to the far edge of
635 the newly visible text.
636 Upon exit, point is at the far edge of the newly visible text."
637 (cond
638 ((and (> jump 0) (< jump mouse-scroll-min-lines))
639 (setq jump mouse-scroll-min-lines))
640 ((and (< jump 0) (< (- jump) mouse-scroll-min-lines))
641 (setq jump (- mouse-scroll-min-lines))))
642 (let ((opoint (point)))
643 (while (progn
644 (goto-char (window-start window))
645 (if (not (zerop (vertical-motion jump window)))
646 (progn
647 (set-window-start window (point))
648 (if (natnump jump)
649 (if (window-end window)
650 (progn
651 (goto-char (window-end window))
652 ;; window-end doesn't reflect the window's new
653 ;; start position until the next redisplay.
654 (vertical-motion (1- jump) window))
655 (vertical-motion (- (window-height window) 2)))
656 (goto-char (window-start window)))
657 (if overlay
658 (move-overlay overlay start (point)))
659 ;; Now that we have scrolled WINDOW properly,
660 ;; put point back where it was for the redisplay
661 ;; so that we don't mess up the selected window.
662 (or (eq window (selected-window))
663 (goto-char opoint))
664 (sit-for mouse-scroll-delay)))))
665 (or (eq window (selected-window))
666 (goto-char opoint))))
668 (defvar mouse-selection-click-count 0)
670 (defvar mouse-selection-click-count-buffer nil)
672 (defun mouse-drag-region (start-event)
673 "Set the region to the text that the mouse is dragged over.
674 Highlight the drag area as you move the mouse.
675 This must be bound to a button-down mouse event.
676 In Transient Mark mode, the highlighting remains as long as the mark
677 remains active. Otherwise, it remains until the next input event."
678 (interactive "e")
679 ;; Give temporary modes such as isearch a chance to turn off.
680 (run-hooks 'mouse-leave-buffer-hook)
681 (mouse-drag-track start-event))
684 (defun mouse-posn-property (pos property)
685 "Look for a property at click position.
686 POS may be either a buffer position or a click position like
687 those returned from `event-start'. If the click position is on
688 a string, the text property PROPERTY is examined.
689 If this is nil or the click is not on a string, then
690 the corresponding buffer position is searched for PROPERTY.
691 If PROPERTY is encountered in one of those places,
692 its value is returned."
693 (if (consp pos)
694 (let ((w (posn-window pos)) (pt (posn-point pos))
695 (str (posn-string pos)))
696 (or (and str
697 (get-text-property (cdr str) property (car str)))
698 ;; Mouse clicks in the fringe come with a position in
699 ;; (nth 5). This is useful but is not exactly where we clicked, so
700 ;; don't look up that position's properties!
701 (and pt (not (memq (posn-area pos) '(left-fringe right-fringe
702 left-margin right-margin)))
703 (get-char-property pt property w))))
704 (get-char-property pos property)))
706 (defun mouse-on-link-p (pos)
707 "Return non-nil if POS is on a link in the current buffer.
708 POS must be a buffer position in the current buffer or a mouse
709 event location in the selected window (see `event-start').
710 However, if `mouse-1-click-in-non-selected-windows' is non-nil,
711 POS may be a mouse event location in any window.
713 A clickable link is identified by one of the following methods:
715 - If the character at POS has a non-nil `follow-link' text or
716 overlay property, the value of that property determines what to do.
718 - If there is a local key-binding or a keybinding at position POS
719 for the `follow-link' event, the binding of that event determines
720 what to do.
722 The resulting value determine whether POS is inside a link:
724 - If the value is `mouse-face', POS is inside a link if there
725 is a non-nil `mouse-face' property at POS. Return t in this case.
727 - If the value is a function, FUNC, POS is inside a link if
728 the call \(FUNC POS) returns non-nil. Return the return value
729 from that call. Arg is \(posn-point POS) if POS is a mouse event.
731 - Otherwise, return the value itself.
733 The return value is interpreted as follows:
735 - If it is a string, the mouse-1 event is translated into the
736 first character of the string, i.e. the action of the mouse-1
737 click is the local or global binding of that character.
739 - If it is a vector, the mouse-1 event is translated into the
740 first element of that vector, i.e. the action of the mouse-1
741 click is the local or global binding of that event.
743 - Otherwise, the mouse-1 event is translated into a mouse-2 event
744 at the same position."
745 (let ((action
746 (and (or (not (consp pos))
747 mouse-1-click-in-non-selected-windows
748 (eq (selected-window) (posn-window pos)))
749 (or (mouse-posn-property pos 'follow-link)
750 (let ((area (posn-area pos)))
751 (when area
752 (key-binding (vector area 'follow-link) nil t pos)))
753 (key-binding [follow-link] nil t pos)))))
754 (cond
755 ((eq action 'mouse-face)
756 (and (mouse-posn-property pos 'mouse-face) t))
757 ((functionp action)
758 ;; FIXME: This seems questionable if the click is not in a buffer.
759 ;; Should we instead decide that `action' takes a `posn'?
760 (if (consp pos)
761 (with-current-buffer (window-buffer (posn-window pos))
762 (funcall action (posn-point pos)))
763 (funcall action pos)))
764 (t action))))
766 (defun mouse-fixup-help-message (msg)
767 "Fix help message MSG for `mouse-1-click-follows-link'."
768 (let (mp pos)
769 (if (and mouse-1-click-follows-link
770 (stringp msg)
771 (string-match-p "\\`mouse-2" msg)
772 (setq mp (mouse-pixel-position))
773 (consp (setq pos (cdr mp)))
774 (car pos) (>= (car pos) 0)
775 (cdr pos) (>= (cdr pos) 0)
776 (setq pos (posn-at-x-y (car pos) (cdr pos) (car mp)))
777 (windowp (posn-window pos)))
778 (with-current-buffer (window-buffer (posn-window pos))
779 (if (mouse-on-link-p pos)
780 (setq msg (concat
781 (cond
782 ((eq mouse-1-click-follows-link 'double) "double-")
783 ((and (integerp mouse-1-click-follows-link)
784 (< mouse-1-click-follows-link 0)) "Long ")
785 (t ""))
786 "mouse-1" (substring msg 7)))))))
787 msg)
789 (defun mouse-drag-track (start-event)
790 "Track mouse drags by highlighting area between point and cursor.
791 The region will be defined with mark and point."
792 (mouse-minibuffer-check start-event)
793 (setq mouse-selection-click-count-buffer (current-buffer))
794 (deactivate-mark)
795 (let* ((scroll-margin 0) ; Avoid margin scrolling (Bug#9541).
796 ;; We've recorded what we needed from the current buffer and
797 ;; window, now let's jump to the place of the event, where things
798 ;; are happening.
799 (_ (mouse-set-point start-event))
800 (echo-keystrokes 0)
801 (start-posn (event-start start-event))
802 (start-point (posn-point start-posn))
803 (start-window (posn-window start-posn))
804 (bounds (window-edges start-window))
805 (make-cursor-line-fully-visible nil)
806 (top (nth 1 bounds))
807 (bottom (if (window-minibuffer-p start-window)
808 (nth 3 bounds)
809 ;; Don't count the mode line.
810 (1- (nth 3 bounds))))
811 (click-count (1- (event-click-count start-event)))
812 ;; Suppress automatic hscrolling, because that is a nuisance
813 ;; when setting point near the right fringe (but see below).
814 (auto-hscroll-mode-saved auto-hscroll-mode))
816 (setq mouse-selection-click-count click-count)
817 ;; In case the down click is in the middle of some intangible text,
818 ;; use the end of that text, and put it in START-POINT.
819 (if (< (point) start-point)
820 (goto-char start-point))
821 (setq start-point (point))
823 ;; Activate the region, using `mouse-start-end' to determine where
824 ;; to put point and mark (e.g., double-click will select a word).
825 (setq-local transient-mark-mode
826 (if (eq transient-mark-mode 'lambda)
827 '(only)
828 (cons 'only transient-mark-mode)))
829 (let ((range (mouse-start-end start-point start-point click-count)))
830 (push-mark (nth 0 range) t t)
831 (goto-char (nth 1 range)))
833 (setf (terminal-parameter nil 'mouse-drag-start) start-event)
834 (setq track-mouse t)
835 (setq auto-hscroll-mode nil)
837 (set-transient-map
838 (let ((map (make-sparse-keymap)))
839 (define-key map [switch-frame] #'ignore)
840 (define-key map [select-window] #'ignore)
841 (define-key map [mouse-movement]
842 (lambda (event) (interactive "e")
843 (let* ((end (event-end event))
844 (end-point (posn-point end)))
845 (unless (eq end-point start-point)
846 ;; As soon as the user moves, we can re-enable auto-hscroll.
847 (setq auto-hscroll-mode auto-hscroll-mode-saved)
848 ;; And remember that we have moved, so mouse-set-region can know
849 ;; its event is really a drag event.
850 (setcar start-event 'mouse-movement))
851 (if (and (eq (posn-window end) start-window)
852 (integer-or-marker-p end-point))
853 (mouse--drag-set-mark-and-point start-point
854 end-point click-count)
855 (let ((mouse-row (cdr (cdr (mouse-position)))))
856 (cond
857 ((null mouse-row))
858 ((< mouse-row top)
859 (mouse-scroll-subr start-window (- mouse-row top)
860 nil start-point))
861 ((>= mouse-row bottom)
862 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
863 nil start-point))))))))
864 map)
865 t (lambda ()
866 (setq track-mouse nil)
867 (setq auto-hscroll-mode auto-hscroll-mode-saved)
868 (deactivate-mark)
869 (pop-mark)))))
871 (defun mouse--drag-set-mark-and-point (start click click-count)
872 (let* ((range (mouse-start-end start click click-count))
873 (beg (nth 0 range))
874 (end (nth 1 range)))
875 (cond ((eq (mark) beg)
876 (goto-char end))
877 ((eq (mark) end)
878 (goto-char beg))
879 ((< click (mark))
880 (set-mark end)
881 (goto-char beg))
883 (set-mark beg)
884 (goto-char end)))))
886 ;; Commands to handle xterm-style multiple clicks.
887 (defun mouse-skip-word (dir)
888 "Skip over word, over whitespace, or over identical punctuation.
889 If DIR is positive skip forward; if negative, skip backward."
890 (let* ((char (following-char))
891 (syntax (char-to-string (char-syntax char))))
892 (cond ((string= syntax "w")
893 ;; Here, we can't use skip-syntax-forward/backward because
894 ;; they don't pay attention to word-separating-categories,
895 ;; and thus they will skip over a true word boundary. So,
896 ;; we simulate the original behavior by using forward-word.
897 (if (< dir 0)
898 (if (not (looking-at "\\<"))
899 (forward-word -1))
900 (if (or (looking-at "\\<") (not (looking-at "\\>")))
901 (forward-word 1))))
902 ((string= syntax " ")
903 (if (< dir 0)
904 (skip-syntax-backward syntax)
905 (skip-syntax-forward syntax)))
906 ((string= syntax "_")
907 (if (< dir 0)
908 (skip-syntax-backward "w_")
909 (skip-syntax-forward "w_")))
910 ((< dir 0)
911 (while (and (not (bobp)) (= (preceding-char) char))
912 (forward-char -1)))
914 (while (and (not (eobp)) (= (following-char) char))
915 (forward-char 1))))))
917 (defun mouse-start-end (start end mode)
918 "Return a list of region bounds based on START and END according to MODE.
919 If MODE is 0 then set point to (min START END), mark to (max START END).
920 If MODE is 1 then set point to start of word at (min START END),
921 mark to end of word at (max START END).
922 If MODE is 2 then do the same for lines."
923 (if (> start end)
924 (let ((temp start))
925 (setq start end
926 end temp)))
927 (setq mode (mod mode 3))
928 (cond ((= mode 0)
929 (list start end))
930 ((and (= mode 1)
931 (= start end)
932 (char-after start)
933 (= (char-syntax (char-after start)) ?\())
934 (list start
935 (save-excursion
936 (goto-char start)
937 (forward-sexp 1)
938 (point))))
939 ((and (= mode 1)
940 (= start end)
941 (char-after start)
942 (= (char-syntax (char-after start)) ?\)))
943 (list (save-excursion
944 (goto-char (1+ start))
945 (backward-sexp 1)
946 (point))
947 (1+ start)))
948 ((and (= mode 1)
949 (= start end)
950 (char-after start)
951 (= (char-syntax (char-after start)) ?\"))
952 (let ((open (or (eq start (point-min))
953 (save-excursion
954 (goto-char (- start 1))
955 (looking-at "\\s(\\|\\s \\|\\s>")))))
956 (if open
957 (list start
958 (save-excursion
959 (condition-case nil
960 (progn
961 (goto-char start)
962 (forward-sexp 1)
963 (point))
964 (error end))))
965 (list (save-excursion
966 (condition-case nil
967 (progn
968 (goto-char (1+ start))
969 (backward-sexp 1)
970 (point))
971 (error end)))
972 (1+ start)))))
973 ((= mode 1)
974 (list (save-excursion
975 (goto-char start)
976 (mouse-skip-word -1)
977 (point))
978 (save-excursion
979 (goto-char end)
980 (mouse-skip-word 1)
981 (point))))
982 ((= mode 2)
983 (list (save-excursion
984 (goto-char start)
985 (line-beginning-position 1))
986 (save-excursion
987 (goto-char end)
988 (forward-line 1)
989 (point))))))
991 ;; Subroutine: set the mark where CLICK happened,
992 ;; but don't do anything else.
993 (defun mouse-set-mark-fast (click)
994 (mouse-minibuffer-check click)
995 (let ((posn (event-start click)))
996 (select-window (posn-window posn))
997 (if (numberp (posn-point posn))
998 (push-mark (posn-point posn) t t))))
1000 (defun mouse-undouble-last-event (events)
1001 (let* ((index (1- (length events)))
1002 (last (nthcdr index events))
1003 (event (car last))
1004 (basic (event-basic-type event))
1005 (old-modifiers (event-modifiers event))
1006 (modifiers (delq 'double (delq 'triple (copy-sequence old-modifiers))))
1007 (new
1008 (if (consp event)
1009 ;; Use reverse, not nreverse, since event-modifiers
1010 ;; does not copy the list it returns.
1011 (cons (event-convert-list (reverse (cons basic modifiers)))
1012 (cdr event))
1013 event)))
1014 (setcar last new)
1015 (if (and (not (equal modifiers old-modifiers))
1016 (key-binding (apply 'vector events)))
1018 (setcar last event)
1019 nil)))
1021 ;; Momentarily show where the mark is, if highlighting doesn't show it.
1023 (defun mouse-set-mark (click)
1024 "Set mark at the position clicked on with the mouse.
1025 Display cursor at that position for a second.
1026 This must be bound to a mouse click."
1027 (interactive "e")
1028 (mouse-minibuffer-check click)
1029 (select-window (posn-window (event-start click)))
1030 ;; We don't use save-excursion because that preserves the mark too.
1031 (let ((point-save (point)))
1032 (unwind-protect
1033 (progn (mouse-set-point click)
1034 (push-mark nil t t)
1035 (or transient-mark-mode
1036 (sit-for 1)))
1037 (goto-char point-save))))
1039 (defun mouse-kill (click)
1040 "Kill the region between point and the mouse click.
1041 The text is saved in the kill ring, as with \\[kill-region]."
1042 (interactive "e")
1043 (mouse-minibuffer-check click)
1044 (let* ((posn (event-start click))
1045 (click-posn (posn-point posn)))
1046 (select-window (posn-window posn))
1047 (if (numberp click-posn)
1048 (kill-region (min (point) click-posn)
1049 (max (point) click-posn)))))
1051 (defun mouse-yank-at-click (click arg)
1052 "Insert the last stretch of killed text at the position clicked on.
1053 Also move point to one end of the text thus inserted (normally the end),
1054 and set mark at the beginning.
1055 Prefix arguments are interpreted as with \\[yank].
1056 If `mouse-yank-at-point' is non-nil, insert at point
1057 regardless of where you click."
1058 (interactive "e\nP")
1059 ;; Give temporary modes such as isearch a chance to turn off.
1060 (run-hooks 'mouse-leave-buffer-hook)
1061 (when select-active-regions
1062 ;; Without this, confusing things happen upon e.g. inserting into
1063 ;; the middle of an active region.
1064 (deactivate-mark))
1065 (or mouse-yank-at-point (mouse-set-point click))
1066 (setq this-command 'yank)
1067 (setq mouse-selection-click-count 0)
1068 (yank arg))
1070 (defun mouse-yank-primary (click)
1071 "Insert the primary selection at the position clicked on.
1072 Move point to the end of the inserted text, and set mark at
1073 beginning. If `mouse-yank-at-point' is non-nil, insert at point
1074 regardless of where you click."
1075 (interactive "e")
1076 ;; Give temporary modes such as isearch a chance to turn off.
1077 (run-hooks 'mouse-leave-buffer-hook)
1078 ;; Without this, confusing things happen upon e.g. inserting into
1079 ;; the middle of an active region.
1080 (when select-active-regions
1081 (let (select-active-regions)
1082 (deactivate-mark)))
1083 (or mouse-yank-at-point (mouse-set-point click))
1084 (let ((primary (gui-get-primary-selection)))
1085 (push-mark (point))
1086 (insert-for-yank primary)))
1088 (defun mouse-kill-ring-save (click)
1089 "Copy the region between point and the mouse click in the kill ring.
1090 This does not delete the region; it acts like \\[kill-ring-save]."
1091 (interactive "e")
1092 (mouse-set-mark-fast click)
1093 (let (this-command last-command)
1094 (kill-ring-save (point) (mark t))))
1096 ;; This function used to delete the text between point and the mouse
1097 ;; whenever it was equal to the front of the kill ring, but some
1098 ;; people found that confusing.
1100 ;; The position of the last invocation of `mouse-save-then-kill'.
1101 (defvar mouse-save-then-kill-posn nil)
1103 (defun mouse-save-then-kill-delete-region (beg end)
1104 ;; We must make our own undo boundaries
1105 ;; because they happen automatically only for the current buffer.
1106 (undo-boundary)
1107 (if (or (= beg end) (eq buffer-undo-list t))
1108 ;; If we have no undo list in this buffer,
1109 ;; just delete.
1110 (delete-region beg end)
1111 ;; Delete, but make the undo-list entry share with the kill ring.
1112 ;; First, delete just one char, so in case buffer is being modified
1113 ;; for the first time, the undo list records that fact.
1114 (let (before-change-functions after-change-functions)
1115 (delete-region beg
1116 (+ beg (if (> end beg) 1 -1))))
1117 (let ((buffer-undo-list buffer-undo-list))
1118 ;; Undo that deletion--but don't change the undo list!
1119 (let (before-change-functions after-change-functions)
1120 (primitive-undo 1 buffer-undo-list))
1121 ;; Now delete the rest of the specified region,
1122 ;; but don't record it.
1123 (setq buffer-undo-list t)
1124 (if (/= (length (car kill-ring)) (- (max end beg) (min end beg)))
1125 (error "Lossage in mouse-save-then-kill-delete-region"))
1126 (delete-region beg end))
1127 (let ((tail buffer-undo-list))
1128 ;; Search back in buffer-undo-list for the string
1129 ;; that came from deleting one character.
1130 (while (and tail (not (stringp (car (car tail)))))
1131 (setq tail (cdr tail)))
1132 ;; Replace it with an entry for the entire deleted text.
1133 (and tail
1134 (setcar tail (cons (car kill-ring) (min beg end))))))
1135 (undo-boundary))
1137 (defun mouse-save-then-kill (click)
1138 "Set the region according to CLICK; the second time, kill it.
1139 CLICK should be a mouse click event.
1141 If the region is inactive, activate it temporarily. Set mark at
1142 the original point, and move point to the position of CLICK.
1144 If the region is already active, adjust it. Normally, do this by
1145 moving point or mark, whichever is closer, to CLICK. But if you
1146 have selected whole words or lines, move point or mark to the
1147 word or line boundary closest to CLICK instead.
1149 If `mouse-drag-copy-region' is non-nil, this command also saves the
1150 new region to the kill ring (replacing the previous kill if the
1151 previous region was just saved to the kill ring).
1153 If this command is called a second consecutive time with the same
1154 CLICK position, kill the region (or delete it
1155 if `mouse-drag-copy-region' is non-nil)"
1156 (interactive "e")
1157 (mouse-minibuffer-check click)
1158 (let* ((posn (event-start click))
1159 (click-pt (posn-point posn))
1160 (window (posn-window posn))
1161 (buf (window-buffer window))
1162 ;; Don't let a subsequent kill command append to this one.
1163 (this-command this-command)
1164 ;; Check if the user has multi-clicked to select words/lines.
1165 (click-count
1166 (if (and (eq mouse-selection-click-count-buffer buf)
1167 (with-current-buffer buf (mark t)))
1168 mouse-selection-click-count
1169 0)))
1170 (cond
1171 ((not (numberp click-pt)) nil)
1172 ;; If the user clicked without moving point, kill the region.
1173 ;; This also resets `mouse-selection-click-count'.
1174 ((and (eq last-command 'mouse-save-then-kill)
1175 (eq click-pt mouse-save-then-kill-posn)
1176 (eq window (selected-window)))
1177 (if mouse-drag-copy-region
1178 ;; Region already saved in the previous click;
1179 ;; don't make a duplicate entry, just delete.
1180 (delete-region (mark t) (point))
1181 (kill-region (mark t) (point)))
1182 (setq mouse-selection-click-count 0)
1183 (setq mouse-save-then-kill-posn nil))
1185 ;; Otherwise, if there is a suitable region, adjust it by moving
1186 ;; one end (whichever is closer) to CLICK-PT.
1187 ((or (with-current-buffer buf (region-active-p))
1188 (and (eq window (selected-window))
1189 (mark t)
1190 (or (and (eq last-command 'mouse-save-then-kill)
1191 mouse-save-then-kill-posn)
1192 (and (memq last-command '(mouse-drag-region
1193 mouse-set-region))
1194 (or mark-even-if-inactive
1195 (not transient-mark-mode))))))
1196 (select-window window)
1197 (let* ((range (mouse-start-end click-pt click-pt click-count)))
1198 (if (< (abs (- click-pt (mark t)))
1199 (abs (- click-pt (point))))
1200 (set-mark (car range))
1201 (goto-char (nth 1 range)))
1202 (setq deactivate-mark nil)
1203 (mouse-set-region-1)
1204 (when mouse-drag-copy-region
1205 ;; Region already copied to kill-ring once, so replace.
1206 (kill-new (filter-buffer-substring (mark t) (point)) t))
1207 ;; Arrange for a repeated mouse-3 to kill the region.
1208 (setq mouse-save-then-kill-posn click-pt)))
1210 ;; Otherwise, set the mark where point is and move to CLICK-PT.
1212 (select-window window)
1213 (mouse-set-mark-fast click)
1214 (let ((before-scroll (with-current-buffer buf point-before-scroll)))
1215 (if before-scroll (goto-char before-scroll)))
1216 (exchange-point-and-mark)
1217 (mouse-set-region-1)
1218 (when mouse-drag-copy-region
1219 (kill-new (filter-buffer-substring (mark t) (point))))
1220 (setq mouse-save-then-kill-posn click-pt)))))
1223 (global-set-key [M-mouse-1] 'mouse-start-secondary)
1224 (global-set-key [M-drag-mouse-1] 'mouse-set-secondary)
1225 (global-set-key [M-down-mouse-1] 'mouse-drag-secondary)
1226 (global-set-key [M-mouse-3] 'mouse-secondary-save-then-kill)
1227 (global-set-key [M-mouse-2] 'mouse-yank-secondary)
1229 (defconst mouse-secondary-overlay
1230 (let ((ol (make-overlay (point-min) (point-min))))
1231 (delete-overlay ol)
1232 (overlay-put ol 'face 'secondary-selection)
1234 "An overlay which records the current secondary selection.
1235 It is deleted when there is no secondary selection.")
1237 (defvar mouse-secondary-click-count 0)
1239 ;; A marker which records the specified first end for a secondary selection.
1240 ;; May be nil.
1241 (defvar mouse-secondary-start nil)
1243 (defun mouse-start-secondary (click)
1244 "Set one end of the secondary selection to the position clicked on.
1245 Use \\[mouse-secondary-save-then-kill] to set the other end
1246 and complete the secondary selection."
1247 (interactive "e")
1248 (mouse-minibuffer-check click)
1249 (let ((posn (event-start click)))
1250 (with-current-buffer (window-buffer (posn-window posn))
1251 ;; Cancel any preexisting secondary selection.
1252 (delete-overlay mouse-secondary-overlay)
1253 (if (numberp (posn-point posn))
1254 (progn
1255 (or mouse-secondary-start
1256 (setq mouse-secondary-start (make-marker)))
1257 (move-marker mouse-secondary-start (posn-point posn)))))))
1259 (defun mouse-set-secondary (click)
1260 "Set the secondary selection to the text that the mouse is dragged over.
1261 This must be bound to a mouse drag event."
1262 (interactive "e")
1263 (mouse-minibuffer-check click)
1264 (let ((posn (event-start click))
1266 (end (event-end click)))
1267 (with-current-buffer (window-buffer (posn-window posn))
1268 (if (numberp (posn-point posn))
1269 (setq beg (posn-point posn)))
1270 (move-overlay mouse-secondary-overlay beg (posn-point end))
1271 (gui-set-selection
1272 'SECONDARY
1273 (buffer-substring (overlay-start mouse-secondary-overlay)
1274 (overlay-end mouse-secondary-overlay))))))
1276 (defun mouse-drag-secondary (start-event)
1277 "Set the secondary selection to the text that the mouse is dragged over.
1278 Highlight the drag area as you move the mouse.
1279 This must be bound to a button-down mouse event.
1280 The function returns a non-nil value if it creates a secondary selection."
1281 (interactive "e")
1282 (mouse-minibuffer-check start-event)
1283 (let* ((echo-keystrokes 0)
1284 (start-posn (event-start start-event))
1285 (start-point (posn-point start-posn))
1286 (start-window (posn-window start-posn))
1287 (bounds (window-edges start-window))
1288 (top (nth 1 bounds))
1289 (bottom (if (window-minibuffer-p start-window)
1290 (nth 3 bounds)
1291 ;; Don't count the mode line.
1292 (1- (nth 3 bounds))))
1293 (click-count (1- (event-click-count start-event))))
1294 (with-current-buffer (window-buffer start-window)
1295 (setq mouse-secondary-click-count click-count)
1296 (if (> (mod click-count 3) 0)
1297 ;; Double or triple press: make an initial selection
1298 ;; of one word or line.
1299 (let ((range (mouse-start-end start-point start-point click-count)))
1300 (set-marker mouse-secondary-start nil)
1301 (move-overlay mouse-secondary-overlay (car range) (nth 1 range)
1302 (window-buffer start-window)))
1303 ;; Single-press: cancel any preexisting secondary selection.
1304 (or mouse-secondary-start
1305 (setq mouse-secondary-start (make-marker)))
1306 (set-marker mouse-secondary-start start-point)
1307 (delete-overlay mouse-secondary-overlay))
1308 ;; FIXME: Use mouse-drag-track!
1309 (let (event end end-point)
1310 (track-mouse
1311 (while (progn
1312 (setq event (read-event))
1313 (or (mouse-movement-p event)
1314 (memq (car-safe event) '(switch-frame select-window))))
1316 (if (memq (car-safe event) '(switch-frame select-window))
1318 (setq end (event-end event)
1319 end-point (posn-point end))
1320 (cond
1321 ;; Are we moving within the original window?
1322 ((and (eq (posn-window end) start-window)
1323 (integer-or-marker-p end-point))
1324 (let ((range (mouse-start-end start-point end-point
1325 click-count)))
1326 (if (or (/= start-point end-point)
1327 (null (marker-position mouse-secondary-start)))
1328 (progn
1329 (set-marker mouse-secondary-start nil)
1330 (move-overlay mouse-secondary-overlay
1331 (car range) (nth 1 range))))))
1333 (let ((mouse-row (cdr (cdr (mouse-position)))))
1334 (cond
1335 ((null mouse-row))
1336 ((< mouse-row top)
1337 (mouse-scroll-subr start-window (- mouse-row top)
1338 mouse-secondary-overlay start-point))
1339 ((>= mouse-row bottom)
1340 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
1341 mouse-secondary-overlay start-point)))))))))
1343 (if (consp event)
1344 (if (marker-position mouse-secondary-start)
1345 (save-window-excursion
1346 (delete-overlay mouse-secondary-overlay)
1347 (gui-set-selection 'SECONDARY nil)
1348 (select-window start-window)
1349 (save-excursion
1350 (goto-char mouse-secondary-start)
1351 (sit-for 1)
1352 nil))
1353 (gui-set-selection
1354 'SECONDARY
1355 (buffer-substring (overlay-start mouse-secondary-overlay)
1356 (overlay-end mouse-secondary-overlay)))))))))
1358 (defun mouse-yank-secondary (click)
1359 "Insert the secondary selection at the position clicked on.
1360 Move point to the end of the inserted text.
1361 If `mouse-yank-at-point' is non-nil, insert at point
1362 regardless of where you click."
1363 (interactive "e")
1364 ;; Give temporary modes such as isearch a chance to turn off.
1365 (run-hooks 'mouse-leave-buffer-hook)
1366 (or mouse-yank-at-point (mouse-set-point click))
1367 (let ((secondary (gui-get-selection 'SECONDARY)))
1368 (if secondary
1369 (insert-for-yank secondary)
1370 (error "No secondary selection"))))
1372 (defun mouse-kill-secondary ()
1373 "Kill the text in the secondary selection.
1374 This is intended more as a keyboard command than as a mouse command
1375 but it can work as either one.
1377 The current buffer (in case of keyboard use), or the buffer clicked on,
1378 must be the one that the secondary selection is in. This requirement
1379 is to prevent accidents."
1380 (interactive)
1381 (let* ((keys (this-command-keys))
1382 (click (elt keys (1- (length keys)))))
1383 (or (eq (overlay-buffer mouse-secondary-overlay)
1384 (if (listp click)
1385 (window-buffer (posn-window (event-start click)))
1386 (current-buffer)))
1387 (error "Select or click on the buffer where the secondary selection is")))
1388 (let (this-command)
1389 (with-current-buffer (overlay-buffer mouse-secondary-overlay)
1390 (kill-region (overlay-start mouse-secondary-overlay)
1391 (overlay-end mouse-secondary-overlay))))
1392 (delete-overlay mouse-secondary-overlay))
1394 (defun mouse-secondary-save-then-kill (click)
1395 "Set the secondary selection and save it to the kill ring.
1396 The second time, kill it. CLICK should be a mouse click event.
1398 If you have not called `mouse-start-secondary' in the clicked
1399 buffer, activate the secondary selection and set it between point
1400 and the click position CLICK.
1402 Otherwise, adjust the bounds of the secondary selection.
1403 Normally, do this by moving its beginning or end, whichever is
1404 closer, to CLICK. But if you have selected whole words or lines,
1405 adjust to the word or line boundary closest to CLICK instead.
1407 If this command is called a second consecutive time with the same
1408 CLICK position, kill the secondary selection."
1409 (interactive "e")
1410 (mouse-minibuffer-check click)
1411 (let* ((posn (event-start click))
1412 (click-pt (posn-point posn))
1413 (window (posn-window posn))
1414 (buf (window-buffer window))
1415 ;; Don't let a subsequent kill command append to this one.
1416 (this-command this-command)
1417 ;; Check if the user has multi-clicked to select words/lines.
1418 (click-count
1419 (if (eq (overlay-buffer mouse-secondary-overlay) buf)
1420 mouse-secondary-click-count
1422 (beg (overlay-start mouse-secondary-overlay))
1423 (end (overlay-end mouse-secondary-overlay)))
1425 (cond
1426 ((not (numberp click-pt)) nil)
1428 ;; If the secondary selection is not active in BUF, activate it.
1429 ((not (eq buf (or (overlay-buffer mouse-secondary-overlay)
1430 (if mouse-secondary-start
1431 (marker-buffer mouse-secondary-start)))))
1432 (select-window window)
1433 (setq mouse-secondary-start (make-marker))
1434 (move-marker mouse-secondary-start (point))
1435 (move-overlay mouse-secondary-overlay (point) click-pt buf)
1436 (kill-ring-save (point) click-pt))
1438 ;; If the user clicked without moving point, delete the secondary
1439 ;; selection. This also resets `mouse-secondary-click-count'.
1440 ((and (eq last-command 'mouse-secondary-save-then-kill)
1441 (eq click-pt mouse-save-then-kill-posn)
1442 (eq window (selected-window)))
1443 (mouse-save-then-kill-delete-region beg end)
1444 (delete-overlay mouse-secondary-overlay)
1445 (setq mouse-secondary-click-count 0)
1446 (setq mouse-save-then-kill-posn nil))
1448 ;; Otherwise, if there is a suitable secondary selection overlay,
1449 ;; adjust it by moving one end (whichever is closer) to CLICK-PT.
1450 ((and beg (eq buf (overlay-buffer mouse-secondary-overlay)))
1451 (let* ((range (mouse-start-end click-pt click-pt click-count)))
1452 (if (< (abs (- click-pt beg))
1453 (abs (- click-pt end)))
1454 (move-overlay mouse-secondary-overlay (car range) end)
1455 (move-overlay mouse-secondary-overlay beg (nth 1 range))))
1456 (setq deactivate-mark nil)
1457 (if (eq last-command 'mouse-secondary-save-then-kill)
1458 ;; If the front of the kill ring comes from an immediately
1459 ;; previous use of this command, replace the entry.
1460 (kill-new
1461 (buffer-substring (overlay-start mouse-secondary-overlay)
1462 (overlay-end mouse-secondary-overlay))
1464 (let (deactivate-mark)
1465 (copy-region-as-kill (overlay-start mouse-secondary-overlay)
1466 (overlay-end mouse-secondary-overlay))))
1467 (setq mouse-save-then-kill-posn click-pt))
1469 ;; Otherwise, set the secondary selection overlay.
1471 (select-window window)
1472 (if mouse-secondary-start
1473 ;; All we have is one end of a selection, so put the other
1474 ;; end here.
1475 (let ((start (+ 0 mouse-secondary-start)))
1476 (kill-ring-save start click-pt)
1477 (move-overlay mouse-secondary-overlay start click-pt)))
1478 (setq mouse-save-then-kill-posn click-pt))))
1480 ;; Finally, set the window system's secondary selection.
1481 (let (str)
1482 (and (overlay-buffer mouse-secondary-overlay)
1483 (setq str (buffer-substring (overlay-start mouse-secondary-overlay)
1484 (overlay-end mouse-secondary-overlay)))
1485 (> (length str) 0)
1486 (gui-set-selection 'SECONDARY str))))
1489 (defcustom mouse-buffer-menu-maxlen 20
1490 "Number of buffers in one pane (submenu) of the buffer menu.
1491 If we have lots of buffers, divide them into groups of
1492 `mouse-buffer-menu-maxlen' and make a pane (or submenu) for each one."
1493 :type 'integer
1494 :group 'mouse)
1496 (defcustom mouse-buffer-menu-mode-mult 4
1497 "Group the buffers by the major mode groups on \\[mouse-buffer-menu]?
1498 This number which determines (in a hairy way) whether \\[mouse-buffer-menu]
1499 will split the buffer menu by the major modes (see
1500 `mouse-buffer-menu-mode-groups') or just by menu length.
1501 Set to 1 (or even 0!) if you want to group by major mode always, and to
1502 a large number if you prefer a mixed multitude. The default is 4."
1503 :type 'integer
1504 :group 'mouse
1505 :version "20.3")
1507 (defvar mouse-buffer-menu-mode-groups
1508 (mapcar (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
1509 '(("Info\\|Help\\|Apropos\\|Man" . "Help")
1510 ("\\bVM\\b\\|\\bMH\\b\\|Message\\|Mail\\|Group\\|Score\\|Summary\\|Article"
1511 . "Mail/News")
1512 ("\\<C\\>" . "C")
1513 ("ObjC" . "C")
1514 ("Text" . "Text")
1515 ("Outline" . "Text")
1516 ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML")
1517 ("log\\|diff\\|vc\\|cvs\\|Annotate" . "Version Control") ; "Change Management"?
1518 ("Threads\\|Memory\\|Disassembly\\|Breakpoints\\|Frames\\|Locals\\|Registers\\|Inferior I/O\\|Debugger"
1519 . "GDB")
1520 ("Lisp" . "Lisp")))
1521 "How to group various major modes together in \\[mouse-buffer-menu].
1522 Each element has the form (REGEXP . GROUPNAME).
1523 If the major mode's name string matches REGEXP, use GROUPNAME instead.")
1525 (defun mouse-buffer-menu (event)
1526 "Pop up a menu of buffers for selection with the mouse.
1527 This switches buffers in the window that you clicked on,
1528 and selects that window."
1529 (interactive "e")
1530 (mouse-minibuffer-check event)
1531 (let ((buf (x-popup-menu event (mouse-buffer-menu-map)))
1532 (window (posn-window (event-start event))))
1533 (when buf
1534 (select-window
1535 (if (framep window) (frame-selected-window window)
1536 window))
1537 (switch-to-buffer buf))))
1539 (defun mouse-buffer-menu-map ()
1540 ;; Make an alist of elements that look like (MENU-ITEM . BUFFER).
1541 (let ((buffers (buffer-list)) split-by-major-mode sum-of-squares)
1542 (dolist (buf buffers)
1543 ;; Divide all buffers into buckets for various major modes.
1544 ;; Each bucket looks like (MODE NAMESTRING BUFFERS...).
1545 (with-current-buffer buf
1546 (let* ((adjusted-major-mode major-mode) elt)
1547 (dolist (group mouse-buffer-menu-mode-groups)
1548 (when (string-match (car group) (format-mode-line mode-name))
1549 (setq adjusted-major-mode (cdr group))))
1550 (setq elt (assoc adjusted-major-mode split-by-major-mode))
1551 (unless elt
1552 (setq elt (list adjusted-major-mode
1553 (if (stringp adjusted-major-mode)
1554 adjusted-major-mode
1555 (format-mode-line mode-name nil nil buf)))
1556 split-by-major-mode (cons elt split-by-major-mode)))
1557 (or (memq buf (cdr (cdr elt)))
1558 (setcdr (cdr elt) (cons buf (cdr (cdr elt))))))))
1559 ;; Compute the sum of squares of sizes of the major-mode buckets.
1560 (let ((tail split-by-major-mode))
1561 (setq sum-of-squares 0)
1562 (while tail
1563 (setq sum-of-squares
1564 (+ sum-of-squares
1565 (let ((len (length (cdr (cdr (car tail)))))) (* len len))))
1566 (setq tail (cdr tail))))
1567 (if (< (* sum-of-squares mouse-buffer-menu-mode-mult)
1568 (* (length buffers) (length buffers)))
1569 ;; Subdividing by major modes really helps, so let's do it.
1570 (let (subdivided-menus (buffers-left (length buffers)))
1571 ;; Sort the list to put the most popular major modes first.
1572 (setq split-by-major-mode
1573 (sort split-by-major-mode
1574 (function (lambda (elt1 elt2)
1575 (> (length elt1) (length elt2))))))
1576 ;; Make a separate submenu for each major mode
1577 ;; that has more than one buffer,
1578 ;; unless all the remaining buffers are less than 1/10 of them.
1579 (while (and split-by-major-mode
1580 (and (> (length (car split-by-major-mode)) 3)
1581 (> (* buffers-left 10) (length buffers))))
1582 (let ((this-mode-list (mouse-buffer-menu-alist
1583 (cdr (cdr (car split-by-major-mode))))))
1584 (and this-mode-list
1585 (setq subdivided-menus
1586 (cons (cons
1587 (nth 1 (car split-by-major-mode))
1588 this-mode-list)
1589 subdivided-menus))))
1590 (setq buffers-left
1591 (- buffers-left (length (cdr (car split-by-major-mode)))))
1592 (setq split-by-major-mode (cdr split-by-major-mode)))
1593 ;; If any major modes are left over,
1594 ;; make a single submenu for them.
1595 (if split-by-major-mode
1596 (let ((others-list
1597 (mouse-buffer-menu-alist
1598 ;; we don't need split-by-major-mode any more,
1599 ;; so we can ditch it with nconc.
1600 (apply 'nconc (mapcar 'cddr split-by-major-mode)))))
1601 (and others-list
1602 (setq subdivided-menus
1603 (cons (cons "Others" others-list)
1604 subdivided-menus)))))
1605 (cons "Buffer Menu" (nreverse subdivided-menus)))
1606 (cons "Buffer Menu"
1607 (mouse-buffer-menu-split "Select Buffer"
1608 (mouse-buffer-menu-alist buffers))))))
1610 (defun mouse-buffer-menu-alist (buffers)
1611 (let (tail
1612 (maxlen 0)
1613 head)
1614 (setq buffers
1615 (sort buffers
1616 (function (lambda (elt1 elt2)
1617 (string< (buffer-name elt1) (buffer-name elt2))))))
1618 (setq tail buffers)
1619 (while tail
1620 (or (eq ?\s (aref (buffer-name (car tail)) 0))
1621 (setq maxlen
1622 (max maxlen
1623 (length (buffer-name (car tail))))))
1624 (setq tail (cdr tail)))
1625 (setq tail buffers)
1626 (while tail
1627 (let ((elt (car tail)))
1628 (if (/= (aref (buffer-name elt) 0) ?\s)
1629 (setq head
1630 (cons
1631 (cons
1632 (format
1633 (format "%%-%ds %%s%%s %%s" maxlen)
1634 (buffer-name elt)
1635 (if (buffer-modified-p elt) "*" " ")
1636 (with-current-buffer elt
1637 (if buffer-read-only "%" " "))
1638 (or (buffer-file-name elt)
1639 (with-current-buffer elt
1640 (if list-buffers-directory
1641 (expand-file-name
1642 list-buffers-directory)))
1643 ""))
1644 elt)
1645 head))))
1646 (setq tail (cdr tail)))
1647 ;; Compensate for the reversal that the above loop does.
1648 (nreverse head)))
1650 (defun mouse-buffer-menu-split (title alist)
1651 ;; If we have lots of buffers, divide them into groups of 20
1652 ;; and make a pane (or submenu) for each one.
1653 (if (> (length alist) (/ (* mouse-buffer-menu-maxlen 3) 2))
1654 (let ((alist alist) sublists next
1655 (i 1))
1656 (while alist
1657 ;; Pull off the next mouse-buffer-menu-maxlen buffers
1658 ;; and make them the next element of sublist.
1659 (setq next (nthcdr mouse-buffer-menu-maxlen alist))
1660 (if next
1661 (setcdr (nthcdr (1- mouse-buffer-menu-maxlen) alist)
1662 nil))
1663 (setq sublists (cons (cons (format "Buffers %d" i) alist)
1664 sublists))
1665 (setq i (1+ i))
1666 (setq alist next))
1667 (nreverse sublists))
1668 ;; Few buffers--put them all in one pane.
1669 (list (cons title alist))))
1671 (define-obsolete-function-alias
1672 'mouse-choose-completion 'choose-completion "23.2")
1674 ;; Font selection.
1676 (defun font-menu-add-default ()
1677 (let* ((default (cdr (assq 'font (frame-parameters (selected-frame)))))
1678 (font-alist x-fixed-font-alist)
1679 (elt (or (assoc "Misc" font-alist) (nth 1 font-alist))))
1680 (if (assoc "Default" elt)
1681 (delete (assoc "Default" elt) elt))
1682 (setcdr elt
1683 (cons (list "Default" default)
1684 (cdr elt)))))
1686 (defvar x-fixed-font-alist
1687 (list
1688 (purecopy "Font Menu")
1689 (cons
1690 (purecopy "Misc")
1691 (mapcar
1692 (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
1693 ;; For these, we specify the pixel height and width.
1694 '(("fixed" "fixed")
1695 ("6x10" "-misc-fixed-medium-r-normal--10-*-*-*-c-60-iso8859-1" "6x10")
1696 ("6x12"
1697 "-misc-fixed-medium-r-semicondensed--12-*-*-*-c-60-iso8859-1" "6x12")
1698 ("6x13"
1699 "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" "6x13")
1700 ("7x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-70-iso8859-1" "7x13")
1701 ("7x14" "-misc-fixed-medium-r-normal--14-*-*-*-c-70-iso8859-1" "7x14")
1702 ("8x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-80-iso8859-1" "8x13")
1703 ("9x15" "-misc-fixed-medium-r-normal--15-*-*-*-c-90-iso8859-1" "9x15")
1704 ("10x20" "-misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1" "10x20")
1705 ("11x18" "-misc-fixed-medium-r-normal--18-*-*-*-c-110-iso8859-1" "11x18")
1706 ("12x24" "-misc-fixed-medium-r-normal--24-*-*-*-c-120-iso8859-1" "12x24")
1707 ("")
1708 ("clean 5x8"
1709 "-schumacher-clean-medium-r-normal--8-*-*-*-c-50-iso8859-1")
1710 ("clean 6x8"
1711 "-schumacher-clean-medium-r-normal--8-*-*-*-c-60-iso8859-1")
1712 ("clean 8x8"
1713 "-schumacher-clean-medium-r-normal--8-*-*-*-c-80-iso8859-1")
1714 ("clean 8x10"
1715 "-schumacher-clean-medium-r-normal--10-*-*-*-c-80-iso8859-1")
1716 ("clean 8x14"
1717 "-schumacher-clean-medium-r-normal--14-*-*-*-c-80-iso8859-1")
1718 ("clean 8x16"
1719 "-schumacher-clean-medium-r-normal--16-*-*-*-c-80-iso8859-1")
1720 ("")
1721 ("sony 8x16" "-sony-fixed-medium-r-normal--16-*-*-*-c-80-iso8859-1")
1722 ;; We don't seem to have these; who knows what they are.
1723 ;; ("fg-18" "fg-18")
1724 ;; ("fg-25" "fg-25")
1725 ("lucidasanstypewriter-12" "-b&h-lucidatypewriter-medium-r-normal-sans-*-120-*-*-*-*-iso8859-1")
1726 ("lucidasanstypewriter-bold-14" "-b&h-lucidatypewriter-bold-r-normal-sans-*-140-*-*-*-*-iso8859-1")
1727 ("lucidasanstypewriter-bold-24"
1728 "-b&h-lucidatypewriter-bold-r-normal-sans-*-240-*-*-*-*-iso8859-1")
1729 ;; ("lucidatypewriter-bold-r-24" "-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1")
1730 ;; ("fixed-medium-20" "-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*")
1733 (cons
1734 (purecopy "Courier")
1735 (mapcar
1736 (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
1737 ;; For these, we specify the point height.
1738 '(("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1")
1739 ("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1")
1740 ("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1")
1741 ("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1")
1742 ("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1")
1743 ("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1")
1744 ("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1")
1745 ("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1")
1746 ("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1")
1747 ("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1")
1748 ("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1")
1749 ("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1")
1750 ("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1")
1751 ("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1")
1752 ("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1")
1753 ("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1")
1754 ("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1")
1755 ("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1")
1756 ("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1")
1757 ("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1")
1758 ("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1")
1759 ("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1")
1760 ("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1")
1761 ("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1")
1762 ))))
1763 "X fonts suitable for use in Emacs.")
1765 (declare-function generate-fontset-menu "fontset" ())
1767 (defun mouse-select-font ()
1768 "Prompt for a font name, using `x-popup-menu', and return it."
1769 (interactive)
1770 (unless (display-multi-font-p)
1771 (error "Cannot change fonts on this display"))
1772 (car
1773 (x-popup-menu
1774 (if (listp last-nonmenu-event)
1775 last-nonmenu-event
1776 (list '(0 0) (selected-window)))
1777 (append x-fixed-font-alist
1778 (list (generate-fontset-menu))))))
1780 (declare-function text-scale-mode "face-remap")
1782 (defun mouse-set-font (&rest fonts)
1783 "Set the default font for the selected frame.
1784 The argument FONTS is a list of font names; the first valid font
1785 in this list is used.
1787 When called interactively, pop up a menu and allow the user to
1788 choose a font."
1789 (interactive
1790 (progn (unless (display-multi-font-p)
1791 (error "Cannot change fonts on this display"))
1792 (x-popup-menu
1793 (if (listp last-nonmenu-event)
1794 last-nonmenu-event
1795 (list '(0 0) (selected-window)))
1796 ;; Append list of fontsets currently defined.
1797 (append x-fixed-font-alist (list (generate-fontset-menu))))))
1798 (if fonts
1799 (let (font)
1800 (while fonts
1801 (condition-case nil
1802 (progn
1803 (set-frame-font (car fonts))
1804 (setq font (car fonts))
1805 (setq fonts nil))
1806 (error
1807 (setq fonts (cdr fonts)))))
1808 (if (null font)
1809 (error "Font not found")))))
1811 (defvar mouse-appearance-menu-map nil)
1812 (declare-function x-select-font "xfns.c" (&optional frame ignored)) ; USE_GTK
1813 (declare-function buffer-face-mode-invoke "face-remap"
1814 (face arg &optional interactive))
1815 (declare-function font-face-attributes "font.c" (font &optional frame))
1816 (defvar w32-use-w32-font-dialog)
1817 (defvar w32-fixed-font-alist)
1819 (defun mouse-appearance-menu (event)
1820 "Show a menu for changing the default face in the current buffer."
1821 (interactive "@e")
1822 (require 'face-remap)
1823 (when (display-multi-font-p)
1824 (with-selected-window (car (event-start event))
1825 (if mouse-appearance-menu-map
1826 nil ; regenerate new fonts
1827 ;; Initialize mouse-appearance-menu-map
1828 (setq mouse-appearance-menu-map
1829 (make-sparse-keymap "Change Default Buffer Face"))
1830 (define-key mouse-appearance-menu-map [face-remap-reset-base]
1831 '(menu-item "Reset to Default" face-remap-reset-base))
1832 (define-key mouse-appearance-menu-map [text-scale-decrease]
1833 '(menu-item "Decrease Buffer Text Size" text-scale-decrease))
1834 (define-key mouse-appearance-menu-map [text-scale-increase]
1835 '(menu-item "Increase Buffer Text Size" text-scale-increase))
1836 ;; Font selector
1837 (if (and (functionp 'x-select-font)
1838 (or (not (boundp 'w32-use-w32-font-dialog))
1839 w32-use-w32-font-dialog))
1840 (define-key mouse-appearance-menu-map [x-select-font]
1841 '(menu-item "Change Buffer Font..." x-select-font))
1842 ;; If the select-font is unavailable, construct a menu.
1843 (let ((font-submenu (make-sparse-keymap "Change Text Font"))
1844 (font-alist (cdr (append
1845 (if (eq system-type 'windows-nt)
1846 w32-fixed-font-alist
1847 x-fixed-font-alist)
1848 (list (generate-fontset-menu))))))
1849 (dolist (family font-alist)
1850 (let* ((submenu-name (car family))
1851 (submenu-map (make-sparse-keymap submenu-name)))
1852 (dolist (font (cdr family))
1853 (let ((font-name (car font))
1854 font-symbol)
1855 (if (string= font-name "")
1856 (define-key submenu-map [space]
1857 '("--"))
1858 (setq font-symbol (intern (cadr font)))
1859 (define-key submenu-map (vector font-symbol)
1860 (list 'menu-item (car font) font-symbol)))))
1861 (define-key font-submenu (vector (intern submenu-name))
1862 (list 'menu-item submenu-name submenu-map))))
1863 (define-key mouse-appearance-menu-map [font-submenu]
1864 (list 'menu-item "Change Text Font" font-submenu)))))
1865 (let ((choice (x-popup-menu event mouse-appearance-menu-map)))
1866 (setq choice (nth (1- (length choice)) choice))
1867 (cond ((eq choice 'text-scale-increase)
1868 (text-scale-increase 1))
1869 ((eq choice 'text-scale-decrease)
1870 (text-scale-increase -1))
1871 ((eq choice 'face-remap-reset-base)
1872 (text-scale-mode 0)
1873 (buffer-face-mode 0))
1874 (choice
1875 ;; Either choice == 'x-select-font, or choice is a
1876 ;; symbol whose name is a font.
1877 (let ((font (if (eq choice 'x-select-font)
1878 (x-select-font)
1879 (symbol-name choice))))
1880 (buffer-face-mode-invoke
1881 (if (fontp font 'font-spec)
1882 (list :font font)
1883 (font-face-attributes font))
1884 t (called-interactively-p 'interactive)))))))))
1887 ;;; Bindings for mouse commands.
1889 (global-set-key [down-mouse-1] 'mouse-drag-region)
1890 (global-set-key [mouse-1] 'mouse-set-point)
1891 (global-set-key [drag-mouse-1] 'mouse-set-region)
1893 (defun mouse--strip-first-event (_prompt)
1894 (substring (this-single-command-raw-keys) 1))
1896 (define-key function-key-map [left-fringe mouse-1] 'mouse--strip-first-event)
1897 (define-key function-key-map [right-fringe mouse-1] 'mouse--strip-first-event)
1899 (global-set-key [mouse-2] 'mouse-yank-primary)
1900 ;; Allow yanking also when the corresponding cursor is "in the fringe".
1901 (define-key function-key-map [right-fringe mouse-2] 'mouse--strip-first-event)
1902 (define-key function-key-map [left-fringe mouse-2] 'mouse--strip-first-event)
1903 (global-set-key [mouse-3] 'mouse-save-then-kill)
1904 (define-key function-key-map [right-fringe mouse-3] 'mouse--strip-first-event)
1905 (define-key function-key-map [left-fringe mouse-3] 'mouse--strip-first-event)
1907 ;; By binding these to down-going events, we let the user use the up-going
1908 ;; event to make the selection, saving a click.
1909 (global-set-key [C-down-mouse-1] 'mouse-buffer-menu)
1910 (if (not (eq system-type 'ms-dos))
1911 (global-set-key [S-down-mouse-1] 'mouse-appearance-menu))
1912 ;; C-down-mouse-2 is bound in facemenu.el.
1913 (global-set-key [C-down-mouse-3]
1914 `(menu-item ,(purecopy "Menu Bar") ignore
1915 :filter (lambda (_)
1916 (if (zerop (or (frame-parameter nil 'menu-bar-lines) 0))
1917 (mouse-menu-bar-map)
1918 (mouse-menu-major-mode-map)))))
1920 ;; Binding mouse-1 to mouse-select-window when on mode-, header-, or
1921 ;; vertical-line prevents Emacs from signaling an error when the mouse
1922 ;; button is released after dragging these lines, on non-toolkit
1923 ;; versions.
1924 (global-set-key [header-line down-mouse-1] 'mouse-drag-header-line)
1925 (global-set-key [header-line mouse-1] 'mouse-select-window)
1926 ;; (global-set-key [mode-line drag-mouse-1] 'mouse-select-window)
1927 (global-set-key [mode-line down-mouse-1] 'mouse-drag-mode-line)
1928 (global-set-key [mode-line mouse-1] 'mouse-select-window)
1929 (global-set-key [mode-line mouse-2] 'mouse-delete-other-windows)
1930 (global-set-key [mode-line mouse-3] 'mouse-delete-window)
1931 (global-set-key [mode-line C-mouse-2] 'mouse-split-window-horizontally)
1932 (global-set-key [vertical-scroll-bar C-mouse-2] 'mouse-split-window-vertically)
1933 (global-set-key [horizontal-scroll-bar C-mouse-2] 'mouse-split-window-horizontally)
1934 (global-set-key [vertical-line down-mouse-1] 'mouse-drag-vertical-line)
1935 (global-set-key [vertical-line mouse-1] 'mouse-select-window)
1936 (global-set-key [vertical-line C-mouse-2] 'mouse-split-window-vertically)
1937 (global-set-key [right-divider down-mouse-1] 'mouse-drag-vertical-line)
1938 (global-set-key [right-divider mouse-1] 'ignore)
1939 (global-set-key [right-divider C-mouse-2] 'mouse-split-window-vertically)
1940 (global-set-key [bottom-divider down-mouse-1] 'mouse-drag-mode-line)
1941 (global-set-key [bottom-divider mouse-1] 'ignore)
1942 (global-set-key [bottom-divider C-mouse-2] 'mouse-split-window-horizontally)
1944 (provide 'mouse)
1946 ;;; mouse.el ends here