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