* lisp/mouse.el (mouse-yank-primary, mouse-yank-secondary):
[emacs.git] / lisp / mouse.el
blob7ba7b031e1ebc0c1272e7e459746d8203109d11b
1 ;;; mouse.el --- window system-independent mouse support
3 ;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: hardware, mouse
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 ;; The code is rather X-dependent.
32 ;;; Code:
34 ;;; Utility functions.
36 ;; Indent track-mouse like progn.
37 (put 'track-mouse 'lisp-indent-function 0)
39 (defcustom mouse-yank-at-point nil
40 "If non-nil, mouse yank commands yank at point instead of at click."
41 :type 'boolean
42 :group 'mouse)
44 (defcustom mouse-drag-copy-region nil
45 "If non-nil, mouse drag copies region to kill-ring."
46 :type 'boolean
47 :version "24.1"
48 :group 'mouse)
50 (defcustom mouse-1-click-follows-link 450
51 "Non-nil means that clicking Mouse-1 on a link follows the link.
53 With the default setting, an ordinary Mouse-1 click on a link
54 performs the same action as Mouse-2 on that link, while a longer
55 Mouse-1 click \(hold down the Mouse-1 button for more than 450
56 milliseconds) performs the original Mouse-1 binding \(which
57 typically sets point where you click the mouse).
59 If value is an integer, the time elapsed between pressing and
60 releasing the mouse button determines whether to follow the link
61 or perform the normal Mouse-1 action (typically set point).
62 The absolute numeric value specifices the maximum duration of a
63 \"short click\" in milliseconds. A positive value means that a
64 short click follows the link, and a longer click performs the
65 normal action. A negative value gives the opposite behavior.
67 If value is `double', a double click follows the link.
69 Otherwise, a single Mouse-1 click unconditionally follows the link.
71 Note that dragging the mouse never follows the link.
73 This feature only works in modes that specifically identify
74 clickable text as links, so it may not work with some external
75 packages. See `mouse-on-link-p' for details."
76 :version "22.1"
77 :type '(choice (const :tag "Disabled" nil)
78 (const :tag "Double click" double)
79 (number :tag "Single click time limit" :value 450)
80 (other :tag "Single click" t))
81 :group 'mouse)
83 (defcustom mouse-1-click-in-non-selected-windows t
84 "If non-nil, a Mouse-1 click also follows links in non-selected windows.
86 If nil, a Mouse-1 click on a link in a non-selected window performs
87 the normal mouse-1 binding, typically selects the window and sets
88 point at the click position."
89 :type 'boolean
90 :version "22.1"
91 :group 'mouse)
95 ;; Provide a mode-specific menu on a mouse button.
97 (defun popup-menu (menu &optional position prefix)
98 "Popup the given menu and call the selected option.
99 MENU can be a keymap, an easymenu-style menu or a list of keymaps as for
100 `x-popup-menu'.
101 POSITION can be a click event or ((XOFFSET YOFFSET) WINDOW) and defaults to
102 the current mouse position.
103 PREFIX is the prefix argument (if any) to pass to the command."
104 (let* ((map (cond
105 ((keymapp menu) menu)
106 ((and (listp menu) (keymapp (car menu))) menu)
107 (t (let* ((map (easy-menu-create-menu (car menu) (cdr menu)))
108 (filter (when (symbolp map)
109 (plist-get (get map 'menu-prop) :filter))))
110 (if filter (funcall filter (symbol-function map)) map)))))
111 event cmd)
112 (unless position
113 (let ((mp (mouse-pixel-position)))
114 (setq position (list (list (cadr mp) (cddr mp)) (car mp)))))
115 ;; The looping behavior was taken from lmenu's popup-menu-popup
116 (while (and map (setq event
117 ;; map could be a prefix key, in which case
118 ;; we need to get its function cell
119 ;; definition.
120 (x-popup-menu position (indirect-function map))))
121 ;; Strangely x-popup-menu returns a list.
122 ;; mouse-major-mode-menu was using a weird:
123 ;; (key-binding (apply 'vector (append '(menu-bar) menu-prefix events)))
124 (setq cmd
125 (if (and (not (keymapp map)) (listp map))
126 ;; We were given a list of keymaps. Search them all
127 ;; in sequence until a first binding is found.
128 (let ((mouse-click (apply 'vector event))
129 binding)
130 (while (and map (null binding))
131 (setq binding (lookup-key (car map) mouse-click))
132 (if (numberp binding) ; `too long'
133 (setq binding nil))
134 (setq map (cdr map)))
135 binding)
136 ;; We were given a single keymap.
137 (lookup-key map (apply 'vector event))))
138 ;; Clear out echoing, which perhaps shows a prefix arg.
139 (message "")
140 ;; Maybe try again but with the submap.
141 (setq map (if (keymapp cmd) cmd)))
142 ;; If the user did not cancel by refusing to select,
143 ;; and if the result is a command, run it.
144 (when (and (null map) (commandp cmd))
145 (setq prefix-arg prefix)
146 ;; `setup-specified-language-environment', for instance,
147 ;; expects this to be set from a menu keymap.
148 (setq last-command-event (car (last event)))
149 ;; mouse-major-mode-menu was using `command-execute' instead.
150 (call-interactively cmd))))
152 (defun minor-mode-menu-from-indicator (indicator)
153 "Show menu for minor mode specified by INDICATOR.
154 Interactively, INDICATOR is read using completion.
155 If there is no menu defined for the minor mode, then create one with
156 items `Turn Off' and `Help'."
157 (interactive
158 (list (completing-read
159 "Minor mode indicator: "
160 (describe-minor-mode-completion-table-for-indicator))))
161 (let* ((minor-mode (lookup-minor-mode-from-indicator indicator))
162 (mm-fun (or (get minor-mode :minor-mode-function) minor-mode)))
163 (unless minor-mode (error "Cannot find minor mode for `%s'" indicator))
164 (let* ((map (cdr-safe (assq minor-mode minor-mode-map-alist)))
165 (menu (and (keymapp map) (lookup-key map [menu-bar]))))
166 (setq menu
167 (if menu
168 (mouse-menu-non-singleton menu)
169 `(keymap
170 ,indicator
171 (turn-off menu-item "Turn Off minor mode" ,mm-fun)
172 (help menu-item "Help for minor mode"
173 (lambda () (interactive)
174 (describe-function ',mm-fun))))))
175 (popup-menu menu))))
177 (defun mouse-minor-mode-menu (event)
178 "Show minor-mode menu for EVENT on minor modes area of the mode line."
179 (interactive "@e")
180 (let ((indicator (car (nth 4 (car (cdr event))))))
181 (minor-mode-menu-from-indicator indicator)))
183 (defun mouse-menu-major-mode-map ()
184 (let* (;; Keymap from which to inherit; may be null.
185 (ancestor (mouse-menu-non-singleton
186 (and (current-local-map)
187 (local-key-binding [menu-bar]))))
188 ;; Make a keymap in which our last command leads to a menu or
189 ;; default to the edit menu.
190 (newmap (if ancestor
191 (make-sparse-keymap (concat (format-mode-line mode-name)
192 " Mode"))
193 menu-bar-edit-menu))
194 uniq)
195 (if ancestor
196 (set-keymap-parent newmap ancestor))
197 newmap))
199 (defun mouse-menu-non-singleton (menubar)
200 "Given menu keymap,
201 if it defines exactly one submenu, return just that submenu.
202 Otherwise return the whole menu."
203 (if menubar
204 (let (submap)
205 (map-keymap
206 (lambda (k v) (setq submap (if submap t (cons k v))))
207 (keymap-canonicalize menubar))
208 (if (eq submap t)
209 menubar
210 (lookup-key menubar (vector (car submap)))))))
212 (defun mouse-menu-bar-map ()
213 "Return a keymap equivalent to the menu bar.
214 The contents are the items that would be in the menu bar whether or
215 not it is actually displayed."
216 (let* ((local-menu (and (current-local-map)
217 (lookup-key (current-local-map) [menu-bar])))
218 (global-menu (lookup-key global-map [menu-bar]))
219 ;; If a keymap doesn't have a prompt string (a lazy
220 ;; programmer didn't bother to provide one), create it and
221 ;; insert it into the keymap; each keymap gets its own
222 ;; prompt. This is required for non-toolkit versions to
223 ;; display non-empty menu pane names.
224 (minor-mode-menus
225 (mapcar
226 (lambda (menu)
227 (let* ((minor-mode (car menu))
228 (menu (cdr menu))
229 (title-or-map (cadr menu)))
230 (or (stringp title-or-map)
231 (setq menu
232 (cons 'keymap
233 (cons (concat
234 (capitalize (subst-char-in-string
235 ?- ?\s (symbol-name
236 minor-mode)))
237 " Menu")
238 (cdr menu)))))
239 menu))
240 (minor-mode-key-binding [menu-bar])))
241 (local-title-or-map (and local-menu (cadr local-menu)))
242 (global-title-or-map (cadr global-menu)))
243 (or (null local-menu)
244 (stringp local-title-or-map)
245 (setq local-menu (cons 'keymap
246 (cons (concat (format-mode-line mode-name)
247 " Mode Menu")
248 (cdr local-menu)))))
249 (or (stringp global-title-or-map)
250 (setq global-menu (cons 'keymap
251 (cons "Global Menu"
252 (cdr global-menu)))))
253 ;; Supplying the list is faster than making a new map.
254 ;; FIXME: We have a problem here: we have to use the global/local/minor
255 ;; so they're displayed in the expected order, but later on in the command
256 ;; loop, they're actually looked up in the opposite order.
257 (apply 'append
258 global-menu
259 local-menu
260 minor-mode-menus)))
262 (defun mouse-major-mode-menu (event &optional prefix)
263 "Pop up a mode-specific menu of mouse commands.
264 Default to the Edit menu if the major mode doesn't define a menu."
265 (interactive "@e\nP")
266 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
267 (popup-menu (mouse-menu-major-mode-map) event prefix))
268 (make-obsolete 'mouse-major-mode-menu 'mouse-menu-major-mode-map "23.1")
270 (defun mouse-popup-menubar (event prefix)
271 "Pop up a menu equivalent to the menu bar for keyboard EVENT with PREFIX.
272 The contents are the items that would be in the menu bar whether or
273 not it is actually displayed."
274 (interactive "@e \nP")
275 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
276 (popup-menu (mouse-menu-bar-map) event prefix))
277 (make-obsolete 'mouse-popup-menubar 'mouse-menu-bar-map "23.1")
279 (defun mouse-popup-menubar-stuff (event prefix)
280 "Popup a menu like either `mouse-major-mode-menu' or `mouse-popup-menubar'.
281 Use the former if the menu bar is showing, otherwise the latter."
282 (interactive "@e\nP")
283 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook)
284 (popup-menu
285 (if (zerop (or (frame-parameter nil 'menu-bar-lines) 0))
286 (mouse-menu-bar-map)
287 (mouse-menu-major-mode-map))
288 event prefix))
289 (make-obsolete 'mouse-popup-menubar-stuff nil "23.1")
291 ;; Commands that operate on windows.
293 (defun mouse-minibuffer-check (event)
294 (let ((w (posn-window (event-start event))))
295 (and (window-minibuffer-p w)
296 (not (minibuffer-window-active-p w))
297 (error "Minibuffer window is not active")))
298 ;; Give temporary modes such as isearch a chance to turn off.
299 (run-hooks 'mouse-leave-buffer-hook))
301 (defun mouse-delete-window (click)
302 "Delete the window you click on.
303 Do nothing if the frame has just one window.
304 This command must be bound to a mouse click."
305 (interactive "e")
306 (unless (one-window-p t)
307 (mouse-minibuffer-check click)
308 (delete-window (posn-window (event-start click)))))
310 (defun mouse-select-window (click)
311 "Select the window clicked on; don't move point."
312 (interactive "e")
313 (mouse-minibuffer-check click)
314 (let ((oframe (selected-frame))
315 (frame (window-frame (posn-window (event-start click)))))
316 (select-window (posn-window (event-start click)))
317 (raise-frame frame)
318 (select-frame frame)
319 (or (eq frame oframe)
320 (set-mouse-position (selected-frame) (1- (frame-width)) 0))))
322 (defun mouse-tear-off-window (click)
323 "Delete the window clicked on, and create a new frame displaying its buffer."
324 (interactive "e")
325 (mouse-minibuffer-check click)
326 (let* ((window (posn-window (event-start click)))
327 (buf (window-buffer window))
328 (frame (make-frame)))
329 (select-frame frame)
330 (switch-to-buffer buf)
331 (delete-window window)))
333 (defun mouse-delete-other-windows ()
334 "Delete all windows except the one you click on."
335 (interactive "@")
336 (delete-other-windows))
338 (defun mouse-split-window-vertically (click)
339 "Select Emacs window mouse is on, then split it vertically in half.
340 The window is split at the line clicked on.
341 This command must be bound to a mouse click."
342 (interactive "@e")
343 (mouse-minibuffer-check click)
344 (let ((start (event-start click)))
345 (select-window (posn-window start))
346 (let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
347 (first-line window-min-height)
348 (last-line (- (window-height) window-min-height)))
349 (if (< last-line first-line)
350 (error "Window too short to split")
351 (split-window-vertically
352 (min (max new-height first-line) last-line))))))
354 (defun mouse-split-window-horizontally (click)
355 "Select Emacs window mouse is on, then split it horizontally in half.
356 The window is split at the column clicked on.
357 This command must be bound to a mouse click."
358 (interactive "@e")
359 (mouse-minibuffer-check click)
360 (let ((start (event-start click)))
361 (select-window (posn-window start))
362 (let ((new-width (1+ (car (posn-col-row (event-end click)))))
363 (first-col window-min-width)
364 (last-col (- (window-width) window-min-width)))
365 (if (< last-col first-col)
366 (error "Window too narrow to split")
367 (split-window-horizontally
368 (min (max new-width first-col) last-col))))))
370 (defun mouse-drag-window-above (window)
371 "Return the (or a) window directly above WINDOW.
372 That means one whose bottom edge is at the same height as WINDOW's top edge."
373 (let ((start-top (nth 1 (window-edges window)))
374 (start-left (nth 0 (window-edges window)))
375 (start-right (nth 2 (window-edges window)))
376 (start-window window)
377 above-window)
378 (setq window (previous-window window 0))
379 (while (and (not above-window) (not (eq window start-window)))
380 (let ((left (nth 0 (window-edges window)))
381 (right (nth 2 (window-edges window))))
382 (when (and (= (+ (window-height window) (nth 1 (window-edges window)))
383 start-top)
384 (or (and (<= left start-left) (<= start-right right))
385 (and (<= start-left left) (<= left start-right))
386 (and (<= start-left right) (<= right start-right))))
387 (setq above-window window)))
388 (setq window (previous-window window)))
389 above-window))
391 (defun mouse-drag-move-window-bottom (window growth)
392 "Move the bottom of WINDOW up or down by GROWTH lines.
393 Move it down if GROWTH is positive, or up if GROWTH is negative.
394 If this would make WINDOW too short,
395 shrink the window or windows above it to make room."
396 (condition-case nil
397 (adjust-window-trailing-edge window growth nil)
398 (error nil)))
400 (defsubst mouse-drag-move-window-top (window growth)
401 "Move the top of WINDOW up or down by GROWTH lines.
402 Move it down if GROWTH is positive, or up if GROWTH is negative.
403 If this would make WINDOW too short, shrink the window or windows
404 above it to make room."
405 ;; Moving the top of WINDOW is actually moving the bottom of the
406 ;; window above.
407 (let ((window-above (mouse-drag-window-above window)))
408 (and window-above
409 (mouse-drag-move-window-bottom window-above (- growth)))))
411 (defun mouse-drag-mode-line-1 (start-event mode-line-p)
412 "Change the height of a window by dragging on the mode or header line.
413 START-EVENT is the starting mouse-event of the drag action.
414 MODE-LINE-P non-nil means dragging a mode line; nil means a header line."
415 ;; Give temporary modes such as isearch a chance to turn off.
416 (run-hooks 'mouse-leave-buffer-hook)
417 (let* ((done nil)
418 (echo-keystrokes 0)
419 (start (event-start start-event))
420 (start-event-window (posn-window start))
421 (start-event-frame (window-frame start-event-window))
422 (start-nwindows (count-windows t))
423 (on-link (and mouse-1-click-follows-link
424 (or mouse-1-click-in-non-selected-windows
425 (eq (posn-window start) (selected-window)))
426 (mouse-on-link-p start)))
427 (minibuffer (frame-parameter nil 'minibuffer))
428 should-enlarge-minibuffer event mouse y top bot edges wconfig growth)
429 (track-mouse
430 (progn
431 ;; if this is the bottommost ordinary window, then to
432 ;; move its modeline the minibuffer must be enlarged.
433 (setq should-enlarge-minibuffer
434 (and minibuffer
435 mode-line-p
436 (not (one-window-p t))
437 (= (nth 1 (window-edges minibuffer))
438 (nth 3 (window-edges start-event-window)))))
440 ;; loop reading events and sampling the position of
441 ;; the mouse.
442 (while (not done)
443 (setq event (read-event)
444 mouse (mouse-position))
446 ;; do nothing if
447 ;; - there is a switch-frame event.
448 ;; - the mouse isn't in the frame that we started in
449 ;; - the mouse isn't in any Emacs frame
450 ;; drag if
451 ;; - there is a mouse-movement event
452 ;; - there is a scroll-bar-movement event
453 ;; (same as mouse movement for our purposes)
454 ;; quit if
455 ;; - there is a keyboard event or some other unknown event.
456 (cond ((not (consp event))
457 (setq done t))
459 ((memq (car event) '(switch-frame select-window))
460 nil)
462 ((not (memq (car event) '(mouse-movement scroll-bar-movement)))
463 (when (consp event)
464 ;; Do not unread a drag-mouse-1 event since it will cause the
465 ;; selection of the window above when dragging the modeline
466 ;; above the selected window.
467 (unless (eq (car event) 'drag-mouse-1)
468 (push event unread-command-events)))
469 (setq done t))
471 ((not (eq (car mouse) start-event-frame))
472 nil)
474 ((null (car (cdr mouse)))
475 nil)
478 (setq y (cdr (cdr mouse))
479 edges (window-edges start-event-window)
480 top (nth 1 edges)
481 bot (nth 3 edges))
483 ;; compute size change needed
484 (cond (mode-line-p
485 (setq growth (- y bot -1)))
486 (t ; header line
487 (when (< (- bot y) window-min-height)
488 (setq y (- bot window-min-height)))
489 ;; The window's top includes the header line!
490 (setq growth (- top y))))
491 (setq wconfig (current-window-configuration))
493 ;; Check for an error case.
494 (when (and (/= growth 0)
495 (not minibuffer)
496 (one-window-p t))
497 (error "Attempt to resize sole window"))
499 ;; If we ever move, make sure we don't mistakenly treat
500 ;; some unexpected `mouse-1' final event as a sign that
501 ;; this whole drag was nothing more than a click.
502 (if (/= growth 0) (setq on-link nil))
504 ;; grow/shrink minibuffer?
505 (if should-enlarge-minibuffer
506 (unless resize-mini-windows
507 (mouse-drag-move-window-bottom start-event-window growth))
508 ;; no. grow/shrink the selected window
509 ;(message "growth = %d" growth)
510 (if mode-line-p
511 (mouse-drag-move-window-bottom start-event-window growth)
512 (mouse-drag-move-window-top start-event-window growth)))
514 ;; if this window's growth caused another
515 ;; window to be deleted because it was too
516 ;; short, rescind the change.
518 ;; if size change caused space to be stolen
519 ;; from a window above this one, rescind the
520 ;; change, but only if we didn't grow/shrink
521 ;; the minibuffer. minibuffer size changes
522 ;; can cause all windows to shrink... no way
523 ;; around it.
524 (when (or (/= start-nwindows (count-windows t))
525 (and (not should-enlarge-minibuffer)
526 (> growth 0)
527 mode-line-p
528 (/= top
529 (nth 1 (window-edges
530 ;; Choose right window.
531 start-event-window)))))
532 (set-window-configuration wconfig)))))
534 ;; Presumably if this was just a click, the last event should
535 ;; be `mouse-1', whereas if this did move the mouse, it should be
536 ;; a `drag-mouse-1'. In any case `on-link' would have been nulled
537 ;; above if there had been any significant mouse movement.
538 (when (and on-link (eq 'mouse-1 (car-safe event)))
539 (push (cons 'mouse-2 (cdr event)) unread-command-events))))))
541 (defun mouse-drag-mode-line (start-event)
542 "Change the height of a window by dragging on the mode line."
543 (interactive "e")
544 (mouse-drag-mode-line-1 start-event t))
546 (defun mouse-drag-header-line (start-event)
547 "Change the height of a window by dragging on the header line.
548 Windows whose header-lines are at the top of the frame cannot be
549 resized by dragging their header-line."
550 (interactive "e")
551 ;; Changing the window's size by dragging its header-line when the
552 ;; header-line is at the top of the frame is somewhat strange,
553 ;; because the header-line doesn't move, so don't do it.
554 (let* ((start (event-start start-event))
555 (window (posn-window start))
556 (frame (window-frame window))
557 (first-window (frame-first-window frame)))
558 (unless (or (eq window first-window)
559 (= (nth 1 (window-edges window))
560 (nth 1 (window-edges first-window))))
561 (mouse-drag-mode-line-1 start-event nil))))
564 (defun mouse-drag-vertical-line-rightward-window (window)
565 "Return a window that is immediately to the right of WINDOW, or nil."
566 (let ((bottom (nth 3 (window-inside-edges window)))
567 (left (nth 0 (window-inside-edges window)))
568 best best-right
569 (try (previous-window window)))
570 (while (not (eq try window))
571 (let ((try-top (nth 1 (window-inside-edges try)))
572 (try-bottom (nth 3 (window-inside-edges try)))
573 (try-right (nth 2 (window-inside-edges try))))
574 (if (and (< try-top bottom)
575 (>= try-bottom bottom)
576 (< try-right left)
577 (or (null best-right) (> try-right best-right)))
578 (setq best-right try-right best try)))
579 (setq try (previous-window try)))
580 best))
582 (defun mouse-drag-vertical-line (start-event)
583 "Change the width of a window by dragging on the vertical line."
584 (interactive "e")
585 ;; Give temporary modes such as isearch a chance to turn off.
586 (run-hooks 'mouse-leave-buffer-hook)
587 (let* ((done nil)
588 (echo-keystrokes 0)
589 (start-event-frame (window-frame (car (car (cdr start-event)))))
590 (start-event-window (car (car (cdr start-event))))
591 event mouse x left right edges growth
592 (which-side
593 (or (cdr (assq 'vertical-scroll-bars (frame-parameters start-event-frame)))
594 'right)))
595 (cond
596 ((one-window-p t)
597 (error "Attempt to resize sole ordinary window"))
598 ((and (eq which-side 'right)
599 (>= (nth 2 (window-inside-edges start-event-window))
600 (frame-width start-event-frame)))
601 (error "Attempt to drag rightmost scrollbar"))
602 ((and (eq which-side 'left)
603 (= (nth 0 (window-inside-edges start-event-window)) 0))
604 (error "Attempt to drag leftmost scrollbar")))
605 (track-mouse
606 (progn
607 ;; loop reading events and sampling the position of
608 ;; the mouse.
609 (while (not done)
610 (setq event (read-event)
611 mouse (mouse-position))
612 ;; do nothing if
613 ;; - there is a switch-frame event.
614 ;; - the mouse isn't in the frame that we started in
615 ;; - the mouse isn't in any Emacs frame
616 ;; drag if
617 ;; - there is a mouse-movement event
618 ;; - there is a scroll-bar-movement event
619 ;; (same as mouse movement for our purposes)
620 ;; quit if
621 ;; - there is a keyboard event or some other unknown event
622 ;; unknown event.
623 (cond ((integerp event)
624 (setq done t))
625 ((memq (car event) '(switch-frame select-window))
626 nil)
627 ((not (memq (car event)
628 '(mouse-movement scroll-bar-movement)))
629 (if (consp event)
630 (setq unread-command-events
631 (cons event unread-command-events)))
632 (setq done t))
633 ((not (eq (car mouse) start-event-frame))
634 nil)
635 ((null (car (cdr mouse)))
636 nil)
638 (let ((window
639 ;; If the scroll bar is on the window's left,
640 ;; adjust the window on the left.
641 (if (eq which-side 'right)
642 start-event-window
643 (mouse-drag-vertical-line-rightward-window
644 start-event-window))))
645 (setq x (- (car (cdr mouse))
646 (if (eq which-side 'right) 0 2))
647 edges (window-edges window)
648 left (nth 0 edges)
649 right (nth 2 edges))
650 ;; scale back a move that would make the
651 ;; window too thin.
652 (if (< (- x left -1) window-min-width)
653 (setq x (+ left window-min-width -1)))
654 ;; compute size change needed
655 (setq growth (- x right -1))
656 (condition-case nil
657 (adjust-window-trailing-edge window growth t)
658 (error nil))))))))))
660 (defun mouse-set-point (event)
661 "Move point to the position clicked on with the mouse.
662 This should be bound to a mouse click event type."
663 (interactive "e")
664 (mouse-minibuffer-check event)
665 ;; Use event-end in case called from mouse-drag-region.
666 ;; If EVENT is a click, event-end and event-start give same value.
667 (posn-set-point (event-end event)))
669 (defvar mouse-last-region-beg nil)
670 (defvar mouse-last-region-end nil)
671 (defvar mouse-last-region-tick nil)
673 (defun mouse-region-match ()
674 "Return non-nil if there's an active region that was set with the mouse."
675 (and (mark t) mark-active
676 (eq mouse-last-region-beg (region-beginning))
677 (eq mouse-last-region-end (region-end))
678 (eq mouse-last-region-tick (buffer-modified-tick))))
680 (defun mouse-set-region (click)
681 "Set the region to the text dragged over, and copy to kill ring.
682 This should be bound to a mouse drag event."
683 (interactive "e")
684 (mouse-minibuffer-check click)
685 (select-window (posn-window (event-start click)))
686 (let ((beg (posn-point (event-start click)))
687 (end (posn-point (event-end click))))
688 (and mouse-drag-copy-region (integerp beg) (integerp end)
689 ;; Don't set this-command to `kill-region', so a following
690 ;; C-w won't double the text in the kill ring. Ignore
691 ;; `last-command' so we don't append to a preceding kill.
692 (let (this-command last-command deactivate-mark)
693 (copy-region-as-kill beg end)))
694 (if (numberp beg) (goto-char beg))
695 ;; On a text terminal, bounce the cursor.
696 (or transient-mark-mode
697 (window-system)
698 (sit-for 1))
699 (push-mark)
700 ;; If `select-active-regions' is non-nil, `set-mark' sets the
701 ;; primary selection to the buffer's region, overriding the role
702 ;; of `copy-region-as-kill'; that's why we did the copy first.
703 (set-mark (point))
704 (if (numberp end) (goto-char end))
705 (mouse-set-region-1)))
707 (defun mouse-set-region-1 ()
708 ;; Set transient-mark-mode for a little while.
709 (unless (eq (car-safe transient-mark-mode) 'only)
710 (setq transient-mark-mode
711 (cons 'only
712 (unless (eq transient-mark-mode 'lambda)
713 transient-mark-mode))))
714 (setq mouse-last-region-beg (region-beginning))
715 (setq mouse-last-region-end (region-end))
716 (setq mouse-last-region-tick (buffer-modified-tick)))
718 (defcustom mouse-scroll-delay 0.25
719 "The pause between scroll steps caused by mouse drags, in seconds.
720 If you drag the mouse beyond the edge of a window, Emacs scrolls the
721 window to bring the text beyond that edge into view, with a delay of
722 this many seconds between scroll steps. Scrolling stops when you move
723 the mouse back into the window, or release the button.
724 This variable's value may be non-integral.
725 Setting this to zero causes Emacs to scroll as fast as it can."
726 :type 'number
727 :group 'mouse)
729 (defcustom mouse-scroll-min-lines 1
730 "The minimum number of lines scrolled by dragging mouse out of window.
731 Moving the mouse out the top or bottom edge of the window begins
732 scrolling repeatedly. The number of lines scrolled per repetition
733 is normally equal to the number of lines beyond the window edge that
734 the mouse has moved. However, it always scrolls at least the number
735 of lines specified by this variable."
736 :type 'integer
737 :group 'mouse)
739 (defun mouse-scroll-subr (window jump &optional overlay start)
740 "Scroll the window WINDOW, JUMP lines at a time, until new input arrives.
741 If OVERLAY is an overlay, let it stretch from START to the far edge of
742 the newly visible text.
743 Upon exit, point is at the far edge of the newly visible text."
744 (cond
745 ((and (> jump 0) (< jump mouse-scroll-min-lines))
746 (setq jump mouse-scroll-min-lines))
747 ((and (< jump 0) (< (- jump) mouse-scroll-min-lines))
748 (setq jump (- mouse-scroll-min-lines))))
749 (let ((opoint (point)))
750 (while (progn
751 (goto-char (window-start window))
752 (if (not (zerop (vertical-motion jump window)))
753 (progn
754 (set-window-start window (point))
755 (if (natnump jump)
756 (if (window-end window)
757 (progn
758 (goto-char (window-end window))
759 ;; window-end doesn't reflect the window's new
760 ;; start position until the next redisplay.
761 (vertical-motion (1- jump) window))
762 (vertical-motion (- (window-height window) 2)))
763 (goto-char (window-start window)))
764 (if overlay
765 (move-overlay overlay start (point)))
766 ;; Now that we have scrolled WINDOW properly,
767 ;; put point back where it was for the redisplay
768 ;; so that we don't mess up the selected window.
769 (or (eq window (selected-window))
770 (goto-char opoint))
771 (sit-for mouse-scroll-delay)))))
772 (or (eq window (selected-window))
773 (goto-char opoint))))
775 (defvar mouse-selection-click-count 0)
777 (defvar mouse-selection-click-count-buffer nil)
779 (defun mouse-drag-region (start-event)
780 "Set the region to the text that the mouse is dragged over.
781 Highlight the drag area as you move the mouse.
782 This must be bound to a button-down mouse event.
783 In Transient Mark mode, the highlighting remains as long as the mark
784 remains active. Otherwise, it remains until the next input event.
786 If the click is in the echo area, display the `*Messages*' buffer."
787 (interactive "e")
788 (let ((w (posn-window (event-start start-event))))
789 (if (and (window-minibuffer-p w)
790 (not (minibuffer-window-active-p w)))
791 (save-excursion
792 ;; Swallow the up-event.
793 (read-event)
794 (set-buffer (get-buffer-create "*Messages*"))
795 (goto-char (point-max))
796 (display-buffer (current-buffer)))
797 ;; Give temporary modes such as isearch a chance to turn off.
798 (run-hooks 'mouse-leave-buffer-hook)
799 (mouse-drag-track start-event t))))
802 (defun mouse-posn-property (pos property)
803 "Look for a property at click position.
804 POS may be either a buffer position or a click position like
805 those returned from `event-start'. If the click position is on
806 a string, the text property PROPERTY is examined.
807 If this is nil or the click is not on a string, then
808 the corresponding buffer position is searched for PROPERTY.
809 If PROPERTY is encountered in one of those places,
810 its value is returned."
811 (if (consp pos)
812 (let ((w (posn-window pos)) (pt (posn-point pos))
813 (str (posn-string pos)))
814 (or (and str
815 (get-text-property (cdr str) property (car str)))
816 (and pt
817 (get-char-property pt property w))))
818 (get-char-property pos property)))
820 (defun mouse-on-link-p (pos)
821 "Return non-nil if POS is on a link in the current buffer.
822 POS must be a buffer position in the current buffer or a mouse
823 event location in the selected window (see `event-start').
824 However, if `mouse-1-click-in-non-selected-windows' is non-nil,
825 POS may be a mouse event location in any window.
827 A clickable link is identified by one of the following methods:
829 - If the character at POS has a non-nil `follow-link' text or
830 overlay property, the value of that property determines what to do.
832 - If there is a local key-binding or a keybinding at position POS
833 for the `follow-link' event, the binding of that event determines
834 what to do.
836 The resulting value determine whether POS is inside a link:
838 - If the value is `mouse-face', POS is inside a link if there
839 is a non-nil `mouse-face' property at POS. Return t in this case.
841 - If the value is a function, FUNC, POS is inside a link if
842 the call \(FUNC POS) returns non-nil. Return the return value
843 from that call. Arg is \(posn-point POS) if POS is a mouse event.
845 - Otherwise, return the value itself.
847 The return value is interpreted as follows:
849 - If it is a string, the mouse-1 event is translated into the
850 first character of the string, i.e. the action of the mouse-1
851 click is the local or global binding of that character.
853 - If it is a vector, the mouse-1 event is translated into the
854 first element of that vector, i.e. the action of the mouse-1
855 click is the local or global binding of that event.
857 - Otherwise, the mouse-1 event is translated into a mouse-2 event
858 at the same position."
859 (let ((action
860 (and (or (not (consp pos))
861 mouse-1-click-in-non-selected-windows
862 (eq (selected-window) (posn-window pos)))
863 (or (mouse-posn-property pos 'follow-link)
864 (key-binding [follow-link] nil t pos)))))
865 (cond
866 ((eq action 'mouse-face)
867 (and (mouse-posn-property pos 'mouse-face) t))
868 ((functionp action)
869 ;; FIXME: This seems questionable if the click is not in a buffer.
870 ;; Should we instead decide that `action' takes a `posn'?
871 (if (consp pos)
872 (with-current-buffer (window-buffer (posn-window pos))
873 (funcall action (posn-point pos)))
874 (funcall action pos)))
875 (t action))))
877 (defun mouse-fixup-help-message (msg)
878 "Fix help message MSG for `mouse-1-click-follows-link'."
879 (let (mp pos)
880 (if (and mouse-1-click-follows-link
881 (stringp msg)
882 (save-match-data
883 (string-match "^mouse-2" msg))
884 (setq mp (mouse-pixel-position))
885 (consp (setq pos (cdr mp)))
886 (car pos) (>= (car pos) 0)
887 (cdr pos) (>= (cdr pos) 0)
888 (setq pos (posn-at-x-y (car pos) (cdr pos) (car mp)))
889 (windowp (posn-window pos)))
890 (with-current-buffer (window-buffer (posn-window pos))
891 (if (mouse-on-link-p pos)
892 (setq msg (concat
893 (cond
894 ((eq mouse-1-click-follows-link 'double) "double-")
895 ((and (integerp mouse-1-click-follows-link)
896 (< mouse-1-click-follows-link 0)) "Long ")
897 (t ""))
898 "mouse-1" (substring msg 7)))))))
899 msg)
901 (defun mouse-drag-track (start-event &optional
902 do-mouse-drag-region-post-process)
903 "Track mouse drags by highlighting area between point and cursor.
904 The region will be defined with mark and point.
905 DO-MOUSE-DRAG-REGION-POST-PROCESS should only be used by
906 `mouse-drag-region'."
907 (mouse-minibuffer-check start-event)
908 (setq mouse-selection-click-count-buffer (current-buffer))
909 ;; We must call deactivate-mark before repositioning point.
910 ;; Otherwise, for `select-active-regions' non-nil, we get the wrong
911 ;; selection if the user drags a region, clicks elsewhere to
912 ;; reposition point, then middle-clicks to paste the selection.
913 (deactivate-mark)
914 (let* ((original-window (selected-window))
915 ;; We've recorded what we needed from the current buffer and
916 ;; window, now let's jump to the place of the event, where things
917 ;; are happening.
918 (_ (mouse-set-point start-event))
919 (echo-keystrokes 0)
920 (start-posn (event-start start-event))
921 (start-point (posn-point start-posn))
922 (start-window (posn-window start-posn))
923 (start-window-start (window-start start-window))
924 (start-hscroll (window-hscroll start-window))
925 (bounds (window-edges start-window))
926 (make-cursor-line-fully-visible nil)
927 (top (nth 1 bounds))
928 (bottom (if (window-minibuffer-p start-window)
929 (nth 3 bounds)
930 ;; Don't count the mode line.
931 (1- (nth 3 bounds))))
932 (on-link (and mouse-1-click-follows-link
933 (or mouse-1-click-in-non-selected-windows
934 (eq start-window original-window))
935 ;; Use start-point before the intangibility
936 ;; treatment, in case we click on a link inside an
937 ;; intangible text.
938 (mouse-on-link-p start-posn)))
939 (click-count (1- (event-click-count start-event)))
940 ;; Suppress automatic hscrolling, because that is a nuisance
941 ;; when setting point near the right fringe (but see below).
942 (automatic-hscrolling-saved automatic-hscrolling)
943 (automatic-hscrolling nil)
944 event end end-point)
946 (setq mouse-selection-click-count click-count)
947 ;; In case the down click is in the middle of some intangible text,
948 ;; use the end of that text, and put it in START-POINT.
949 (if (< (point) start-point)
950 (goto-char start-point))
951 (setq start-point (point))
953 ;; Activate the region, using `mouse-start-end' to determine where
954 ;; to put point and mark (e.g., double-click will select a word).
955 (setq transient-mark-mode
956 (if (eq transient-mark-mode 'lambda)
957 '(only)
958 (cons 'only transient-mark-mode)))
959 (let ((range (mouse-start-end start-point start-point click-count))
960 ;; Prevent `push-mark' from clobbering the primary selection
961 ;; if the user clicks without dragging.
962 (select-active-regions nil))
963 (goto-char (nth 0 range))
964 (push-mark nil t t)
965 (goto-char (nth 1 range)))
967 ;; Track the mouse until we get a non-movement event.
968 (track-mouse
969 (while (progn
970 (setq event (read-event))
971 (or (mouse-movement-p event)
972 (memq (car-safe event) '(switch-frame select-window))))
973 (unless (memq (car-safe event) '(switch-frame select-window))
974 ;; Automatic hscrolling did not occur during the call to
975 ;; `read-event'; but if the user subsequently drags the
976 ;; mouse, go ahead and hscroll.
977 (let ((automatic-hscrolling automatic-hscrolling-saved))
978 (redisplay))
979 (setq end (event-end event)
980 end-point (posn-point end))
981 (if (and (eq (posn-window end) start-window)
982 (integer-or-marker-p end-point))
983 ;; If moving in the original window, move point by going
984 ;; to start first, so that if end is in intangible text,
985 ;; point jumps away from start. Don't do it if
986 ;; start=end, or a single click would select a region if
987 ;; it's on intangible text.
988 (unless (= start-point end-point)
989 (goto-char start-point)
990 (goto-char end-point))
991 (let ((mouse-row (cdr (cdr (mouse-position)))))
992 (cond
993 ((null mouse-row))
994 ((< mouse-row top)
995 (mouse-scroll-subr start-window (- mouse-row top)
996 nil start-point))
997 ((>= mouse-row bottom)
998 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
999 nil start-point))))))))
1001 ;; Handle the terminating event if possible.
1002 (when (consp event)
1003 ;; Ensure that point is on the end of the last event.
1004 (when (and (setq end-point (posn-point (event-end event)))
1005 (eq (posn-window end) start-window)
1006 (integer-or-marker-p end-point)
1007 (/= start-point end-point))
1008 (goto-char start-point)
1009 (goto-char end-point))
1010 ;; Find its binding.
1011 (let* ((fun (key-binding (vector (car event))))
1012 (do-multi-click (and (> (event-click-count event) 0)
1013 (functionp fun)
1014 (not (memq fun '(mouse-set-point
1015 mouse-set-region))))))
1016 (if (and (/= (mark) (point))
1017 (not do-multi-click))
1019 ;; If point has moved, finish the drag.
1020 (let* (last-command this-command)
1021 ;; Copy the region so that `select-active-regions' can
1022 ;; override `copy-region-as-kill'.
1023 (and mouse-drag-copy-region
1024 do-mouse-drag-region-post-process
1025 (let (deactivate-mark)
1026 (copy-region-as-kill (mark) (point))))
1027 ;; For `select-active-regions' non-nil, ensure that
1028 ;; further alterations of the region (e.g. via
1029 ;; shift-selection) continue to update PRIMARY.
1030 (select-active-region))
1032 ;; If point hasn't moved, run the binding of the
1033 ;; terminating up-event.
1034 (if do-multi-click
1035 (goto-char start-point)
1036 (let (select-active-regions)
1037 (deactivate-mark)))
1038 (when (and (functionp fun)
1039 (= start-hscroll (window-hscroll start-window))
1040 ;; Don't run the up-event handler if the window
1041 ;; start changed in a redisplay after the
1042 ;; mouse-set-point for the down-mouse event at
1043 ;; the beginning of this function. When the
1044 ;; window start has changed, the up-mouse event
1045 ;; contains a different position due to the new
1046 ;; window contents, and point is set again.
1047 (or end-point
1048 (= (window-start start-window)
1049 start-window-start)))
1050 (when (and on-link
1051 (= start-point (point))
1052 (mouse--remap-link-click-p start-event event))
1053 ;; If we rebind to mouse-2, reselect previous selected
1054 ;; window, so that the mouse-2 event runs in the same
1055 ;; situation as if user had clicked it directly. Fixes
1056 ;; the bug reported by juri@jurta.org on 2005-12-27.
1057 (if (or (vectorp on-link) (stringp on-link))
1058 (setq event (aref on-link 0))
1059 (select-window original-window)
1060 (setcar event 'mouse-2)
1061 ;; If this mouse click has never been done by the
1062 ;; user, it doesn't have the necessary property to be
1063 ;; interpreted correctly.
1064 (put 'mouse-2 'event-kind 'mouse-click)))
1065 (push event unread-command-events)))))))
1067 (defun mouse--remap-link-click-p (start-event end-event)
1068 (or (and (eq mouse-1-click-follows-link 'double)
1069 (= (event-click-count start-event) 2))
1070 (and
1071 (not (eq mouse-1-click-follows-link 'double))
1072 (= (event-click-count start-event) 1)
1073 (= (event-click-count end-event) 1)
1074 (or (not (integerp mouse-1-click-follows-link))
1075 (let ((t0 (posn-timestamp (event-start start-event)))
1076 (t1 (posn-timestamp (event-end end-event))))
1077 (and (integerp t0) (integerp t1)
1078 (if (> mouse-1-click-follows-link 0)
1079 (<= (- t1 t0) mouse-1-click-follows-link)
1080 (< (- t0 t1) mouse-1-click-follows-link))))))))
1083 ;; Commands to handle xterm-style multiple clicks.
1084 (defun mouse-skip-word (dir)
1085 "Skip over word, over whitespace, or over identical punctuation.
1086 If DIR is positive skip forward; if negative, skip backward."
1087 (let* ((char (following-char))
1088 (syntax (char-to-string (char-syntax char))))
1089 (cond ((string= syntax "w")
1090 ;; Here, we can't use skip-syntax-forward/backward because
1091 ;; they don't pay attention to word-separating-categories,
1092 ;; and thus they will skip over a true word boundary. So,
1093 ;; we simulate the original behavior by using forward-word.
1094 (if (< dir 0)
1095 (if (not (looking-at "\\<"))
1096 (forward-word -1))
1097 (if (or (looking-at "\\<") (not (looking-at "\\>")))
1098 (forward-word 1))))
1099 ((string= syntax " ")
1100 (if (< dir 0)
1101 (skip-syntax-backward syntax)
1102 (skip-syntax-forward syntax)))
1103 ((string= syntax "_")
1104 (if (< dir 0)
1105 (skip-syntax-backward "w_")
1106 (skip-syntax-forward "w_")))
1107 ((< dir 0)
1108 (while (and (not (bobp)) (= (preceding-char) char))
1109 (forward-char -1)))
1111 (while (and (not (eobp)) (= (following-char) char))
1112 (forward-char 1))))))
1114 (defun mouse-start-end (start end mode)
1115 "Return a list of region bounds based on START and END according to MODE.
1116 If MODE is 0 then set point to (min START END), mark to (max START END).
1117 If MODE is 1 then set point to start of word at (min START END),
1118 mark to end of word at (max START END).
1119 If MODE is 2 then do the same for lines."
1120 (if (> start end)
1121 (let ((temp start))
1122 (setq start end
1123 end temp)))
1124 (setq mode (mod mode 3))
1125 (cond ((= mode 0)
1126 (list start end))
1127 ((and (= mode 1)
1128 (= start end)
1129 (char-after start)
1130 (= (char-syntax (char-after start)) ?\())
1131 (list start
1132 (save-excursion
1133 (goto-char start)
1134 (forward-sexp 1)
1135 (point))))
1136 ((and (= mode 1)
1137 (= start end)
1138 (char-after start)
1139 (= (char-syntax (char-after start)) ?\)))
1140 (list (save-excursion
1141 (goto-char (1+ start))
1142 (backward-sexp 1)
1143 (point))
1144 (1+ start)))
1145 ((and (= mode 1)
1146 (= start end)
1147 (char-after start)
1148 (= (char-syntax (char-after start)) ?\"))
1149 (let ((open (or (eq start (point-min))
1150 (save-excursion
1151 (goto-char (- start 1))
1152 (looking-at "\\s(\\|\\s \\|\\s>")))))
1153 (if open
1154 (list start
1155 (save-excursion
1156 (condition-case nil
1157 (progn
1158 (goto-char start)
1159 (forward-sexp 1)
1160 (point))
1161 (error end))))
1162 (list (save-excursion
1163 (condition-case nil
1164 (progn
1165 (goto-char (1+ start))
1166 (backward-sexp 1)
1167 (point))
1168 (error end)))
1169 (1+ start)))))
1170 ((= mode 1)
1171 (list (save-excursion
1172 (goto-char start)
1173 (mouse-skip-word -1)
1174 (point))
1175 (save-excursion
1176 (goto-char end)
1177 (mouse-skip-word 1)
1178 (point))))
1179 ((= mode 2)
1180 (list (save-excursion
1181 (goto-char start)
1182 (beginning-of-line 1)
1183 (point))
1184 (save-excursion
1185 (goto-char end)
1186 (forward-line 1)
1187 (point))))))
1189 ;; Subroutine: set the mark where CLICK happened,
1190 ;; but don't do anything else.
1191 (defun mouse-set-mark-fast (click)
1192 (mouse-minibuffer-check click)
1193 (let ((posn (event-start click)))
1194 (select-window (posn-window posn))
1195 (if (numberp (posn-point posn))
1196 (push-mark (posn-point posn) t t))))
1198 (defun mouse-undouble-last-event (events)
1199 (let* ((index (1- (length events)))
1200 (last (nthcdr index events))
1201 (event (car last))
1202 (basic (event-basic-type event))
1203 (old-modifiers (event-modifiers event))
1204 (modifiers (delq 'double (delq 'triple (copy-sequence old-modifiers))))
1205 (new
1206 (if (consp event)
1207 ;; Use reverse, not nreverse, since event-modifiers
1208 ;; does not copy the list it returns.
1209 (cons (event-convert-list (reverse (cons basic modifiers)))
1210 (cdr event))
1211 event)))
1212 (setcar last new)
1213 (if (and (not (equal modifiers old-modifiers))
1214 (key-binding (apply 'vector events)))
1216 (setcar last event)
1217 nil)))
1219 ;; Momentarily show where the mark is, if highlighting doesn't show it.
1221 (defun mouse-set-mark (click)
1222 "Set mark at the position clicked on with the mouse.
1223 Display cursor at that position for a second.
1224 This must be bound to a mouse click."
1225 (interactive "e")
1226 (mouse-minibuffer-check click)
1227 (select-window (posn-window (event-start click)))
1228 ;; We don't use save-excursion because that preserves the mark too.
1229 (let ((point-save (point)))
1230 (unwind-protect
1231 (progn (mouse-set-point click)
1232 (push-mark nil t t)
1233 (or transient-mark-mode
1234 (sit-for 1)))
1235 (goto-char point-save))))
1237 (defun mouse-kill (click)
1238 "Kill the region between point and the mouse click.
1239 The text is saved in the kill ring, as with \\[kill-region]."
1240 (interactive "e")
1241 (mouse-minibuffer-check click)
1242 (let* ((posn (event-start click))
1243 (click-posn (posn-point posn)))
1244 (select-window (posn-window posn))
1245 (if (numberp click-posn)
1246 (kill-region (min (point) click-posn)
1247 (max (point) click-posn)))))
1249 (defun mouse-yank-at-click (click arg)
1250 "Insert the last stretch of killed text at the position clicked on.
1251 Also move point to one end of the text thus inserted (normally the end),
1252 and set mark at the beginning.
1253 Prefix arguments are interpreted as with \\[yank].
1254 If `mouse-yank-at-point' is non-nil, insert at point
1255 regardless of where you click.
1256 If `select-active-regions' is non-nil, the mark is deactivated
1257 before inserting the text."
1258 (interactive "e\nP")
1259 ;; Give temporary modes such as isearch a chance to turn off.
1260 (run-hooks 'mouse-leave-buffer-hook)
1261 (when select-active-regions
1262 ;; Without this, confusing things happen upon e.g. inserting into
1263 ;; the middle of an active region.
1264 (deactivate-mark))
1265 (or mouse-yank-at-point (mouse-set-point click))
1266 (setq this-command 'yank)
1267 (setq mouse-selection-click-count 0)
1268 (yank arg))
1270 (defun mouse-yank-primary (click)
1271 "Insert the primary selection at the position clicked on.
1272 Move point to the end of the inserted text.
1273 If `mouse-yank-at-point' is non-nil, insert at point
1274 regardless of where you click."
1275 (interactive "e")
1276 ;; Give temporary modes such as isearch a chance to turn off.
1277 (run-hooks 'mouse-leave-buffer-hook)
1278 (when select-active-regions
1279 ;; Without this, confusing things happen upon e.g. inserting into
1280 ;; the middle of an active region.
1281 (deactivate-mark))
1282 (or mouse-yank-at-point (mouse-set-point click))
1283 (let ((primary (x-get-selection 'PRIMARY)))
1284 (if primary
1285 (insert primary)
1286 (error "No primary selection"))))
1288 (defun mouse-kill-ring-save (click)
1289 "Copy the region between point and the mouse click in the kill ring.
1290 This does not delete the region; it acts like \\[kill-ring-save]."
1291 (interactive "e")
1292 (mouse-set-mark-fast click)
1293 (let (this-command last-command)
1294 (kill-ring-save (point) (mark t))))
1296 ;; This function used to delete the text between point and the mouse
1297 ;; whenever it was equal to the front of the kill ring, but some
1298 ;; people found that confusing.
1300 ;; A list (TEXT START END), describing the text and position of the last
1301 ;; invocation of mouse-save-then-kill.
1302 (defvar mouse-save-then-kill-posn nil)
1304 (defun mouse-save-then-kill-delete-region (beg end)
1305 ;; We must make our own undo boundaries
1306 ;; because they happen automatically only for the current buffer.
1307 (undo-boundary)
1308 (if (or (= beg end) (eq buffer-undo-list t))
1309 ;; If we have no undo list in this buffer,
1310 ;; just delete.
1311 (delete-region beg end)
1312 ;; Delete, but make the undo-list entry share with the kill ring.
1313 ;; First, delete just one char, so in case buffer is being modified
1314 ;; for the first time, the undo list records that fact.
1315 (let (before-change-functions after-change-functions)
1316 (delete-region beg
1317 (+ beg (if (> end beg) 1 -1))))
1318 (let ((buffer-undo-list buffer-undo-list))
1319 ;; Undo that deletion--but don't change the undo list!
1320 (let (before-change-functions after-change-functions)
1321 (primitive-undo 1 buffer-undo-list))
1322 ;; Now delete the rest of the specified region,
1323 ;; but don't record it.
1324 (setq buffer-undo-list t)
1325 (if (/= (length (car kill-ring)) (- (max end beg) (min end beg)))
1326 (error "Lossage in mouse-save-then-kill-delete-region"))
1327 (delete-region beg end))
1328 (let ((tail buffer-undo-list))
1329 ;; Search back in buffer-undo-list for the string
1330 ;; that came from deleting one character.
1331 (while (and tail (not (stringp (car (car tail)))))
1332 (setq tail (cdr tail)))
1333 ;; Replace it with an entry for the entire deleted text.
1334 (and tail
1335 (setcar tail (cons (car kill-ring) (min beg end))))))
1336 (undo-boundary))
1338 (defun mouse-save-then-kill (click)
1339 "Save text to point in kill ring; the second time, kill the text.
1340 If the text between point and the mouse is the same as what's
1341 at the front of the kill ring, this deletes the text.
1342 Otherwise, it adds the text to the kill ring, like \\[kill-ring-save],
1343 which prepares for a second click to delete the text.
1345 If you have selected words or lines, this command extends the
1346 selection through the word or line clicked on. If you do this
1347 again in a different position, it extends the selection again.
1348 If you do this twice in the same position, the selection is killed."
1349 (interactive "e")
1350 (let ((before-scroll
1351 (with-current-buffer (window-buffer (posn-window (event-start click)))
1352 point-before-scroll)))
1353 (mouse-minibuffer-check click)
1354 (let ((click-posn (posn-point (event-start click)))
1355 ;; Don't let a subsequent kill command append to this one:
1356 ;; prevent setting this-command to kill-region.
1357 (this-command this-command))
1358 (if (and (with-current-buffer
1359 (window-buffer (posn-window (event-start click)))
1360 (and (mark t) (> (mod mouse-selection-click-count 3) 0)
1361 ;; Don't be fooled by a recent click in some other buffer.
1362 (eq mouse-selection-click-count-buffer
1363 (current-buffer)))))
1364 (if (not (and (eq last-command 'mouse-save-then-kill)
1365 (equal click-posn
1366 (car (cdr-safe (cdr-safe mouse-save-then-kill-posn))))))
1367 ;; Find both ends of the object selected by this click.
1368 (let* ((range
1369 (mouse-start-end click-posn click-posn
1370 mouse-selection-click-count)))
1371 ;; Move whichever end is closer to the click.
1372 ;; That's what xterm does, and it seems reasonable.
1373 (if (< (abs (- click-posn (mark t)))
1374 (abs (- click-posn (point))))
1375 (set-mark (car range))
1376 (goto-char (nth 1 range)))
1377 ;; We have already put the old region in the kill ring.
1378 ;; Replace it with the extended region.
1379 ;; (It would be annoying to make a separate entry.)
1380 (kill-new (buffer-substring (point) (mark t)) t)
1381 (mouse-set-region-1)
1382 ;; Arrange for a repeated mouse-3 to kill this region.
1383 (setq mouse-save-then-kill-posn
1384 (list (car kill-ring) (point) click-posn)))
1385 ;; If we click this button again without moving it,
1386 ;; that time kill.
1387 (mouse-save-then-kill-delete-region (mark) (point))
1388 (setq mouse-selection-click-count 0)
1389 (setq mouse-save-then-kill-posn nil))
1390 (if (and (eq last-command 'mouse-save-then-kill)
1391 mouse-save-then-kill-posn
1392 (eq (car mouse-save-then-kill-posn) (car kill-ring))
1393 (equal (cdr mouse-save-then-kill-posn) (list (point) click-posn)))
1394 ;; If this is the second time we've called
1395 ;; mouse-save-then-kill, delete the text from the buffer.
1396 (progn
1397 (mouse-save-then-kill-delete-region (point) (mark))
1398 ;; After we kill, another click counts as "the first time".
1399 (setq mouse-save-then-kill-posn nil))
1400 ;; This is not a repetition.
1401 ;; We are adjusting an old selection or creating a new one.
1402 (if (or (and (eq last-command 'mouse-save-then-kill)
1403 mouse-save-then-kill-posn)
1404 (and mark-active transient-mark-mode)
1405 (and (memq last-command
1406 '(mouse-drag-region mouse-set-region))
1407 (or mark-even-if-inactive
1408 (not transient-mark-mode))))
1409 ;; We have a selection or suitable region, so adjust it.
1410 (let* ((posn (event-start click))
1411 (new (posn-point posn)))
1412 (select-window (posn-window posn))
1413 (if (numberp new)
1414 (progn
1415 ;; Move whichever end of the region is closer to the click.
1416 ;; That is what xterm does, and it seems reasonable.
1417 (if (<= (abs (- new (point))) (abs (- new (mark t))))
1418 (goto-char new)
1419 (set-mark new))
1420 (setq deactivate-mark nil)))
1421 (kill-new (buffer-substring (point) (mark t)) t))
1422 ;; Set the mark where point is, then move where clicked.
1423 (mouse-set-mark-fast click)
1424 (if before-scroll
1425 (goto-char before-scroll))
1426 (exchange-point-and-mark) ;Why??? --Stef
1427 (kill-new (buffer-substring (point) (mark t))))
1428 (mouse-set-region-1)
1429 (setq mouse-save-then-kill-posn
1430 (list (car kill-ring) (point) click-posn)))))))
1432 (global-set-key [M-mouse-1] 'mouse-start-secondary)
1433 (global-set-key [M-drag-mouse-1] 'mouse-set-secondary)
1434 (global-set-key [M-down-mouse-1] 'mouse-drag-secondary)
1435 (global-set-key [M-mouse-3] 'mouse-secondary-save-then-kill)
1436 (global-set-key [M-mouse-2] 'mouse-yank-secondary)
1438 (defconst mouse-secondary-overlay
1439 (let ((ol (make-overlay (point-min) (point-min))))
1440 (delete-overlay ol)
1441 (overlay-put ol 'face 'secondary-selection)
1443 "An overlay which records the current secondary selection.
1444 It is deleted when there is no secondary selection.")
1446 (defvar mouse-secondary-click-count 0)
1448 ;; A marker which records the specified first end for a secondary selection.
1449 ;; May be nil.
1450 (defvar mouse-secondary-start nil)
1452 (defun mouse-start-secondary (click)
1453 "Set one end of the secondary selection to the position clicked on.
1454 Use \\[mouse-secondary-save-then-kill] to set the other end
1455 and complete the secondary selection."
1456 (interactive "e")
1457 (mouse-minibuffer-check click)
1458 (let ((posn (event-start click)))
1459 (with-current-buffer (window-buffer (posn-window posn))
1460 ;; Cancel any preexisting secondary selection.
1461 (delete-overlay mouse-secondary-overlay)
1462 (if (numberp (posn-point posn))
1463 (progn
1464 (or mouse-secondary-start
1465 (setq mouse-secondary-start (make-marker)))
1466 (move-marker mouse-secondary-start (posn-point posn)))))))
1468 (defun mouse-set-secondary (click)
1469 "Set the secondary selection to the text that the mouse is dragged over.
1470 This must be bound to a mouse drag event."
1471 (interactive "e")
1472 (mouse-minibuffer-check click)
1473 (let ((posn (event-start click))
1475 (end (event-end click)))
1476 (with-current-buffer (window-buffer (posn-window posn))
1477 (if (numberp (posn-point posn))
1478 (setq beg (posn-point posn)))
1479 (move-overlay mouse-secondary-overlay beg (posn-point end))
1480 (x-set-selection
1481 'SECONDARY
1482 (buffer-substring (overlay-start mouse-secondary-overlay)
1483 (overlay-end mouse-secondary-overlay))))))
1485 (defun mouse-drag-secondary (start-event)
1486 "Set the secondary selection to the text that the mouse is dragged over.
1487 Highlight the drag area as you move the mouse.
1488 This must be bound to a button-down mouse event.
1489 The function returns a non-nil value if it creates a secondary selection."
1490 (interactive "e")
1491 (mouse-minibuffer-check start-event)
1492 (let* ((echo-keystrokes 0)
1493 (start-posn (event-start start-event))
1494 (start-point (posn-point start-posn))
1495 (start-window (posn-window start-posn))
1496 (bounds (window-edges start-window))
1497 (top (nth 1 bounds))
1498 (bottom (if (window-minibuffer-p start-window)
1499 (nth 3 bounds)
1500 ;; Don't count the mode line.
1501 (1- (nth 3 bounds))))
1502 (click-count (1- (event-click-count start-event))))
1503 (with-current-buffer (window-buffer start-window)
1504 (setq mouse-secondary-click-count click-count)
1505 (if (> (mod click-count 3) 0)
1506 ;; Double or triple press: make an initial selection
1507 ;; of one word or line.
1508 (let ((range (mouse-start-end start-point start-point click-count)))
1509 (set-marker mouse-secondary-start nil)
1510 ;; Why the double move? --Stef
1511 ;; (move-overlay mouse-secondary-overlay 1 1
1512 ;; (window-buffer start-window))
1513 (move-overlay mouse-secondary-overlay (car range) (nth 1 range)
1514 (window-buffer start-window)))
1515 ;; Single-press: cancel any preexisting secondary selection.
1516 (or mouse-secondary-start
1517 (setq mouse-secondary-start (make-marker)))
1518 (set-marker mouse-secondary-start start-point)
1519 (delete-overlay mouse-secondary-overlay))
1520 (let (event end end-point)
1521 (track-mouse
1522 (while (progn
1523 (setq event (read-event))
1524 (or (mouse-movement-p event)
1525 (memq (car-safe event) '(switch-frame select-window))))
1527 (if (memq (car-safe event) '(switch-frame select-window))
1529 (setq end (event-end event)
1530 end-point (posn-point end))
1531 (cond
1532 ;; Are we moving within the original window?
1533 ((and (eq (posn-window end) start-window)
1534 (integer-or-marker-p end-point))
1535 (let ((range (mouse-start-end start-point end-point
1536 click-count)))
1537 (if (or (/= start-point end-point)
1538 (null (marker-position mouse-secondary-start)))
1539 (progn
1540 (set-marker mouse-secondary-start nil)
1541 (move-overlay mouse-secondary-overlay
1542 (car range) (nth 1 range))))))
1544 (let ((mouse-row (cdr (cdr (mouse-position)))))
1545 (cond
1546 ((null mouse-row))
1547 ((< mouse-row top)
1548 (mouse-scroll-subr start-window (- mouse-row top)
1549 mouse-secondary-overlay start-point))
1550 ((>= mouse-row bottom)
1551 (mouse-scroll-subr start-window (1+ (- mouse-row bottom))
1552 mouse-secondary-overlay start-point)))))))))
1554 (if (consp event)
1555 (if (marker-position mouse-secondary-start)
1556 (save-window-excursion
1557 (delete-overlay mouse-secondary-overlay)
1558 (x-set-selection 'SECONDARY nil)
1559 (select-window start-window)
1560 (save-excursion
1561 (goto-char mouse-secondary-start)
1562 (sit-for 1)
1563 nil))
1564 (x-set-selection
1565 'SECONDARY
1566 (buffer-substring (overlay-start mouse-secondary-overlay)
1567 (overlay-end mouse-secondary-overlay)))))))))
1569 (defun mouse-yank-secondary (click)
1570 "Insert the secondary selection at the position clicked on.
1571 Move point to the end of the inserted text.
1572 If `mouse-yank-at-point' is non-nil, insert at point
1573 regardless of where you click."
1574 (interactive "e")
1575 ;; Give temporary modes such as isearch a chance to turn off.
1576 (run-hooks 'mouse-leave-buffer-hook)
1577 (or mouse-yank-at-point (mouse-set-point click))
1578 (let ((secondary (x-get-selection 'SECONDARY)))
1579 (if secondary
1580 (insert secondary)
1581 (error "No secondary selection"))))
1583 (defun mouse-kill-secondary ()
1584 "Kill the text in the secondary selection.
1585 This is intended more as a keyboard command than as a mouse command
1586 but it can work as either one.
1588 The current buffer (in case of keyboard use), or the buffer clicked on,
1589 must be the one that the secondary selection is in. This requirement
1590 is to prevent accidents."
1591 (interactive)
1592 (let* ((keys (this-command-keys))
1593 (click (elt keys (1- (length keys)))))
1594 (or (eq (overlay-buffer mouse-secondary-overlay)
1595 (if (listp click)
1596 (window-buffer (posn-window (event-start click)))
1597 (current-buffer)))
1598 (error "Select or click on the buffer where the secondary selection is")))
1599 (let (this-command)
1600 (with-current-buffer (overlay-buffer mouse-secondary-overlay)
1601 (kill-region (overlay-start mouse-secondary-overlay)
1602 (overlay-end mouse-secondary-overlay))))
1603 (delete-overlay mouse-secondary-overlay))
1605 (defun mouse-secondary-save-then-kill (click)
1606 "Save text to point in kill ring; the second time, kill the text.
1607 You must use this in a buffer where you have recently done \\[mouse-start-secondary].
1608 If the text between where you did \\[mouse-start-secondary] and where
1609 you use this command matches the text at the front of the kill ring,
1610 this command deletes the text.
1611 Otherwise, it adds the text to the kill ring, like \\[kill-ring-save],
1612 which prepares for a second click with this command to delete the text.
1614 If you have already made a secondary selection in that buffer,
1615 this command extends or retracts the selection to where you click.
1616 If you do this again in a different position, it extends or retracts
1617 again. If you do this twice in the same position, it kills the selection."
1618 (interactive "e")
1619 (mouse-minibuffer-check click)
1620 (let ((posn (event-start click))
1621 (click-posn (posn-point (event-start click)))
1622 ;; Don't let a subsequent kill command append to this one:
1623 ;; prevent setting this-command to kill-region.
1624 (this-command this-command))
1625 (or (eq (window-buffer (posn-window posn))
1626 (or (overlay-buffer mouse-secondary-overlay)
1627 (if mouse-secondary-start
1628 (marker-buffer mouse-secondary-start))))
1629 (error "Wrong buffer"))
1630 (with-current-buffer (window-buffer (posn-window posn))
1631 (if (> (mod mouse-secondary-click-count 3) 0)
1632 (if (not (and (eq last-command 'mouse-secondary-save-then-kill)
1633 (equal click-posn
1634 (car (cdr-safe (cdr-safe mouse-save-then-kill-posn))))))
1635 ;; Find both ends of the object selected by this click.
1636 (let* ((range
1637 (mouse-start-end click-posn click-posn
1638 mouse-secondary-click-count)))
1639 ;; Move whichever end is closer to the click.
1640 ;; That's what xterm does, and it seems reasonable.
1641 (if (< (abs (- click-posn (overlay-start mouse-secondary-overlay)))
1642 (abs (- click-posn (overlay-end mouse-secondary-overlay))))
1643 (move-overlay mouse-secondary-overlay (car range)
1644 (overlay-end mouse-secondary-overlay))
1645 (move-overlay mouse-secondary-overlay
1646 (overlay-start mouse-secondary-overlay)
1647 (nth 1 range)))
1648 ;; We have already put the old region in the kill ring.
1649 ;; Replace it with the extended region.
1650 ;; (It would be annoying to make a separate entry.)
1651 (kill-new (buffer-substring
1652 (overlay-start mouse-secondary-overlay)
1653 (overlay-end mouse-secondary-overlay)) t)
1654 ;; Arrange for a repeated mouse-3 to kill this region.
1655 (setq mouse-save-then-kill-posn
1656 (list (car kill-ring) (point) click-posn)))
1657 ;; If we click this button again without moving it,
1658 ;; that time kill.
1659 (progn
1660 (mouse-save-then-kill-delete-region
1661 (overlay-start mouse-secondary-overlay)
1662 (overlay-end mouse-secondary-overlay))
1663 (setq mouse-save-then-kill-posn nil)
1664 (setq mouse-secondary-click-count 0)
1665 (delete-overlay mouse-secondary-overlay)))
1666 (if (and (eq last-command 'mouse-secondary-save-then-kill)
1667 mouse-save-then-kill-posn
1668 (eq (car mouse-save-then-kill-posn) (car kill-ring))
1669 (equal (cdr mouse-save-then-kill-posn) (list (point) click-posn)))
1670 ;; If this is the second time we've called
1671 ;; mouse-secondary-save-then-kill, delete the text from the buffer.
1672 (progn
1673 (mouse-save-then-kill-delete-region
1674 (overlay-start mouse-secondary-overlay)
1675 (overlay-end mouse-secondary-overlay))
1676 (setq mouse-save-then-kill-posn nil)
1677 (delete-overlay mouse-secondary-overlay))
1678 (if (overlay-start mouse-secondary-overlay)
1679 ;; We have a selection, so adjust it.
1680 (progn
1681 (if (numberp click-posn)
1682 (progn
1683 ;; Move whichever end of the region is closer to the click.
1684 ;; That is what xterm does, and it seems reasonable.
1685 (if (< (abs (- click-posn (overlay-start mouse-secondary-overlay)))
1686 (abs (- click-posn (overlay-end mouse-secondary-overlay))))
1687 (move-overlay mouse-secondary-overlay click-posn
1688 (overlay-end mouse-secondary-overlay))
1689 (move-overlay mouse-secondary-overlay
1690 (overlay-start mouse-secondary-overlay)
1691 click-posn))
1692 (setq deactivate-mark nil)))
1693 (if (eq last-command 'mouse-secondary-save-then-kill)
1694 ;; If the front of the kill ring comes from
1695 ;; an immediately previous use of this command,
1696 ;; replace it with the extended region.
1697 ;; (It would be annoying to make a separate entry.)
1698 (kill-new (buffer-substring
1699 (overlay-start mouse-secondary-overlay)
1700 (overlay-end mouse-secondary-overlay)) t)
1701 (let (deactivate-mark)
1702 (copy-region-as-kill (overlay-start mouse-secondary-overlay)
1703 (overlay-end mouse-secondary-overlay)))))
1704 (if mouse-secondary-start
1705 ;; All we have is one end of a selection,
1706 ;; so put the other end here.
1707 (let ((start (+ 0 mouse-secondary-start)))
1708 (kill-ring-save start click-posn)
1709 (move-overlay mouse-secondary-overlay start click-posn))))
1710 (setq mouse-save-then-kill-posn
1711 (list (car kill-ring) (point) click-posn))))
1712 (if (overlay-buffer mouse-secondary-overlay)
1713 (x-set-selection 'SECONDARY
1714 (buffer-substring
1715 (overlay-start mouse-secondary-overlay)
1716 (overlay-end mouse-secondary-overlay)))))))
1718 (defcustom mouse-buffer-menu-maxlen 20
1719 "Number of buffers in one pane (submenu) of the buffer menu.
1720 If we have lots of buffers, divide them into groups of
1721 `mouse-buffer-menu-maxlen' and make a pane (or submenu) for each one."
1722 :type 'integer
1723 :group 'mouse)
1725 (defcustom mouse-buffer-menu-mode-mult 4
1726 "Group the buffers by the major mode groups on \\[mouse-buffer-menu]?
1727 This number which determines (in a hairy way) whether \\[mouse-buffer-menu]
1728 will split the buffer menu by the major modes (see
1729 `mouse-buffer-menu-mode-groups') or just by menu length.
1730 Set to 1 (or even 0!) if you want to group by major mode always, and to
1731 a large number if you prefer a mixed multitude. The default is 4."
1732 :type 'integer
1733 :group 'mouse
1734 :version "20.3")
1736 (defvar mouse-buffer-menu-mode-groups
1737 (mapcar (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
1738 '(("Info\\|Help\\|Apropos\\|Man" . "Help")
1739 ("\\bVM\\b\\|\\bMH\\b\\|Message\\|Mail\\|Group\\|Score\\|Summary\\|Article"
1740 . "Mail/News")
1741 ("\\<C\\>" . "C")
1742 ("ObjC" . "C")
1743 ("Text" . "Text")
1744 ("Outline" . "Text")
1745 ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML")
1746 ("log\\|diff\\|vc\\|cvs\\|Annotate" . "Version Control") ; "Change Management"?
1747 ("Lisp" . "Lisp")))
1748 "How to group various major modes together in \\[mouse-buffer-menu].
1749 Each element has the form (REGEXP . GROUPNAME).
1750 If the major mode's name string matches REGEXP, use GROUPNAME instead.")
1752 (defun mouse-buffer-menu (event)
1753 "Pop up a menu of buffers for selection with the mouse.
1754 This switches buffers in the window that you clicked on,
1755 and selects that window."
1756 (interactive "e")
1757 (mouse-minibuffer-check event)
1758 (let ((buffers (buffer-list)) alist menu split-by-major-mode sum-of-squares)
1759 ;; Make an alist of elements that look like (MENU-ITEM . BUFFER).
1760 (dolist (buf buffers)
1761 ;; Divide all buffers into buckets for various major modes.
1762 ;; Each bucket looks like (MODE NAMESTRING BUFFERS...).
1763 (with-current-buffer buf
1764 (let* ((adjusted-major-mode major-mode) elt)
1765 (dolist (group mouse-buffer-menu-mode-groups)
1766 (when (string-match (car group) (format-mode-line mode-name))
1767 (setq adjusted-major-mode (cdr group))))
1768 (setq elt (assoc adjusted-major-mode split-by-major-mode))
1769 (unless elt
1770 (setq elt (list adjusted-major-mode
1771 (if (stringp adjusted-major-mode)
1772 adjusted-major-mode
1773 (format-mode-line mode-name nil nil buf)))
1774 split-by-major-mode (cons elt split-by-major-mode)))
1775 (or (memq buf (cdr (cdr elt)))
1776 (setcdr (cdr elt) (cons buf (cdr (cdr elt))))))))
1777 ;; Compute the sum of squares of sizes of the major-mode buckets.
1778 (let ((tail split-by-major-mode))
1779 (setq sum-of-squares 0)
1780 (while tail
1781 (setq sum-of-squares
1782 (+ sum-of-squares
1783 (let ((len (length (cdr (cdr (car tail)))))) (* len len))))
1784 (setq tail (cdr tail))))
1785 (if (< (* sum-of-squares mouse-buffer-menu-mode-mult)
1786 (* (length buffers) (length buffers)))
1787 ;; Subdividing by major modes really helps, so let's do it.
1788 (let (subdivided-menus (buffers-left (length buffers)))
1789 ;; Sort the list to put the most popular major modes first.
1790 (setq split-by-major-mode
1791 (sort split-by-major-mode
1792 (function (lambda (elt1 elt2)
1793 (> (length elt1) (length elt2))))))
1794 ;; Make a separate submenu for each major mode
1795 ;; that has more than one buffer,
1796 ;; unless all the remaining buffers are less than 1/10 of them.
1797 (while (and split-by-major-mode
1798 (and (> (length (car split-by-major-mode)) 3)
1799 (> (* buffers-left 10) (length buffers))))
1800 (let ((this-mode-list (mouse-buffer-menu-alist
1801 (cdr (cdr (car split-by-major-mode))))))
1802 (and this-mode-list
1803 (setq subdivided-menus
1804 (cons (cons
1805 (nth 1 (car split-by-major-mode))
1806 this-mode-list)
1807 subdivided-menus))))
1808 (setq buffers-left
1809 (- buffers-left (length (cdr (car split-by-major-mode)))))
1810 (setq split-by-major-mode (cdr split-by-major-mode)))
1811 ;; If any major modes are left over,
1812 ;; make a single submenu for them.
1813 (if split-by-major-mode
1814 (let ((others-list
1815 (mouse-buffer-menu-alist
1816 ;; we don't need split-by-major-mode any more,
1817 ;; so we can ditch it with nconc.
1818 (apply 'nconc (mapcar 'cddr split-by-major-mode)))))
1819 (and others-list
1820 (setq subdivided-menus
1821 (cons (cons "Others" others-list)
1822 subdivided-menus)))))
1823 (setq menu (cons "Buffer Menu" (nreverse subdivided-menus))))
1824 (progn
1825 (setq alist (mouse-buffer-menu-alist buffers))
1826 (setq menu (cons "Buffer Menu"
1827 (mouse-buffer-menu-split "Select Buffer" alist)))))
1828 (let ((buf (x-popup-menu event menu))
1829 (window (posn-window (event-start event))))
1830 (when buf
1831 (select-window
1832 (if (framep window) (frame-selected-window window)
1833 window))
1834 (switch-to-buffer buf)))))
1836 (defun mouse-buffer-menu-alist (buffers)
1837 (let (tail
1838 (maxlen 0)
1839 head)
1840 (setq buffers
1841 (sort buffers
1842 (function (lambda (elt1 elt2)
1843 (string< (buffer-name elt1) (buffer-name elt2))))))
1844 (setq tail buffers)
1845 (while tail
1846 (or (eq ?\s (aref (buffer-name (car tail)) 0))
1847 (setq maxlen
1848 (max maxlen
1849 (length (buffer-name (car tail))))))
1850 (setq tail (cdr tail)))
1851 (setq tail buffers)
1852 (while tail
1853 (let ((elt (car tail)))
1854 (if (/= (aref (buffer-name elt) 0) ?\s)
1855 (setq head
1856 (cons
1857 (cons
1858 (format
1859 (format "%%-%ds %%s%%s %%s" maxlen)
1860 (buffer-name elt)
1861 (if (buffer-modified-p elt) "*" " ")
1862 (with-current-buffer elt
1863 (if buffer-read-only "%" " "))
1864 (or (buffer-file-name elt)
1865 (with-current-buffer elt
1866 (if list-buffers-directory
1867 (expand-file-name
1868 list-buffers-directory)))
1869 ""))
1870 elt)
1871 head))))
1872 (setq tail (cdr tail)))
1873 ;; Compensate for the reversal that the above loop does.
1874 (nreverse head)))
1876 (defun mouse-buffer-menu-split (title alist)
1877 ;; If we have lots of buffers, divide them into groups of 20
1878 ;; and make a pane (or submenu) for each one.
1879 (if (> (length alist) (/ (* mouse-buffer-menu-maxlen 3) 2))
1880 (let ((alist alist) sublists next
1881 (i 1))
1882 (while alist
1883 ;; Pull off the next mouse-buffer-menu-maxlen buffers
1884 ;; and make them the next element of sublist.
1885 (setq next (nthcdr mouse-buffer-menu-maxlen alist))
1886 (if next
1887 (setcdr (nthcdr (1- mouse-buffer-menu-maxlen) alist)
1888 nil))
1889 (setq sublists (cons (cons (format "Buffers %d" i) alist)
1890 sublists))
1891 (setq i (1+ i))
1892 (setq alist next))
1893 (nreverse sublists))
1894 ;; Few buffers--put them all in one pane.
1895 (list (cons title alist))))
1897 ;; These need to be rewritten for the new scroll bar implementation.
1899 ;;!! ;; Commands for the scroll bar.
1900 ;;!!
1901 ;;!! (defun mouse-scroll-down (click)
1902 ;;!! (interactive "@e")
1903 ;;!! (scroll-down (1+ (cdr (mouse-coords click)))))
1904 ;;!!
1905 ;;!! (defun mouse-scroll-up (click)
1906 ;;!! (interactive "@e")
1907 ;;!! (scroll-up (1+ (cdr (mouse-coords click)))))
1908 ;;!!
1909 ;;!! (defun mouse-scroll-down-full ()
1910 ;;!! (interactive "@")
1911 ;;!! (scroll-down nil))
1912 ;;!!
1913 ;;!! (defun mouse-scroll-up-full ()
1914 ;;!! (interactive "@")
1915 ;;!! (scroll-up nil))
1916 ;;!!
1917 ;;!! (defun mouse-scroll-move-cursor (click)
1918 ;;!! (interactive "@e")
1919 ;;!! (move-to-window-line (1+ (cdr (mouse-coords click)))))
1920 ;;!!
1921 ;;!! (defun mouse-scroll-absolute (event)
1922 ;;!! (interactive "@e")
1923 ;;!! (let* ((pos (car event))
1924 ;;!! (position (car pos))
1925 ;;!! (length (car (cdr pos))))
1926 ;;!! (if (<= length 0) (setq length 1))
1927 ;;!! (let* ((scale-factor (max 1 (/ length (/ 8000000 (buffer-size)))))
1928 ;;!! (newpos (* (/ (* (/ (buffer-size) scale-factor)
1929 ;;!! position)
1930 ;;!! length)
1931 ;;!! scale-factor)))
1932 ;;!! (goto-char newpos)
1933 ;;!! (recenter '(4)))))
1934 ;;!!
1935 ;;!! (defun mouse-scroll-left (click)
1936 ;;!! (interactive "@e")
1937 ;;!! (scroll-left (1+ (car (mouse-coords click)))))
1938 ;;!!
1939 ;;!! (defun mouse-scroll-right (click)
1940 ;;!! (interactive "@e")
1941 ;;!! (scroll-right (1+ (car (mouse-coords click)))))
1942 ;;!!
1943 ;;!! (defun mouse-scroll-left-full ()
1944 ;;!! (interactive "@")
1945 ;;!! (scroll-left nil))
1946 ;;!!
1947 ;;!! (defun mouse-scroll-right-full ()
1948 ;;!! (interactive "@")
1949 ;;!! (scroll-right nil))
1950 ;;!!
1951 ;;!! (defun mouse-scroll-move-cursor-horizontally (click)
1952 ;;!! (interactive "@e")
1953 ;;!! (move-to-column (1+ (car (mouse-coords click)))))
1954 ;;!!
1955 ;;!! (defun mouse-scroll-absolute-horizontally (event)
1956 ;;!! (interactive "@e")
1957 ;;!! (let* ((pos (car event))
1958 ;;!! (position (car pos))
1959 ;;!! (length (car (cdr pos))))
1960 ;;!! (set-window-hscroll (selected-window) 33)))
1961 ;;!!
1962 ;;!! (global-set-key [scroll-bar mouse-1] 'mouse-scroll-up)
1963 ;;!! (global-set-key [scroll-bar mouse-2] 'mouse-scroll-absolute)
1964 ;;!! (global-set-key [scroll-bar mouse-3] 'mouse-scroll-down)
1965 ;;!!
1966 ;;!! (global-set-key [vertical-slider mouse-1] 'mouse-scroll-move-cursor)
1967 ;;!! (global-set-key [vertical-slider mouse-2] 'mouse-scroll-move-cursor)
1968 ;;!! (global-set-key [vertical-slider mouse-3] 'mouse-scroll-move-cursor)
1969 ;;!!
1970 ;;!! (global-set-key [thumbup mouse-1] 'mouse-scroll-up-full)
1971 ;;!! (global-set-key [thumbup mouse-2] 'mouse-scroll-up-full)
1972 ;;!! (global-set-key [thumbup mouse-3] 'mouse-scroll-up-full)
1973 ;;!!
1974 ;;!! (global-set-key [thumbdown mouse-1] 'mouse-scroll-down-full)
1975 ;;!! (global-set-key [thumbdown mouse-2] 'mouse-scroll-down-full)
1976 ;;!! (global-set-key [thumbdown mouse-3] 'mouse-scroll-down-full)
1977 ;;!!
1978 ;;!! (global-set-key [horizontal-scroll-bar mouse-1] 'mouse-scroll-left)
1979 ;;!! (global-set-key [horizontal-scroll-bar mouse-2]
1980 ;;!! 'mouse-scroll-absolute-horizontally)
1981 ;;!! (global-set-key [horizontal-scroll-bar mouse-3] 'mouse-scroll-right)
1982 ;;!!
1983 ;;!! (global-set-key [horizontal-slider mouse-1]
1984 ;;!! 'mouse-scroll-move-cursor-horizontally)
1985 ;;!! (global-set-key [horizontal-slider mouse-2]
1986 ;;!! 'mouse-scroll-move-cursor-horizontally)
1987 ;;!! (global-set-key [horizontal-slider mouse-3]
1988 ;;!! 'mouse-scroll-move-cursor-horizontally)
1989 ;;!!
1990 ;;!! (global-set-key [thumbleft mouse-1] 'mouse-scroll-left-full)
1991 ;;!! (global-set-key [thumbleft mouse-2] 'mouse-scroll-left-full)
1992 ;;!! (global-set-key [thumbleft mouse-3] 'mouse-scroll-left-full)
1993 ;;!!
1994 ;;!! (global-set-key [thumbright mouse-1] 'mouse-scroll-right-full)
1995 ;;!! (global-set-key [thumbright mouse-2] 'mouse-scroll-right-full)
1996 ;;!! (global-set-key [thumbright mouse-3] 'mouse-scroll-right-full)
1997 ;;!!
1998 ;;!! (global-set-key [horizontal-scroll-bar S-mouse-2]
1999 ;;!! 'mouse-split-window-horizontally)
2000 ;;!! (global-set-key [mode-line S-mouse-2]
2001 ;;!! 'mouse-split-window-horizontally)
2002 ;;!! (global-set-key [vertical-scroll-bar S-mouse-2]
2003 ;;!! 'mouse-split-window)
2005 ;;!! ;;;;
2006 ;;!! ;;;; Here are experimental things being tested. Mouse events
2007 ;;!! ;;;; are of the form:
2008 ;;!! ;;;; ((x y) window screen-part key-sequence timestamp)
2009 ;;!! ;;
2010 ;;!! ;;;;
2011 ;;!! ;;;; Dynamically track mouse coordinates
2012 ;;!! ;;;;
2013 ;;!! ;;
2014 ;;!! ;;(defun track-mouse (event)
2015 ;;!! ;; "Track the coordinates, absolute and relative, of the mouse."
2016 ;;!! ;; (interactive "@e")
2017 ;;!! ;; (while mouse-grabbed
2018 ;;!! ;; (let* ((pos (read-mouse-position (selected-screen)))
2019 ;;!! ;; (abs-x (car pos))
2020 ;;!! ;; (abs-y (cdr pos))
2021 ;;!! ;; (relative-coordinate (coordinates-in-window-p
2022 ;;!! ;; (list (car pos) (cdr pos))
2023 ;;!! ;; (selected-window))))
2024 ;;!! ;; (if (consp relative-coordinate)
2025 ;;!! ;; (message "mouse: [%d %d], (%d %d)" abs-x abs-y
2026 ;;!! ;; (car relative-coordinate)
2027 ;;!! ;; (car (cdr relative-coordinate)))
2028 ;;!! ;; (message "mouse: [%d %d]" abs-x abs-y)))))
2029 ;;!!
2030 ;;!! ;;
2031 ;;!! ;; Dynamically put a box around the line indicated by point
2032 ;;!! ;;
2033 ;;!! ;;
2034 ;;!! ;;(require 'backquote)
2035 ;;!! ;;
2036 ;;!! ;;(defun mouse-select-buffer-line (event)
2037 ;;!! ;; (interactive "@e")
2038 ;;!! ;; (let ((relative-coordinate
2039 ;;!! ;; (coordinates-in-window-p (car event) (selected-window)))
2040 ;;!! ;; (abs-y (car (cdr (car event)))))
2041 ;;!! ;; (if (consp relative-coordinate)
2042 ;;!! ;; (progn
2043 ;;!! ;; (save-excursion
2044 ;;!! ;; (move-to-window-line (car (cdr relative-coordinate)))
2045 ;;!! ;; (x-draw-rectangle
2046 ;;!! ;; (selected-screen)
2047 ;;!! ;; abs-y 0
2048 ;;!! ;; (save-excursion
2049 ;;!! ;; (move-to-window-line (car (cdr relative-coordinate)))
2050 ;;!! ;; (end-of-line)
2051 ;;!! ;; (push-mark nil t)
2052 ;;!! ;; (beginning-of-line)
2053 ;;!! ;; (- (region-end) (region-beginning))) 1))
2054 ;;!! ;; (sit-for 1)
2055 ;;!! ;; (x-erase-rectangle (selected-screen))))))
2056 ;;!! ;;
2057 ;;!! ;;(defvar last-line-drawn nil)
2058 ;;!! ;;(defvar begin-delim "[^ \t]")
2059 ;;!! ;;(defvar end-delim "[^ \t]")
2060 ;;!! ;;
2061 ;;!! ;;(defun mouse-boxing (event)
2062 ;;!! ;; (interactive "@e")
2063 ;;!! ;; (save-excursion
2064 ;;!! ;; (let ((screen (selected-screen)))
2065 ;;!! ;; (while (= (x-mouse-events) 0)
2066 ;;!! ;; (let* ((pos (read-mouse-position screen))
2067 ;;!! ;; (abs-x (car pos))
2068 ;;!! ;; (abs-y (cdr pos))
2069 ;;!! ;; (relative-coordinate
2070 ;;!! ;; (coordinates-in-window-p `(,abs-x ,abs-y)
2071 ;;!! ;; (selected-window)))
2072 ;;!! ;; (begin-reg nil)
2073 ;;!! ;; (end-reg nil)
2074 ;;!! ;; (end-column nil)
2075 ;;!! ;; (begin-column nil))
2076 ;;!! ;; (if (and (consp relative-coordinate)
2077 ;;!! ;; (or (not last-line-drawn)
2078 ;;!! ;; (not (= last-line-drawn abs-y))))
2079 ;;!! ;; (progn
2080 ;;!! ;; (move-to-window-line (car (cdr relative-coordinate)))
2081 ;;!! ;; (if (= (following-char) 10)
2082 ;;!! ;; ()
2083 ;;!! ;; (progn
2084 ;;!! ;; (setq begin-reg (1- (re-search-forward end-delim)))
2085 ;;!! ;; (setq begin-column (1- (current-column)))
2086 ;;!! ;; (end-of-line)
2087 ;;!! ;; (setq end-reg (1+ (re-search-backward begin-delim)))
2088 ;;!! ;; (setq end-column (1+ (current-column)))
2089 ;;!! ;; (message "%s" (buffer-substring begin-reg end-reg))
2090 ;;!! ;; (x-draw-rectangle screen
2091 ;;!! ;; (setq last-line-drawn abs-y)
2092 ;;!! ;; begin-column
2093 ;;!! ;; (- end-column begin-column) 1))))))))))
2094 ;;!! ;;
2095 ;;!! ;;(defun mouse-erase-box ()
2096 ;;!! ;; (interactive)
2097 ;;!! ;; (if last-line-drawn
2098 ;;!! ;; (progn
2099 ;;!! ;; (x-erase-rectangle (selected-screen))
2100 ;;!! ;; (setq last-line-drawn nil))))
2101 ;;!!
2102 ;;!! ;;; (defun test-x-rectangle ()
2103 ;;!! ;;; (use-local-mouse-map (setq rectangle-test-map (make-sparse-keymap)))
2104 ;;!! ;;; (define-key rectangle-test-map mouse-motion-button-left 'mouse-boxing)
2105 ;;!! ;;; (define-key rectangle-test-map mouse-button-left-up 'mouse-erase-box))
2106 ;;!!
2107 ;;!! ;;
2108 ;;!! ;; Here is how to do double clicking in lisp. About to change.
2109 ;;!! ;;
2110 ;;!!
2111 ;;!! (defvar double-start nil)
2112 ;;!! (defconst double-click-interval 300
2113 ;;!! "Max ticks between clicks")
2114 ;;!!
2115 ;;!! (defun double-down (event)
2116 ;;!! (interactive "@e")
2117 ;;!! (if double-start
2118 ;;!! (let ((interval (- (nth 4 event) double-start)))
2119 ;;!! (if (< interval double-click-interval)
2120 ;;!! (progn
2121 ;;!! (backward-up-list 1)
2122 ;;!! ;; (message "Interval %d" interval)
2123 ;;!! (sleep-for 1)))
2124 ;;!! (setq double-start nil))
2125 ;;!! (setq double-start (nth 4 event))))
2126 ;;!!
2127 ;;!! (defun double-up (event)
2128 ;;!! (interactive "@e")
2129 ;;!! (and double-start
2130 ;;!! (> (- (nth 4 event ) double-start) double-click-interval)
2131 ;;!! (setq double-start nil)))
2132 ;;!!
2133 ;;!! ;;; (defun x-test-doubleclick ()
2134 ;;!! ;;; (use-local-mouse-map (setq doubleclick-test-map (make-sparse-keymap)))
2135 ;;!! ;;; (define-key doubleclick-test-map mouse-button-left 'double-down)
2136 ;;!! ;;; (define-key doubleclick-test-map mouse-button-left-up 'double-up))
2137 ;;!!
2138 ;;!! ;;
2139 ;;!! ;; This scrolls while button is depressed. Use preferable in scroll bar.
2140 ;;!! ;;
2141 ;;!!
2142 ;;!! (defvar scrolled-lines 0)
2143 ;;!! (defconst scroll-speed 1)
2144 ;;!!
2145 ;;!! (defun incr-scroll-down (event)
2146 ;;!! (interactive "@e")
2147 ;;!! (setq scrolled-lines 0)
2148 ;;!! (incremental-scroll scroll-speed))
2149 ;;!!
2150 ;;!! (defun incr-scroll-up (event)
2151 ;;!! (interactive "@e")
2152 ;;!! (setq scrolled-lines 0)
2153 ;;!! (incremental-scroll (- scroll-speed)))
2154 ;;!!
2155 ;;!! (defun incremental-scroll (n)
2156 ;;!! (while (= (x-mouse-events) 0)
2157 ;;!! (setq scrolled-lines (1+ (* scroll-speed scrolled-lines)))
2158 ;;!! (scroll-down n)
2159 ;;!! (sit-for 300 t)))
2160 ;;!!
2161 ;;!! (defun incr-scroll-stop (event)
2162 ;;!! (interactive "@e")
2163 ;;!! (message "Scrolled %d lines" scrolled-lines)
2164 ;;!! (setq scrolled-lines 0)
2165 ;;!! (sleep-for 1))
2166 ;;!!
2167 ;;!! ;;; (defun x-testing-scroll ()
2168 ;;!! ;;; (let ((scrolling-map (function mouse-vertical-scroll-bar-prefix)))
2169 ;;!! ;;; (define-key scrolling-map mouse-button-left 'incr-scroll-down)
2170 ;;!! ;;; (define-key scrolling-map mouse-button-right 'incr-scroll-up)
2171 ;;!! ;;; (define-key scrolling-map mouse-button-left-up 'incr-scroll-stop)
2172 ;;!! ;;; (define-key scrolling-map mouse-button-right-up 'incr-scroll-stop)))
2173 ;;!!
2174 ;;!! ;;
2175 ;;!! ;; Some playthings suitable for picture mode? They need work.
2176 ;;!! ;;
2177 ;;!!
2178 ;;!! (defun mouse-kill-rectangle (event)
2179 ;;!! "Kill the rectangle between point and the mouse cursor."
2180 ;;!! (interactive "@e")
2181 ;;!! (let ((point-save (point)))
2182 ;;!! (save-excursion
2183 ;;!! (mouse-set-point event)
2184 ;;!! (push-mark nil t)
2185 ;;!! (if (> point-save (point))
2186 ;;!! (kill-rectangle (point) point-save)
2187 ;;!! (kill-rectangle point-save (point))))))
2188 ;;!!
2189 ;;!! (defun mouse-open-rectangle (event)
2190 ;;!! "Kill the rectangle between point and the mouse cursor."
2191 ;;!! (interactive "@e")
2192 ;;!! (let ((point-save (point)))
2193 ;;!! (save-excursion
2194 ;;!! (mouse-set-point event)
2195 ;;!! (push-mark nil t)
2196 ;;!! (if (> point-save (point))
2197 ;;!! (open-rectangle (point) point-save)
2198 ;;!! (open-rectangle point-save (point))))))
2199 ;;!!
2200 ;;!! ;; Must be a better way to do this.
2201 ;;!!
2202 ;;!! (defun mouse-multiple-insert (n char)
2203 ;;!! (while (> n 0)
2204 ;;!! (insert char)
2205 ;;!! (setq n (1- n))))
2206 ;;!!
2207 ;;!! ;; What this could do is not finalize until button was released.
2208 ;;!!
2209 ;;!! (defun mouse-move-text (event)
2210 ;;!! "Move text from point to cursor position, inserting spaces."
2211 ;;!! (interactive "@e")
2212 ;;!! (let* ((relative-coordinate
2213 ;;!! (coordinates-in-window-p (car event) (selected-window))))
2214 ;;!! (if (consp relative-coordinate)
2215 ;;!! (cond ((> (current-column) (car relative-coordinate))
2216 ;;!! (delete-char
2217 ;;!! (- (car relative-coordinate) (current-column))))
2218 ;;!! ((< (current-column) (car relative-coordinate))
2219 ;;!! (mouse-multiple-insert
2220 ;;!! (- (car relative-coordinate) (current-column)) " "))
2221 ;;!! ((= (current-column) (car relative-coordinate)) (ding))))))
2223 (define-obsolete-function-alias
2224 'mouse-choose-completion 'choose-completion "23.2")
2226 ;; Font selection.
2228 (defun font-menu-add-default ()
2229 (let* ((default (cdr (assq 'font (frame-parameters (selected-frame)))))
2230 (font-alist x-fixed-font-alist)
2231 (elt (or (assoc "Misc" font-alist) (nth 1 font-alist))))
2232 (if (assoc "Default" elt)
2233 (delete (assoc "Default" elt) elt))
2234 (setcdr elt
2235 (cons (list "Default" default)
2236 (cdr elt)))))
2238 (defvar x-fixed-font-alist
2239 (list
2240 (purecopy "Font Menu")
2241 (cons
2242 (purecopy "Misc")
2243 (mapcar
2244 (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
2245 ;; For these, we specify the pixel height and width.
2246 '(("fixed" "fixed")
2247 ("6x10" "-misc-fixed-medium-r-normal--10-*-*-*-c-60-iso8859-1" "6x10")
2248 ("6x12"
2249 "-misc-fixed-medium-r-semicondensed--12-*-*-*-c-60-iso8859-1" "6x12")
2250 ("6x13"
2251 "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" "6x13")
2252 ("7x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-70-iso8859-1" "7x13")
2253 ("7x14" "-misc-fixed-medium-r-normal--14-*-*-*-c-70-iso8859-1" "7x14")
2254 ("8x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-80-iso8859-1" "8x13")
2255 ("9x15" "-misc-fixed-medium-r-normal--15-*-*-*-c-90-iso8859-1" "9x15")
2256 ("10x20" "-misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1" "10x20")
2257 ("11x18" "-misc-fixed-medium-r-normal--18-*-*-*-c-110-iso8859-1" "11x18")
2258 ("12x24" "-misc-fixed-medium-r-normal--24-*-*-*-c-120-iso8859-1" "12x24")
2259 ("")
2260 ("clean 5x8"
2261 "-schumacher-clean-medium-r-normal--8-*-*-*-c-50-iso8859-1")
2262 ("clean 6x8"
2263 "-schumacher-clean-medium-r-normal--8-*-*-*-c-60-iso8859-1")
2264 ("clean 8x8"
2265 "-schumacher-clean-medium-r-normal--8-*-*-*-c-80-iso8859-1")
2266 ("clean 8x10"
2267 "-schumacher-clean-medium-r-normal--10-*-*-*-c-80-iso8859-1")
2268 ("clean 8x14"
2269 "-schumacher-clean-medium-r-normal--14-*-*-*-c-80-iso8859-1")
2270 ("clean 8x16"
2271 "-schumacher-clean-medium-r-normal--16-*-*-*-c-80-iso8859-1")
2272 ("")
2273 ("sony 8x16" "-sony-fixed-medium-r-normal--16-*-*-*-c-80-iso8859-1")
2274 ;; We don't seem to have these; who knows what they are.
2275 ;; ("fg-18" "fg-18")
2276 ;; ("fg-25" "fg-25")
2277 ("lucidasanstypewriter-12" "-b&h-lucidatypewriter-medium-r-normal-sans-*-120-*-*-*-*-iso8859-1")
2278 ("lucidasanstypewriter-bold-14" "-b&h-lucidatypewriter-bold-r-normal-sans-*-140-*-*-*-*-iso8859-1")
2279 ("lucidasanstypewriter-bold-24"
2280 "-b&h-lucidatypewriter-bold-r-normal-sans-*-240-*-*-*-*-iso8859-1")
2281 ;; ("lucidatypewriter-bold-r-24" "-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1")
2282 ;; ("fixed-medium-20" "-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*")
2285 (cons
2286 (purecopy "Courier")
2287 (mapcar
2288 (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg))))
2289 ;; For these, we specify the point height.
2290 '(("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1")
2291 ("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1")
2292 ("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1")
2293 ("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1")
2294 ("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1")
2295 ("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1")
2296 ("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1")
2297 ("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1")
2298 ("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1")
2299 ("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1")
2300 ("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1")
2301 ("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1")
2302 ("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1")
2303 ("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1")
2304 ("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1")
2305 ("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1")
2306 ("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1")
2307 ("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1")
2308 ("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1")
2309 ("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1")
2310 ("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1")
2311 ("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1")
2312 ("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1")
2313 ("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1")
2314 ))))
2315 "X fonts suitable for use in Emacs.")
2317 (declare-function generate-fontset-menu "fontset" ())
2319 (defun mouse-select-font ()
2320 "Prompt for a font name, using `x-popup-menu', and return it."
2321 (interactive)
2322 (unless (display-multi-font-p)
2323 (error "Cannot change fonts on this display"))
2324 (car
2325 (x-popup-menu
2326 (if (listp last-nonmenu-event)
2327 last-nonmenu-event
2328 (list '(0 0) (selected-window)))
2329 (append x-fixed-font-alist
2330 (list (generate-fontset-menu))))))
2332 (declare-function text-scale-mode "face-remap")
2334 (defun mouse-set-font (&rest fonts)
2335 "Set the default font for the selected frame.
2336 The argument FONTS is a list of font names; the first valid font
2337 in this list is used.
2339 When called interactively, pop up a menu and allow the user to
2340 choose a font."
2341 (interactive
2342 (progn (unless (display-multi-font-p)
2343 (error "Cannot change fonts on this display"))
2344 (x-popup-menu
2345 (if (listp last-nonmenu-event)
2346 last-nonmenu-event
2347 (list '(0 0) (selected-window)))
2348 ;; Append list of fontsets currently defined.
2349 (append x-fixed-font-alist (list (generate-fontset-menu))))))
2350 (if fonts
2351 (let (font)
2352 (while fonts
2353 (condition-case nil
2354 (progn
2355 (set-frame-font (car fonts))
2356 (setq font (car fonts))
2357 (setq fonts nil))
2358 (error
2359 (setq fonts (cdr fonts)))))
2360 (if (null font)
2361 (error "Font not found")))))
2363 (defvar mouse-appearance-menu-map nil)
2364 (declare-function x-select-font "xfns.c" (&optional frame ignored)) ; USE_GTK
2365 (declare-function buffer-face-mode-invoke "face-remap"
2366 (face arg &optional interactive))
2367 (declare-function font-face-attributes "font.c" (font &optional frame))
2369 (defun mouse-appearance-menu (event)
2370 "Show a menu for changing the default face in the current buffer."
2371 (interactive "@e")
2372 (require 'face-remap)
2373 (when (display-multi-font-p)
2374 (with-selected-window (car (event-start event))
2375 (if mouse-appearance-menu-map
2376 nil ; regenerate new fonts
2377 ;; Initialize mouse-appearance-menu-map
2378 (setq mouse-appearance-menu-map
2379 (make-sparse-keymap "Change Default Buffer Face"))
2380 (define-key mouse-appearance-menu-map [face-remap-reset-base]
2381 '(menu-item "Reset to Default" face-remap-reset-base))
2382 (define-key mouse-appearance-menu-map [text-scale-decrease]
2383 '(menu-item "Decrease Buffer Text Size" text-scale-decrease))
2384 (define-key mouse-appearance-menu-map [text-scale-increase]
2385 '(menu-item "Increase Buffer Text Size" text-scale-increase))
2386 ;; Font selector
2387 (if (functionp 'x-select-font)
2388 (define-key mouse-appearance-menu-map [x-select-font]
2389 '(menu-item "Change Buffer Font..." x-select-font))
2390 ;; If the select-font is unavailable, construct a menu.
2391 (let ((font-submenu (make-sparse-keymap "Change Text Font"))
2392 (font-alist (cdr (append x-fixed-font-alist
2393 (list (generate-fontset-menu))))))
2394 (dolist (family font-alist)
2395 (let* ((submenu-name (car family))
2396 (submenu-map (make-sparse-keymap submenu-name)))
2397 (dolist (font (cdr family))
2398 (let ((font-name (car font))
2399 font-symbol)
2400 (if (string= font-name "")
2401 (define-key submenu-map [space]
2402 '("--"))
2403 (setq font-symbol (intern (cadr font)))
2404 (define-key submenu-map (vector font-symbol)
2405 (list 'menu-item (car font) font-symbol)))))
2406 (define-key font-submenu (vector (intern submenu-name))
2407 (list 'menu-item submenu-name submenu-map))))
2408 (define-key mouse-appearance-menu-map [font-submenu]
2409 (list 'menu-item "Change Text Font" font-submenu)))))
2410 (let ((choice (x-popup-menu event mouse-appearance-menu-map)))
2411 (setq choice (nth (1- (length choice)) choice))
2412 (cond ((eq choice 'text-scale-increase)
2413 (text-scale-increase 1))
2414 ((eq choice 'text-scale-decrease)
2415 (text-scale-increase -1))
2416 ((eq choice 'face-remap-reset-base)
2417 (text-scale-mode 0)
2418 (buffer-face-mode 0))
2419 (choice
2420 ;; Either choice == 'x-select-font, or choice is a
2421 ;; symbol whose name is a font.
2422 (buffer-face-mode-invoke (font-face-attributes
2423 (if (eq choice 'x-select-font)
2424 (x-select-font)
2425 (symbol-name choice)))
2427 (called-interactively-p 'interactive))))))))
2430 ;;; Bindings for mouse commands.
2432 (define-key global-map [down-mouse-1] 'mouse-drag-region)
2433 (global-set-key [mouse-1] 'mouse-set-point)
2434 (global-set-key [drag-mouse-1] 'mouse-set-region)
2436 ;; These are tested for in mouse-drag-region.
2437 (global-set-key [double-mouse-1] 'mouse-set-point)
2438 (global-set-key [triple-mouse-1] 'mouse-set-point)
2440 ;; Clicking on the fringes causes hscrolling:
2441 (global-set-key [left-fringe mouse-1] 'mouse-set-point)
2442 (global-set-key [right-fringe mouse-1] 'mouse-set-point)
2444 (global-set-key [mouse-2] 'mouse-yank-primary)
2445 ;; Allow yanking also when the corresponding cursor is "in the fringe".
2446 (global-set-key [right-fringe mouse-2] 'mouse-yank-at-click)
2447 (global-set-key [left-fringe mouse-2] 'mouse-yank-at-click)
2448 (global-set-key [mouse-3] 'mouse-save-then-kill)
2449 (global-set-key [right-fringe mouse-3] 'mouse-save-then-kill)
2450 (global-set-key [left-fringe mouse-3] 'mouse-save-then-kill)
2452 ;; By binding these to down-going events, we let the user use the up-going
2453 ;; event to make the selection, saving a click.
2454 (global-set-key [C-down-mouse-1] 'mouse-buffer-menu)
2455 (if (not (eq system-type 'ms-dos))
2456 (global-set-key [S-down-mouse-1] 'mouse-appearance-menu))
2457 ;; C-down-mouse-2 is bound in facemenu.el.
2458 (global-set-key [C-down-mouse-3]
2459 `(menu-item ,(purecopy "Menu Bar") ignore
2460 :filter (lambda (_)
2461 (if (zerop (or (frame-parameter nil 'menu-bar-lines) 0))
2462 (mouse-menu-bar-map)
2463 (mouse-menu-major-mode-map)))))
2466 ;; Replaced with dragging mouse-1
2467 ;; (global-set-key [S-mouse-1] 'mouse-set-mark)
2469 ;; Binding mouse-1 to mouse-select-window when on mode-, header-, or
2470 ;; vertical-line prevents Emacs from signaling an error when the mouse
2471 ;; button is released after dragging these lines, on non-toolkit
2472 ;; versions.
2473 (global-set-key [mode-line mouse-1] 'mouse-select-window)
2474 (global-set-key [mode-line drag-mouse-1] 'mouse-select-window)
2475 (global-set-key [mode-line down-mouse-1] 'mouse-drag-mode-line)
2476 (global-set-key [header-line down-mouse-1] 'mouse-drag-header-line)
2477 (global-set-key [header-line mouse-1] 'mouse-select-window)
2478 (global-set-key [mode-line mouse-2] 'mouse-delete-other-windows)
2479 (global-set-key [mode-line mouse-3] 'mouse-delete-window)
2480 (global-set-key [mode-line C-mouse-2] 'mouse-split-window-horizontally)
2481 (global-set-key [vertical-scroll-bar C-mouse-2] 'mouse-split-window-vertically)
2482 (global-set-key [vertical-line C-mouse-2] 'mouse-split-window-vertically)
2483 (global-set-key [vertical-line down-mouse-1] 'mouse-drag-vertical-line)
2484 (global-set-key [vertical-line mouse-1] 'mouse-select-window)
2486 (provide 'mouse)
2488 ;; This file contains the functionality of the old mldrag.el.
2489 (defalias 'mldrag-drag-mode-line 'mouse-drag-mode-line)
2490 (defalias 'mldrag-drag-vertical-line 'mouse-drag-vertical-line)
2491 (make-obsolete 'mldrag-drag-mode-line 'mouse-drag-mode-line "21.1")
2492 (make-obsolete 'mldrag-drag-vertical-line 'mouse-drag-vertical-line "21.1")
2493 (provide 'mldrag)
2495 ;; arch-tag: 9a710ce1-914a-4923-9b81-697f7bf82ab3
2496 ;;; mouse.el ends here