Mercurial > emacs
annotate lisp/mouse.el @ 85890:d505125b0b46
2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
* viper-ex.el (viper-ex): do not ignore the region.
* viper-cmd.el (viper-prev-destructive-command)
(viper-insert-prev-from-insertion-ring): use ring-copy instead of
copy-sequence.
* ediff-util.el (ediff-make-current-diff-overlay): do not use face-name.
Got rid of ediff-copy-list.
* ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer): do not
use face-name.
(ediff-test-utility,ediff-diff-mandatory-option)
(ediff-reset-diff-options): removed to simplify yhe mandatory option
handling on windows.
(ediff-set-diff-options): added.
(ediff-diff-options): changed.
* ediff-vers.el (ediff-vc-internal): use ediff-vc-revision-other-window.
(ediff-vc-merge-internal): use ediff-vc-revision-other-window and
ediff-vc-working-revision.
Require vc-hooks.
author | Michael Kifer <kifer@cs.stonybrook.edu> |
---|---|
date | Fri, 02 Nov 2007 06:03:12 +0000 |
parents | 1921151f9249 |
children | 1d6e3255f024 4b09bb044f38 |
rev | line source |
---|---|
13337 | 1 ;;; mouse.el --- window system-independent mouse support |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
758
diff
changeset
|
2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001, 2002, 2003, |
75347 | 4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
791
diff
changeset
|
5 |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
758
diff
changeset
|
6 ;; Maintainer: FSF |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
7 ;; Keywords: hardware, mouse |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
758
diff
changeset
|
8 |
13337 | 9 ;; This file is part of GNU Emacs. |
66 | 10 |
13337 | 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 | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
78126
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
13337 | 14 ;; any later version. |
66 | 15 |
13337 | 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. | |
66 | 20 |
13337 | 21 ;; You should have received a copy of the GNU General Public License |
14179
7db5b89b78b6
(mouse-drag-region, mouse-drag-secondary): Bind echo-keystrokes to 0.
Richard M. Stallman <rms@gnu.org>
parents:
13872
diff
changeset
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
66 | 25 |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
26 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
27 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
28 ;; This package provides various useful commands (including help |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
29 ;; system access) through the mouse. All this code assumes that mouse |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
30 ;; interpretation has been abstracted into Emacs input events. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
31 ;; |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
32 ;; The code is rather X-dependent. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
33 |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2070
diff
changeset
|
34 ;;; Code: |
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2070
diff
changeset
|
35 |
465 | 36 ;;; Utility functions. |
37 | |
38 ;;; Indent track-mouse like progn. | |
39 (put 'track-mouse 'lisp-indent-function 0) | |
66 | 40 |
17636 | 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) | |
55260
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
45 |
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
46 (defcustom mouse-drag-copy-region t |
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
47 "*If non-nil, mouse drag copies region to kill-ring." |
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
48 :type 'boolean |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59526
diff
changeset
|
49 :version "22.1" |
55260
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
50 :group 'mouse) |
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
51 |
61160
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
52 (defcustom mouse-1-click-follows-link 450 |
59036
f1a383c1b9cd
(mouse-1-click-follows-link): Doc fix.
Kim F. Storm <storm@cua.dk>
parents:
59016
diff
changeset
|
53 "Non-nil means that clicking Mouse-1 on a link follows the link. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
54 |
59036
f1a383c1b9cd
(mouse-1-click-follows-link): Doc fix.
Kim F. Storm <storm@cua.dk>
parents:
59016
diff
changeset
|
55 With the default setting, an ordinary Mouse-1 click on a link |
f1a383c1b9cd
(mouse-1-click-follows-link): Doc fix.
Kim F. Storm <storm@cua.dk>
parents:
59016
diff
changeset
|
56 performs the same action as Mouse-2 on that link, while a longer |
66123
e7767b4c6597
(mouse-1-click-follows-link): Doc fix.
Romain Francoise <romain@orebokech.com>
parents:
66085
diff
changeset
|
57 Mouse-1 click \(hold down the Mouse-1 button for more than 450 |
59036
f1a383c1b9cd
(mouse-1-click-follows-link): Doc fix.
Kim F. Storm <storm@cua.dk>
parents:
59016
diff
changeset
|
58 milliseconds) performs the original Mouse-1 binding \(which |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
59 typically sets point where you click the mouse). |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
60 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
61 If value is an integer, the time elapsed between pressing and |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
62 releasing the mouse button determines whether to follow the link |
59036
f1a383c1b9cd
(mouse-1-click-follows-link): Doc fix.
Kim F. Storm <storm@cua.dk>
parents:
59016
diff
changeset
|
63 or perform the normal Mouse-1 action (typically set point). |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
64 The absolute numeric value specifices the maximum duration of a |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
65 \"short click\" in milliseconds. A positive value means that a |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
66 short click follows the link, and a longer click performs the |
63256
08eb8fe4b5ef
(mouse-1-click-follows-link): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
61767
diff
changeset
|
67 normal action. A negative value gives the opposite behavior. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
68 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
69 If value is `double', a double click follows the link. |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
70 |
59036
f1a383c1b9cd
(mouse-1-click-follows-link): Doc fix.
Kim F. Storm <storm@cua.dk>
parents:
59016
diff
changeset
|
71 Otherwise, a single Mouse-1 click unconditionally follows the link. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
72 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
73 Note that dragging the mouse never follows the link. |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
74 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
75 This feature only works in modes that specifically identify |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
76 clickable text as links, so it may not work with some external |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
77 packages. See `mouse-on-link-p' for details." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59526
diff
changeset
|
78 :version "22.1" |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
79 :type '(choice (const :tag "Disabled" nil) |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
80 (const :tag "Double click" double) |
66123
e7767b4c6597
(mouse-1-click-follows-link): Doc fix.
Romain Francoise <romain@orebokech.com>
parents:
66085
diff
changeset
|
81 (number :tag "Single click time limit" :value 450) |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
82 (other :tag "Single click" t)) |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
83 :group 'mouse) |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
84 |
60253
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
85 (defcustom mouse-1-click-in-non-selected-windows t |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
86 "*If non-nil, a Mouse-1 click also follows links in non-selected windows. |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
87 |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
88 If nil, a Mouse-1 click on a link in a non-selected window performs |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
89 the normal mouse-1 binding, typically selects the window and sets |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
90 point at the click position." |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
91 :type 'boolean |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
92 :version "22.1" |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
93 :group 'mouse) |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
94 |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
95 |
465 | 96 |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
97 ;; Provide a mode-specific menu on a mouse button. |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
98 |
30312
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
99 (defun popup-menu (menu &optional position prefix) |
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
100 "Popup the given menu and call the selected option. |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
101 MENU can be a keymap, an easymenu-style menu or a list of keymaps as for |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
102 `x-popup-menu'. |
30312
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
103 POSITION can be a click event or ((XOFFSET YOFFSET) WINDOW) and defaults to |
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
104 the current mouse position. |
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
105 PREFIX is the prefix argument (if any) to pass to the command." |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
106 (let* ((map (cond |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
107 ((keymapp menu) menu) |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
108 ((and (listp menu) (keymapp (car menu))) menu) |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
109 (t (let* ((map (easy-menu-create-menu (car menu) (cdr menu))) |
33769
7596dea75d6b
(popup-menu): Stupid typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32327
diff
changeset
|
110 (filter (when (symbolp map) |
7596dea75d6b
(popup-menu): Stupid typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32327
diff
changeset
|
111 (plist-get (get map 'menu-prop) :filter)))) |
7596dea75d6b
(popup-menu): Stupid typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32327
diff
changeset
|
112 (if filter (funcall filter (symbol-function map)) map))))) |
32312
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
113 event cmd) |
31912
83fe15f82f7e
(popup-menu): If POSITION is nil, set it using
Dave Love <fx@gnu.org>
parents:
31390
diff
changeset
|
114 (unless position |
31923 | 115 (let ((mp (mouse-pixel-position))) |
31912
83fe15f82f7e
(popup-menu): If POSITION is nil, set it using
Dave Love <fx@gnu.org>
parents:
31390
diff
changeset
|
116 (setq position (list (list (cadr mp) (cddr mp)) (car mp))))) |
30312
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
117 ;; The looping behavior was taken from lmenu's popup-menu-popup |
30421
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
118 (while (and map (setq event |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
119 ;; map could be a prefix key, in which case |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
120 ;; we need to get its function cell |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
121 ;; definition. |
31923 | 122 (x-popup-menu position (indirect-function map)))) |
30312
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
123 ;; Strangely x-popup-menu returns a list. |
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
124 ;; mouse-major-mode-menu was using a weird: |
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
125 ;; (key-binding (apply 'vector (append '(menu-bar) menu-prefix events))) |
32312
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
126 (setq cmd |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
127 (if (and (not (keymapp map)) (listp map)) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
128 ;; We were given a list of keymaps. Search them all |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
129 ;; in sequence until a first binding is found. |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
130 (let ((mouse-click (apply 'vector event)) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
131 binding) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
132 (while (and map (null binding)) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
133 (setq binding (lookup-key (car map) mouse-click)) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
134 (if (numberp binding) ; `too long' |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
135 (setq binding nil)) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
136 (setq map (cdr map))) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
137 binding) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
138 ;; We were given a single keymap. |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
139 (lookup-key map (apply 'vector event)))) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
140 ;; Clear out echoing, which perhaps shows a prefix arg. |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
141 (message "") |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
142 ;; Maybe try again but with the submap. |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
143 (setq map (if (keymapp cmd) cmd))) |
40648
a48a4d0806b4
(popup-menu): If the user refuses to select
Richard M. Stallman <rms@gnu.org>
parents:
40379
diff
changeset
|
144 ;; If the user did not cancel by refusing to select, |
a48a4d0806b4
(popup-menu): If the user refuses to select
Richard M. Stallman <rms@gnu.org>
parents:
40379
diff
changeset
|
145 ;; and if the result is a command, run it. |
a48a4d0806b4
(popup-menu): If the user refuses to select
Richard M. Stallman <rms@gnu.org>
parents:
40379
diff
changeset
|
146 (when (and (null map) (commandp cmd)) |
32312
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
147 (setq prefix-arg prefix) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
148 ;; `setup-specified-language-environment', for instance, |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
149 ;; expects this to be set from a menu keymap. |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
150 (setq last-command-event (car (last event))) |
b95ac47063ce
(popup-menu): Move the command call outside the loop
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32269
diff
changeset
|
151 ;; mouse-major-mode-menu was using `command-execute' instead. |
32319
452e7cc818ac
(popup-menu): Balance parens.
Miles Bader <miles@gnu.org>
parents:
32312
diff
changeset
|
152 (call-interactively cmd)))) |
30425
ad577e2e48d3
(popup-menu): Set last-command-event.
Dave Love <fx@gnu.org>
parents:
30421
diff
changeset
|
153 |
85434
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
154 (defun minor-mode-menu-from-indicator (indicator) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
155 "Show menu, if any, for minor mode specified by INDICATOR. |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
156 Interactively, INDICATOR is read using completion." |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
157 (interactive (list (completing-read "Minor mode indicator: " |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
158 (describe-minor-mode-completion-table-for-indicator)))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
159 (let ((minor-mode (lookup-minor-mode-from-indicator indicator))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
160 (if minor-mode |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
161 (let* ((map (cdr-safe (assq minor-mode minor-mode-map-alist))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
162 (menu (and (keymapp map) (lookup-key map [menu-bar])))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
163 (if menu |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
164 (popup-menu menu) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
165 (message "No menu for minor mode `%s'" minor-mode))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
166 (error "Cannot find minor mode for `%s'" indicator)))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
167 |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
168 (defun mouse-minor-mode-menu (event) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
169 "Show minor-mode menu for EVENT on minor modes area of the mode line." |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
170 (interactive "@e") |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
171 (let ((indicator (car (nth 4 (car (cdr event)))))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
172 (minor-mode-menu-from-indicator indicator))) |
1921151f9249
(mouse-minor-mode-menu, minor-mode-menu-from-indicator):
Glenn Morris <rgm@gnu.org>
parents:
82298
diff
changeset
|
173 |
30425
ad577e2e48d3
(popup-menu): Set last-command-event.
Dave Love <fx@gnu.org>
parents:
30421
diff
changeset
|
174 (defvar mouse-major-mode-menu-prefix) ; dynamically bound |
ad577e2e48d3
(popup-menu): Set last-command-event.
Dave Love <fx@gnu.org>
parents:
30421
diff
changeset
|
175 |
65498
f2fdccb16607
2005-09-14 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65349
diff
changeset
|
176 (defun mouse-major-mode-menu (event &optional prefix) |
24960
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
177 "Pop up a mode-specific menu of mouse commands. |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
178 Default to the Edit menu if the major mode doesn't define a menu." |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
179 ;; Switch to the window clicked on, because otherwise |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
180 ;; the mode's commands may not make sense. |
16621
042bf1d82a14
(mouse-major-mode-menu): Propagate prefix arg
Richard M. Stallman <rms@gnu.org>
parents:
16590
diff
changeset
|
181 (interactive "@e\nP") |
21953
6655c426d447
(mouse-major-mode-menu): Run activate-menubar-hook here.
Richard M. Stallman <rms@gnu.org>
parents:
21685
diff
changeset
|
182 ;; Let the mode update its menus first. |
31390
cf8964e1d7e3
(mouse-major-mode-menu, mouse-popup-menubar): Run
Dave Love <fx@gnu.org>
parents:
31329
diff
changeset
|
183 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook) |
24960
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
184 (let* (;; This is where mouse-major-mode-menu-prefix |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
185 ;; returns the prefix we should use (after menu-bar). |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
186 ;; It is either nil or (SOME-SYMBOL). |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
187 (mouse-major-mode-menu-prefix nil) |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
188 ;; Keymap from which to inherit; may be null. |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
189 (ancestor (mouse-major-mode-menu-1 |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
190 (and (current-local-map) |
31258
12f2e341ee9c
(mouse-major-mode-menu): Use local-key-binding.
Dave Love <fx@gnu.org>
parents:
30425
diff
changeset
|
191 (local-key-binding [menu-bar])))) |
24960
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
192 ;; Make a keymap in which our last command leads to a menu or |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
193 ;; default to the edit menu. |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
194 (newmap (if ancestor |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
195 (make-sparse-keymap (concat mode-name " Mode")) |
65498
f2fdccb16607
2005-09-14 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
65349
diff
changeset
|
196 menu-bar-edit-menu))) |
24960
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
197 (if ancestor |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
198 ;; Make our menu inherit from the desired keymap which we want |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
199 ;; to display as the menu now. |
00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
Dave Love <fx@gnu.org>
parents:
23854
diff
changeset
|
200 (set-keymap-parent newmap ancestor)) |
30312
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
201 (popup-menu newmap event prefix))) |
a97801b43475
(popup-menu): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30249
diff
changeset
|
202 |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
203 |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
204 ;; Compute and cache the equivalent keys in MENU and all its submenus. |
15642
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
205 ;;;(defun mouse-major-mode-menu-compute-equiv-keys (menu) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
206 ;;; (and (eq (car menu) 'keymap) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
207 ;;; (x-popup-menu nil menu)) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
208 ;;; (while menu |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
209 ;;; (and (consp (car menu)) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
210 ;;; (consp (cdr (car menu))) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
211 ;;; (let ((tail (cdr (car menu)))) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
212 ;;; (while (and (consp tail) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
213 ;;; (not (eq (car tail) 'keymap))) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
214 ;;; (setq tail (cdr tail))) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
215 ;;; (if (consp tail) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
216 ;;; (mouse-major-mode-menu-compute-equiv-keys tail)))) |
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
217 ;;; (setq menu (cdr menu)))) |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
218 |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
219 ;; Given a mode's menu bar keymap, |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
220 ;; if it defines exactly one menu bar menu, |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
221 ;; return just that menu. |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
222 ;; Otherwise return a menu for all of them. |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
223 (defun mouse-major-mode-menu-1 (menubar) |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
224 (if menubar |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
225 (let ((tail menubar) |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
226 submap) |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
227 (while tail |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
228 (if (consp (car tail)) |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
229 (if submap |
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
230 (setq submap t) |
15642
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
231 (setq submap (car tail)))) |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
232 (setq tail (cdr tail))) |
15642
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
233 (if (eq submap t) |
15657
6ad5994053af
(mouse-major-mode-menu-1): No need to copy the top
Karl Heuer <kwzh@gnu.org>
parents:
15642
diff
changeset
|
234 menubar |
15642
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
235 (setq mouse-major-mode-menu-prefix (list (car submap))) |
30249
fb30df0ff4ab
(mouse-major-mode-menu-1): get the submenu with lookup-key.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30122
diff
changeset
|
236 (lookup-key menubar (vector (car submap))))))) |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
237 |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
238 (defun mouse-popup-menubar (event prefix) |
52405
970694efa9b5
(mouse-popup-menubar, mouse-skip-word): Doc fix.
Dave Love <fx@gnu.org>
parents:
52401
diff
changeset
|
239 "Pop up a menu equivalent to the menu bar for keyboard EVENT with PREFIX. |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
240 The contents are the items that would be in the menu bar whether or |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
241 not it is actually displayed." |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
242 (interactive "@e \nP") |
31390
cf8964e1d7e3
(mouse-major-mode-menu, mouse-popup-menubar): Run
Dave Love <fx@gnu.org>
parents:
31329
diff
changeset
|
243 (run-hooks 'activate-menubar-hook 'menu-bar-update-hook) |
30421
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
244 (let* ((local-menu (and (current-local-map) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
245 (lookup-key (current-local-map) [menu-bar]))) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
246 (global-menu (lookup-key global-map [menu-bar])) |
31329
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
247 ;; If a keymap doesn't have a prompt string (a lazy |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
248 ;; programmer didn't bother to provide one), create it and |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
249 ;; insert it into the keymap; each keymap gets its own |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
250 ;; prompt. This is required for non-toolkit versions to |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
251 ;; display non-empty menu pane names. |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
252 (minor-mode-menus |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
253 (mapcar |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
254 (function |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
255 (lambda (menu) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
256 (let* ((minor-mode (car menu)) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
257 (menu (cdr menu)) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
258 (title-or-map (cadr menu))) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
259 (or (stringp title-or-map) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
260 (setq menu |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
261 (cons 'keymap |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
262 (cons (concat |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
263 (capitalize (subst-char-in-string |
74238
1901989292d8
(mouse-popup-menubar, mouse-buffer-menu-alist): "?\ " -> "?\s".
Juanma Barranquero <lekktu@gmail.com>
parents:
74024
diff
changeset
|
264 ?- ?\s (symbol-name |
31329
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
265 minor-mode))) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
266 " Menu") |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
267 (cdr menu))))) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
268 menu))) |
f329cce08485
(mouse-popup-menubar): Supply the prompt string for
Eli Zaretskii <eliz@gnu.org>
parents:
31258
diff
changeset
|
269 (minor-mode-key-binding [menu-bar]))) |
30421
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
270 (local-title-or-map (and local-menu (cadr local-menu))) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
271 (global-title-or-map (cadr global-menu))) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
272 (or (null local-menu) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
273 (stringp local-title-or-map) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
274 (setq local-menu (cons 'keymap |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
275 (cons (concat mode-name " Mode Menu") |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
276 (cdr local-menu))))) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
277 (or (stringp global-title-or-map) |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
278 (setq global-menu (cons 'keymap |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
279 (cons "Global Menu" |
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
280 (cdr global-menu))))) |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
281 ;; Supplying the list is faster than making a new map. |
31258
12f2e341ee9c
(mouse-major-mode-menu): Use local-key-binding.
Dave Love <fx@gnu.org>
parents:
30425
diff
changeset
|
282 (popup-menu (append (list global-menu) |
12f2e341ee9c
(mouse-major-mode-menu): Use local-key-binding.
Dave Love <fx@gnu.org>
parents:
30425
diff
changeset
|
283 (if local-menu |
12f2e341ee9c
(mouse-major-mode-menu): Use local-key-binding.
Dave Love <fx@gnu.org>
parents:
30425
diff
changeset
|
284 (list local-menu)) |
12f2e341ee9c
(mouse-major-mode-menu): Use local-key-binding.
Dave Love <fx@gnu.org>
parents:
30425
diff
changeset
|
285 minor-mode-menus) |
30421
544a9b8ebb8d
(popup-menu): Run the keymap through indirect-function,
Eli Zaretskii <eliz@gnu.org>
parents:
30328
diff
changeset
|
286 event prefix))) |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
287 |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
288 (defun mouse-popup-menubar-stuff (event prefix) |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
289 "Popup a menu like either `mouse-major-mode-menu' or `mouse-popup-menubar'. |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
290 Use the former if the menu bar is showing, otherwise the latter." |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
291 (interactive "@e \nP") |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
292 (if (zerop (assoc-default 'menu-bar-lines (frame-parameters) 'eq 0)) |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
293 (mouse-popup-menubar event prefix) |
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
294 (mouse-major-mode-menu event prefix))) |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
295 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
296 ;; Commands that operate on windows. |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
297 |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
298 (defun mouse-minibuffer-check (event) |
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
299 (let ((w (posn-window (event-start event)))) |
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
300 (and (window-minibuffer-p w) |
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
301 (not (minibuffer-window-active-p w)) |
10258
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
302 (error "Minibuffer window is not active"))) |
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
303 ;; Give temporary modes such as isearch a chance to turn off. |
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
304 (run-hooks 'mouse-leave-buffer-hook)) |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
305 |
465 | 306 (defun mouse-delete-window (click) |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
307 "Delete the window you click on. |
38763
3cf8f8ea6d0e
(mouse-delete-window): Do nothing if frame has just
Gerd Moellmann <gerd@gnu.org>
parents:
37741
diff
changeset
|
308 Do nothing if the frame has just one window. |
22845
bd706438b50c
(mouse-delete-window): If the frame has just one window,
Richard M. Stallman <rms@gnu.org>
parents:
21953
diff
changeset
|
309 This command must be bound to a mouse click." |
1113 | 310 (interactive "e") |
38763
3cf8f8ea6d0e
(mouse-delete-window): Do nothing if frame has just
Gerd Moellmann <gerd@gnu.org>
parents:
37741
diff
changeset
|
311 (unless (one-window-p t) |
22845
bd706438b50c
(mouse-delete-window): If the frame has just one window,
Richard M. Stallman <rms@gnu.org>
parents:
21953
diff
changeset
|
312 (mouse-minibuffer-check click) |
bd706438b50c
(mouse-delete-window): If the frame has just one window,
Richard M. Stallman <rms@gnu.org>
parents:
21953
diff
changeset
|
313 (delete-window (posn-window (event-start click))))) |
465 | 314 |
6090
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
315 (defun mouse-select-window (click) |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
316 "Select the window clicked on; don't move point." |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
317 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
318 (mouse-minibuffer-check click) |
6090
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
319 (let ((oframe (selected-frame)) |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
320 (frame (window-frame (posn-window (event-start click))))) |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
321 (select-window (posn-window (event-start click))) |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
322 (raise-frame frame) |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
323 (select-frame frame) |
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
324 (or (eq frame oframe) |
16087
26b552f014ff
(mouse-select-window): Don't call unfocus-frame.
Richard M. Stallman <rms@gnu.org>
parents:
16016
diff
changeset
|
325 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))) |
6090
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
326 |
1421
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
327 (defun mouse-tear-off-window (click) |
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
328 "Delete the window clicked on, and create a new frame displaying its buffer." |
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
329 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
330 (mouse-minibuffer-check click) |
1421
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
331 (let* ((window (posn-window (event-start click))) |
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
332 (buf (window-buffer window)) |
7363
f35fe65c9755
(mouse-tear-off-window): Change new-frame to make-frame.
Karl Heuer <kwzh@gnu.org>
parents:
7302
diff
changeset
|
333 (frame (make-frame))) |
1421
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
334 (select-frame frame) |
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
335 (switch-to-buffer buf) |
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
336 (delete-window window))) |
a8378792a31d
* mouse.el (mouse-tear-off-window): New function.
Jim Blandy <jimb@redhat.com>
parents:
1420
diff
changeset
|
337 |
1363
f34d8e4d1d7b
* mouse.el: Begin adapting this to the new event format.
Jim Blandy <jimb@redhat.com>
parents:
1214
diff
changeset
|
338 (defun mouse-delete-other-windows () |
37741
7b449aec29d2
(mouse-delete-other-windows): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
36134
diff
changeset
|
339 "Delete all windows except the one you click on." |
1363
f34d8e4d1d7b
* mouse.el: Begin adapting this to the new event format.
Jim Blandy <jimb@redhat.com>
parents:
1214
diff
changeset
|
340 (interactive "@") |
66 | 341 (delete-other-windows)) |
342 | |
465 | 343 (defun mouse-split-window-vertically (click) |
344 "Select Emacs window mouse is on, then split it vertically in half. | |
345 The window is split at the line clicked on. | |
346 This command must be bound to a mouse click." | |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
347 (interactive "@e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
348 (mouse-minibuffer-check click) |
1363
f34d8e4d1d7b
* mouse.el: Begin adapting this to the new event format.
Jim Blandy <jimb@redhat.com>
parents:
1214
diff
changeset
|
349 (let ((start (event-start click))) |
f34d8e4d1d7b
* mouse.el: Begin adapting this to the new event format.
Jim Blandy <jimb@redhat.com>
parents:
1214
diff
changeset
|
350 (select-window (posn-window start)) |
7637
cc55e77a9819
(mouse-split-window-vertically): Treat scroll bar events just like others.
Richard M. Stallman <rms@gnu.org>
parents:
7593
diff
changeset
|
351 (let ((new-height (1+ (cdr (posn-col-row (event-end click))))) |
1980
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
352 (first-line window-min-height) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
353 (last-line (- (window-height) window-min-height))) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
354 (if (< last-line first-line) |
8426
3abe02e03dc8
Capitalize some error messages.
Richard M. Stallman <rms@gnu.org>
parents:
8381
diff
changeset
|
355 (error "Window too short to split") |
1980
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
356 (split-window-vertically |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
357 (min (max new-height first-line) last-line)))))) |
66 | 358 |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
359 (defun mouse-split-window-horizontally (click) |
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
360 "Select Emacs window mouse is on, then split it horizontally in half. |
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
361 The window is split at the column clicked on. |
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
362 This command must be bound to a mouse click." |
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
363 (interactive "@e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
364 (mouse-minibuffer-check click) |
1980
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
365 (let ((start (event-start click))) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
366 (select-window (posn-window start)) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
367 (let ((new-width (1+ (car (posn-col-row (event-end click))))) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
368 (first-col window-min-width) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
369 (last-col (- (window-width) window-min-width))) |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
370 (if (< last-col first-col) |
8426
3abe02e03dc8
Capitalize some error messages.
Richard M. Stallman <rms@gnu.org>
parents:
8381
diff
changeset
|
371 (error "Window too narrow to split") |
1980
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
372 (split-window-horizontally |
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
373 (min (max new-width first-col) last-col)))))) |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
374 |
42399
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
375 (defun mouse-drag-window-above (window) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
376 "Return the (or a) window directly above WINDOW. |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
377 That means one whose bottom edge is at the same height as WINDOW's top edge." |
67954
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
378 (let ((start-top (nth 1 (window-edges window))) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
379 (start-left (nth 0 (window-edges window))) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
380 (start-right (nth 2 (window-edges window))) |
42399
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
381 (start-window window) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
382 above-window) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
383 (setq window (previous-window window 0)) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
384 (while (and (not above-window) (not (eq window start-window))) |
67954
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
385 (let ((left (nth 0 (window-edges window))) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
386 (right (nth 2 (window-edges window)))) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
387 (when (and (= (+ (window-height window) (nth 1 (window-edges window))) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
388 start-top) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
389 (or (and (<= left start-left) (<= start-right right)) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
390 (and (<= start-left left) (<= left start-right)) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
391 (and (<= start-left right) (<= right start-right)))) |
f223df02d351
(mouse-drag-window-above): Verify that the found window overlaps with the
Eli Zaretskii <eliz@gnu.org>
parents:
67870
diff
changeset
|
392 (setq above-window window))) |
42399
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
393 (setq window (previous-window window))) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
394 above-window)) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
395 |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
396 (defun mouse-drag-move-window-bottom (window growth) |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
397 "Move the bottom of WINDOW up or down by GROWTH lines. |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
398 Move it down if GROWTH is positive, or up if GROWTH is negative. |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
399 If this would make WINDOW too short, |
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
400 shrink the window or windows above it to make room." |
67158
2c91c2e7af3a
(mouse-drag-move-window-bottom): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
66669
diff
changeset
|
401 (condition-case nil |
2c91c2e7af3a
(mouse-drag-move-window-bottom): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
66669
diff
changeset
|
402 (adjust-window-trailing-edge window growth nil) |
2c91c2e7af3a
(mouse-drag-move-window-bottom): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
66669
diff
changeset
|
403 (error nil))) |
42399
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
404 |
57569
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
405 (defsubst mouse-drag-move-window-top (window growth) |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
406 "Move the top of WINDOW up or down by GROWTH lines. |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
407 Move it down if GROWTH is positive, or up if GROWTH is negative. |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
408 If this would make WINDOW too short, shrink the window or windows |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
409 above it to make room." |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
410 ;; Moving the top of WINDOW is actually moving the bottom of the |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
411 ;; window above. |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
412 (let ((window-above (mouse-drag-window-above window))) |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
413 (and window-above |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
414 (mouse-drag-move-window-bottom window-above (- growth))))) |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
415 |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
416 (defun mouse-drag-mode-line-1 (start-event mode-line-p) |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
417 "Change the height of a window by dragging on the mode or header line. |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
418 START-EVENT is the starting mouse-event of the drag action. |
42399
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
419 MODE-LINE-P non-nil means dragging a mode line; nil means a header line." |
10258
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
420 ;; Give temporary modes such as isearch a chance to turn off. |
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
421 (run-hooks 'mouse-leave-buffer-hook) |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
422 (let* ((done nil) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
423 (echo-keystrokes 0) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
424 (start (event-start start-event)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
425 (start-event-window (posn-window start)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
426 (start-event-frame (window-frame start-event-window)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
427 (start-nwindows (count-windows t)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
428 (minibuffer (frame-parameter nil 'minibuffer)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
429 should-enlarge-minibuffer event mouse y top bot edges wconfig growth) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
430 (track-mouse |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
431 (progn |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
432 ;; if this is the bottommost ordinary window, then to |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
433 ;; move its modeline the minibuffer must be enlarged. |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
434 (setq should-enlarge-minibuffer |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
435 (and minibuffer |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
436 mode-line-p |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
437 (not (one-window-p t)) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
438 (= (nth 1 (window-edges minibuffer)) |
76293
91a6d7f7e1a7
(mouse-drag-mode-line-1, mouse-drag-vertical-line):
Richard M. Stallman <rms@gnu.org>
parents:
76155
diff
changeset
|
439 (nth 3 (window-edges start-event-window))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
440 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
441 ;; loop reading events and sampling the position of |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
442 ;; the mouse. |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
443 (while (not done) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
444 (setq event (read-event) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
445 mouse (mouse-position)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
446 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
447 ;; do nothing if |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
448 ;; - there is a switch-frame event. |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
449 ;; - the mouse isn't in the frame that we started in |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
450 ;; - the mouse isn't in any Emacs frame |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
451 ;; drag if |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
452 ;; - there is a mouse-movement event |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
453 ;; - there is a scroll-bar-movement event |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
454 ;; (same as mouse movement for our purposes) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
455 ;; quit if |
78067
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
456 ;; - there is a keyboard event or some other unknown event. |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
457 (cond ((not (consp event)) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
458 (setq done t)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
459 |
59470
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
460 ((memq (car event) '(switch-frame select-window)) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
461 nil) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
462 |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
463 ((not (memq (car event) '(mouse-movement scroll-bar-movement))) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
464 (when (consp event) |
78067
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
465 ;; Do not unread a drag-mouse-1 event since it will cause the |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
466 ;; selection of the window above when dragging the modeline |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
467 ;; above the selected window. |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
468 (unless (eq (car event) 'drag-mouse-1) |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
469 (push event unread-command-events))) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
470 (setq done t)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
471 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
472 ((not (eq (car mouse) start-event-frame)) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
473 nil) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
474 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
475 ((null (car (cdr mouse))) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
476 nil) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
477 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
478 (t |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
479 (setq y (cdr (cdr mouse)) |
76293
91a6d7f7e1a7
(mouse-drag-mode-line-1, mouse-drag-vertical-line):
Richard M. Stallman <rms@gnu.org>
parents:
76155
diff
changeset
|
480 edges (window-edges start-event-window) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
481 top (nth 1 edges) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
482 bot (nth 3 edges)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
483 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
484 ;; compute size change needed |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
485 (cond (mode-line-p |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
486 (setq growth (- y bot -1))) |
32269
5bccbf00889a
(mouse-drag-mode-line-1): Fix an off-by-one error in
Eli Zaretskii <eliz@gnu.org>
parents:
32207
diff
changeset
|
487 (t ; header line |
5bccbf00889a
(mouse-drag-mode-line-1): Fix an off-by-one error in
Eli Zaretskii <eliz@gnu.org>
parents:
32207
diff
changeset
|
488 (when (< (- bot y) window-min-height) |
5bccbf00889a
(mouse-drag-mode-line-1): Fix an off-by-one error in
Eli Zaretskii <eliz@gnu.org>
parents:
32207
diff
changeset
|
489 (setq y (- bot window-min-height))) |
5bccbf00889a
(mouse-drag-mode-line-1): Fix an off-by-one error in
Eli Zaretskii <eliz@gnu.org>
parents:
32207
diff
changeset
|
490 ;; The window's top includes the header line! |
5bccbf00889a
(mouse-drag-mode-line-1): Fix an off-by-one error in
Eli Zaretskii <eliz@gnu.org>
parents:
32207
diff
changeset
|
491 (setq growth (- top y)))) |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
492 (setq wconfig (current-window-configuration)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
493 |
16636
ba78d234fe6c
(mouse-drag-mode-line): Don't get error
Richard M. Stallman <rms@gnu.org>
parents:
16621
diff
changeset
|
494 ;; Check for an error case. |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
495 (when (and (/= growth 0) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
496 (not minibuffer) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
497 (one-window-p t)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
498 (error "Attempt to resize sole window")) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
499 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
500 ;; grow/shrink minibuffer? |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
501 (if should-enlarge-minibuffer |
68858
bb38a98ef7ad
(mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
Richard M. Stallman <rms@gnu.org>
parents:
68734
diff
changeset
|
502 (unless resize-mini-windows |
bb38a98ef7ad
(mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
Richard M. Stallman <rms@gnu.org>
parents:
68734
diff
changeset
|
503 (mouse-drag-move-window-bottom start-event-window growth)) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
504 ;; no. grow/shrink the selected window |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
505 ;(message "growth = %d" growth) |
57569
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
506 (if mode-line-p |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
507 (mouse-drag-move-window-bottom start-event-window growth) |
f2e8ab894ad3
(mouse-drag-move-window-top): New function.
David Ponce <david@dponce.com>
parents:
57524
diff
changeset
|
508 (mouse-drag-move-window-top start-event-window growth))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
509 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
510 ;; if this window's growth caused another |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
511 ;; window to be deleted because it was too |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
512 ;; short, rescind the change. |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
513 ;; |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
514 ;; if size change caused space to be stolen |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
515 ;; from a window above this one, rescind the |
30249
fb30df0ff4ab
(mouse-major-mode-menu-1): get the submenu with lookup-key.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30122
diff
changeset
|
516 ;; change, but only if we didn't grow/shrink |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
517 ;; the minibuffer. minibuffer size changes |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
518 ;; can cause all windows to shrink... no way |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
519 ;; around it. |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
520 (when (or (/= start-nwindows (count-windows t)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
521 (and (not should-enlarge-minibuffer) |
42399
92c21a38c096
(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman <rms@gnu.org>
parents:
42149
diff
changeset
|
522 (> growth 0) |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
523 mode-line-p |
78067
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
524 (/= top |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
525 (nth 1 (window-edges |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
526 ;; Choose right window. |
b24147eb76bb
(mouse-drag-mode-line-1): Quit mouse tracking when
Martin Rudalics <rudalics@gmx.at>
parents:
76876
diff
changeset
|
527 start-event-window))))) |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
528 (set-window-configuration wconfig))))))))) |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
529 |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
530 (defun mouse-drag-mode-line (start-event) |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
531 "Change the height of a window by dragging on the mode line." |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
532 (interactive "e") |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
533 (mouse-drag-mode-line-1 start-event t)) |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
534 |
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
535 (defun mouse-drag-header-line (start-event) |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
536 "Change the height of a window by dragging on the header line. |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
537 Windows whose header-lines are at the top of the frame cannot be |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
538 resized by dragging their header-line." |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
539 (interactive "e") |
32207
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
540 ;; Changing the window's size by dragging its header-line when the |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
541 ;; header-line is at the top of the frame is somewhat strange, |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
542 ;; because the header-line doesn't move, so don't do it. |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
543 (let* ((start (event-start start-event)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
544 (window (posn-window start)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
545 (frame (window-frame window)) |
03dee1b8a506
(mouse-drag-header-line): Don't allow window resizing
Gerd Moellmann <gerd@gnu.org>
parents:
31923
diff
changeset
|
546 (first-window (frame-first-window frame))) |
65349
3607a394b655
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
547 (unless (or (eq window first-window) |
3607a394b655
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
548 (= (nth 1 (window-edges window)) |
3607a394b655
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
549 (nth 1 (window-edges first-window)))) |
3607a394b655
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
550 (mouse-drag-mode-line-1 start-event nil)))) |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
551 |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
552 |
71391
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
553 (defun mouse-drag-vertical-line-rightward-window (window) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
554 "Return a window that is immediately to the right of WINDOW, or nil." |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
555 (let ((bottom (nth 3 (window-inside-edges window))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
556 (left (nth 0 (window-inside-edges window))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
557 best best-right |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
558 (try (previous-window window))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
559 (while (not (eq try window)) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
560 (let ((try-top (nth 1 (window-inside-edges try))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
561 (try-bottom (nth 3 (window-inside-edges try))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
562 (try-right (nth 2 (window-inside-edges try)))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
563 (if (and (< try-top bottom) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
564 (>= try-bottom bottom) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
565 (< try-right left) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
566 (or (null best-right) (> try-right best-right))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
567 (setq best-right try-right best try))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
568 (setq try (previous-window try))) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
569 best)) |
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
570 |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
571 (defun mouse-drag-vertical-line (start-event) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
572 "Change the width of a window by dragging on the vertical line." |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
573 (interactive "e") |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
574 ;; Give temporary modes such as isearch a chance to turn off. |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
575 (run-hooks 'mouse-leave-buffer-hook) |
20686
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
576 (let* ((done nil) |
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
577 (echo-keystrokes 0) |
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
578 (start-event-frame (window-frame (car (car (cdr start-event))))) |
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
579 (start-event-window (car (car (cdr start-event)))) |
72999
c983ed5a8049
(mouse-on-link-p): Tentatively fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72890
diff
changeset
|
580 event mouse x left right edges growth |
20686
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
581 (which-side |
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
582 (or (cdr (assq 'vertical-scroll-bars (frame-parameters start-event-frame))) |
988d8082f292
(mouse-drag-vertical-line): Properly determine which
Richard M. Stallman <rms@gnu.org>
parents:
20124
diff
changeset
|
583 'right))) |
69514
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
584 (cond |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
585 ((one-window-p t) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
586 (error "Attempt to resize sole ordinary window")) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
587 ((and (eq which-side 'right) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
588 (>= (nth 2 (window-inside-edges start-event-window)) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
589 (frame-width start-event-frame))) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
590 (error "Attempt to drag rightmost scrollbar")) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
591 ((and (eq which-side 'left) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
592 (= (nth 0 (window-inside-edges start-event-window)) 0)) |
4540a0223bcc
* mouse.el (mouse-drag-vertical-line): Use window-inside-edges
Chong Yidong <cyd@stupidchicken.com>
parents:
68858
diff
changeset
|
593 (error "Attempt to drag leftmost scrollbar"))) |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
594 (track-mouse |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
595 (progn |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
596 ;; loop reading events and sampling the position of |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
597 ;; the mouse. |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
598 (while (not done) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
599 (setq event (read-event) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
600 mouse (mouse-position)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
601 ;; do nothing if |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
602 ;; - there is a switch-frame event. |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
603 ;; - the mouse isn't in the frame that we started in |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
604 ;; - the mouse isn't in any Emacs frame |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
605 ;; drag if |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
606 ;; - there is a mouse-movement event |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
607 ;; - there is a scroll-bar-movement event |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
608 ;; (same as mouse movement for our purposes) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
609 ;; quit if |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
610 ;; - there is a keyboard event or some other unknown event |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
611 ;; unknown event. |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
612 (cond ((integerp event) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
613 (setq done t)) |
59470
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
614 ((memq (car event) '(switch-frame select-window)) |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
615 nil) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
616 ((not (memq (car event) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
617 '(mouse-movement scroll-bar-movement))) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
618 (if (consp event) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
619 (setq unread-command-events |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
620 (cons event unread-command-events))) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
621 (setq done t)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
622 ((not (eq (car mouse) start-event-frame)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
623 nil) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
624 ((null (car (cdr mouse))) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
625 nil) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
626 (t |
67524
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
627 (let ((window |
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
628 ;; If the scroll bar is on the window's left, |
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
629 ;; adjust the window on the left. |
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
630 (if (eq which-side 'right) |
76293
91a6d7f7e1a7
(mouse-drag-mode-line-1, mouse-drag-vertical-line):
Richard M. Stallman <rms@gnu.org>
parents:
76155
diff
changeset
|
631 start-event-window |
71391
baf495881cff
(mouse-drag-vertical-line-rightward-window): New function.
Richard M. Stallman <rms@gnu.org>
parents:
69514
diff
changeset
|
632 (mouse-drag-vertical-line-rightward-window |
76293
91a6d7f7e1a7
(mouse-drag-mode-line-1, mouse-drag-vertical-line):
Richard M. Stallman <rms@gnu.org>
parents:
76155
diff
changeset
|
633 start-event-window)))) |
20124
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
634 (setq x (- (car (cdr mouse)) |
23854 | 635 (if (eq which-side 'right) 0 2)) |
67524
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
636 edges (window-edges window) |
20124
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
637 left (nth 0 edges) |
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
638 right (nth 2 edges)) |
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
639 ;; scale back a move that would make the |
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
640 ;; window too thin. |
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
641 (if (< (- x left -1) window-min-width) |
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
642 (setq x (+ left window-min-width -1))) |
ecae234a33bb
(mouse-drag-vertical-line): Handle left-side scroll bars.
Karl Heuer <kwzh@gnu.org>
parents:
18689
diff
changeset
|
643 ;; compute size change needed |
67524
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
644 (setq growth (- x right -1)) |
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
645 (condition-case nil |
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
646 (adjust-window-trailing-edge window growth t) |
9014ad13a926
(mouse-drag-vertical-line): Use adjust-window-trailing-edge.
Richard M. Stallman <rms@gnu.org>
parents:
67158
diff
changeset
|
647 (error nil)))))))))) |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
648 |
4554
cf541ed1fed8
(mouse-set-point): Use event-end, not event-start.
Richard M. Stallman <rms@gnu.org>
parents:
4532
diff
changeset
|
649 (defun mouse-set-point (event) |
465 | 650 "Move point to the position clicked on with the mouse. |
4554
cf541ed1fed8
(mouse-set-point): Use event-end, not event-start.
Richard M. Stallman <rms@gnu.org>
parents:
4532
diff
changeset
|
651 This should be bound to a mouse click event type." |
1113 | 652 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
653 (mouse-minibuffer-check event) |
4554
cf541ed1fed8
(mouse-set-point): Use event-end, not event-start.
Richard M. Stallman <rms@gnu.org>
parents:
4532
diff
changeset
|
654 ;; Use event-end in case called from mouse-drag-region. |
cf541ed1fed8
(mouse-set-point): Use event-end, not event-start.
Richard M. Stallman <rms@gnu.org>
parents:
4532
diff
changeset
|
655 ;; If EVENT is a click, event-end and event-start give same value. |
54867
c59162a8d0f8
(mouse-set-point): Use it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53133
diff
changeset
|
656 (posn-set-point (event-end event))) |
66 | 657 |
10720
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
658 (defvar mouse-last-region-beg nil) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
659 (defvar mouse-last-region-end nil) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
660 (defvar mouse-last-region-tick nil) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
661 |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
662 (defun mouse-region-match () |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
663 "Return non-nil if there's an active region that was set with the mouse." |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
664 (and (mark t) mark-active |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
665 (eq mouse-last-region-beg (region-beginning)) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
666 (eq mouse-last-region-end (region-end)) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
667 (eq mouse-last-region-tick (buffer-modified-tick)))) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
668 |
1420
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
669 (defun mouse-set-region (click) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
670 "Set the region to the text dragged over, and copy to kill ring. |
4554
cf541ed1fed8
(mouse-set-point): Use event-end, not event-start.
Richard M. Stallman <rms@gnu.org>
parents:
4532
diff
changeset
|
671 This should be bound to a mouse drag event." |
1420
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
672 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
673 (mouse-minibuffer-check click) |
1420
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
674 (let ((posn (event-start click)) |
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
675 (end (event-end click))) |
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
676 (select-window (posn-window posn)) |
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
677 (if (numberp (posn-point posn)) |
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
678 (goto-char (posn-point posn))) |
2799
93a5aef19835
(mouse-drag-region): New command, on down-mouse-1.
Richard M. Stallman <rms@gnu.org>
parents:
2632
diff
changeset
|
679 ;; If mark is highlighted, no need to bounce the cursor. |
12078
eb9f9e9cd522
(mouse-set-region): Don't bounce the cursor on X.
Karl Heuer <kwzh@gnu.org>
parents:
11863
diff
changeset
|
680 ;; On X, we highlight while dragging, thus once again no need to bounce. |
eb9f9e9cd522
(mouse-set-region): Don't bounce the cursor on X.
Karl Heuer <kwzh@gnu.org>
parents:
11863
diff
changeset
|
681 (or transient-mark-mode |
66180
c80a3a047c83
(mouse-set-region): Don't do sit-for on a mac frame.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66123
diff
changeset
|
682 (memq (framep (selected-frame)) '(x pc w32 mac)) |
2799
93a5aef19835
(mouse-drag-region): New command, on down-mouse-1.
Richard M. Stallman <rms@gnu.org>
parents:
2632
diff
changeset
|
683 (sit-for 1)) |
1420
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
684 (push-mark) |
2802
02c75b605550
(mouse-set-region): Call set-mark to activate mark.
Richard M. Stallman <rms@gnu.org>
parents:
2799
diff
changeset
|
685 (set-mark (point)) |
1420
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
686 (if (numberp (posn-point end)) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
687 (goto-char (posn-point end))) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
688 ;; Don't set this-command to kill-region, so that a following |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
689 ;; C-w will not double the text in the kill ring. |
12257
29b6db180047
(mouse-set-region): Bind last-command with this-command.
Richard M. Stallman <rms@gnu.org>
parents:
12078
diff
changeset
|
690 ;; Ignore last-command so we don't append to a preceding kill. |
55260
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
691 (when mouse-drag-copy-region |
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
692 (let (this-command last-command deactivate-mark) |
f547921c38ba
(mouse-drag-copy-region): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
54867
diff
changeset
|
693 (copy-region-as-kill (mark) (point)))) |
10720
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
694 (mouse-set-region-1))) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
695 |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
696 (defun mouse-set-region-1 () |
55803
9070d5f984ea
(mouse-set-region-1): Use temporary transient-mark-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55260
diff
changeset
|
697 ;; Set transient-mark-mode for a little while. |
56379
72ec8013c5a1
(mouse-set-region-1): If transient-mark-mode
Richard M. Stallman <rms@gnu.org>
parents:
56171
diff
changeset
|
698 (if (memq transient-mark-mode '(nil identity)) |
72ec8013c5a1
(mouse-set-region-1): If transient-mark-mode
Richard M. Stallman <rms@gnu.org>
parents:
56171
diff
changeset
|
699 (setq transient-mark-mode 'only)) |
10720
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
700 (setq mouse-last-region-beg (region-beginning)) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
701 (setq mouse-last-region-end (region-end)) |
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
702 (setq mouse-last-region-tick (buffer-modified-tick))) |
1420
4005f73e5712
(mouse-set-region): New command. Bind drag-mouse-1 to it.
Richard M. Stallman <rms@gnu.org>
parents:
1363
diff
changeset
|
703 |
17636 | 704 (defcustom mouse-scroll-delay 0.25 |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
705 "*The pause between scroll steps caused by mouse drags, in seconds. |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
706 If you drag the mouse beyond the edge of a window, Emacs scrolls the |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
707 window to bring the text beyond that edge into view, with a delay of |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
708 this many seconds between scroll steps. Scrolling stops when you move |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
709 the mouse back into the window, or release the button. |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
710 This variable's value may be non-integral. |
17636 | 711 Setting this to zero causes Emacs to scroll as fast as it can." |
712 :type 'number | |
713 :group 'mouse) | |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
714 |
17636 | 715 (defcustom mouse-scroll-min-lines 1 |
13068
9cc4392719e3
[These changes were actually in the previous version.
Richard M. Stallman <rms@gnu.org>
parents:
13038
diff
changeset
|
716 "*The minimum number of lines scrolled by dragging mouse out of window. |
9cc4392719e3
[These changes were actually in the previous version.
Richard M. Stallman <rms@gnu.org>
parents:
13038
diff
changeset
|
717 Moving the mouse out the top or bottom edge of the window begins |
9cc4392719e3
[These changes were actually in the previous version.
Richard M. Stallman <rms@gnu.org>
parents:
13038
diff
changeset
|
718 scrolling repeatedly. The number of lines scrolled per repetition |
9cc4392719e3
[These changes were actually in the previous version.
Richard M. Stallman <rms@gnu.org>
parents:
13038
diff
changeset
|
719 is normally equal to the number of lines beyond the window edge that |
9cc4392719e3
[These changes were actually in the previous version.
Richard M. Stallman <rms@gnu.org>
parents:
13038
diff
changeset
|
720 the mouse has moved. However, it always scrolls at least the number |
17636 | 721 of lines specified by this variable." |
722 :type 'integer | |
723 :group 'mouse) | |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
724 |
7932
ac4b606bcfa2
(mouse-scroll-subr): New arg WINDOW.
Richard M. Stallman <rms@gnu.org>
parents:
7901
diff
changeset
|
725 (defun mouse-scroll-subr (window jump &optional overlay start) |
ac4b606bcfa2
(mouse-scroll-subr): New arg WINDOW.
Richard M. Stallman <rms@gnu.org>
parents:
7901
diff
changeset
|
726 "Scroll the window WINDOW, JUMP lines at a time, until new input arrives. |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
727 If OVERLAY is an overlay, let it stretch from START to the far edge of |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
728 the newly visible text. |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
729 Upon exit, point is at the far edge of the newly visible text." |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
730 (cond |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
731 ((and (> jump 0) (< jump mouse-scroll-min-lines)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
732 (setq jump mouse-scroll-min-lines)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
733 ((and (< jump 0) (< (- jump) mouse-scroll-min-lines)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
734 (setq jump (- mouse-scroll-min-lines)))) |
7966
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
735 (let ((opoint (point))) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
736 (while (progn |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
737 (goto-char (window-start window)) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
738 (if (not (zerop (vertical-motion jump window))) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
739 (progn |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
740 (set-window-start window (point)) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
741 (if (natnump jump) |
21176
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
742 (if (window-end window) |
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
743 (progn |
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
744 (goto-char (window-end window)) |
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
745 ;; window-end doesn't reflect the window's new |
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
746 ;; start position until the next redisplay. |
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
747 (vertical-motion (1- jump) window)) |
c42a2b3bbb21
(mouse-scroll-subr): Handle if window-end returns nil.
Richard M. Stallman <rms@gnu.org>
parents:
21148
diff
changeset
|
748 (vertical-motion (- (window-height window) 2))) |
7966
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
749 (goto-char (window-start window))) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
750 (if overlay |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
751 (move-overlay overlay start (point))) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
752 ;; Now that we have scrolled WINDOW properly, |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
753 ;; put point back where it was for the redisplay |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
754 ;; so that we don't mess up the selected window. |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
755 (or (eq window (selected-window)) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
756 (goto-char opoint)) |
8064
d04a39ce4f1d
(mouse-scroll-subr): Don't do anything special at eob.
Richard M. Stallman <rms@gnu.org>
parents:
7966
diff
changeset
|
757 (sit-for mouse-scroll-delay))))) |
7966
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
758 (or (eq window (selected-window)) |
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
759 (goto-char opoint)))) |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
760 |
11453
5ed0795c4155
Create mouse-drag-overlay as a dead overlay, instead
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
761 ;; Create an overlay and immediately delete it, to get "overlay in no buffer". |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
762 (defconst mouse-drag-overlay |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
763 (let ((ol (make-overlay (point-min) (point-min)))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
764 (delete-overlay ol) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
765 (overlay-put ol 'face 'region) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
766 ol)) |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
767 |
5027
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
768 (defvar mouse-selection-click-count 0) |
4751
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
769 |
12436
ffd777dc7d29
(mouse-selection-click-count-buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12357
diff
changeset
|
770 (defvar mouse-selection-click-count-buffer nil) |
ffd777dc7d29
(mouse-selection-click-count-buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12357
diff
changeset
|
771 |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
772 (defun mouse-drag-region (start-event) |
2799
93a5aef19835
(mouse-drag-region): New command, on down-mouse-1.
Richard M. Stallman <rms@gnu.org>
parents:
2632
diff
changeset
|
773 "Set the region to the text that the mouse is dragged over. |
4532
c2afed091afb
(mouse-drag-region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4490
diff
changeset
|
774 Highlight the drag area as you move the mouse. |
c2afed091afb
(mouse-drag-region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4490
diff
changeset
|
775 This must be bound to a button-down mouse event. |
15116
a152ab5c09b0
(mouse-drag-region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
15082
diff
changeset
|
776 In Transient Mark mode, the highlighting remains as long as the mark |
42806
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
777 remains active. Otherwise, it remains until the next input event. |
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
778 |
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
779 If the click is in the echo area, display the `*Messages*' buffer." |
3566
dc2b64ef30dc
(mouse-drag-region-1): Un-comment-out this function.
Richard M. Stallman <rms@gnu.org>
parents:
3420
diff
changeset
|
780 (interactive "e") |
59470
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
781 (let ((w (posn-window (event-start start-event)))) |
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
782 (if (and (window-minibuffer-p w) |
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
783 (not (minibuffer-window-active-p w))) |
42806
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
784 (save-excursion |
59526 | 785 ;; Swallow the up-event. |
42806
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
786 (read-event) |
66322
e921fbeaaddb
2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
Romain Francoise <romain@orebokech.com>
parents:
66180
diff
changeset
|
787 (set-buffer (get-buffer-create "*Messages*")) |
42806
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
788 (goto-char (point-max)) |
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
789 (display-buffer (current-buffer))) |
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
790 ;; Give temporary modes such as isearch a chance to turn off. |
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
791 (run-hooks 'mouse-leave-buffer-hook) |
67997
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
792 (mouse-drag-track start-event t)))) |
42806
7ec99458ed2e
(mouse-drag-region-1): Renamed from mouse-drag-region.
Richard M. Stallman <rms@gnu.org>
parents:
42399
diff
changeset
|
793 |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
794 |
72890
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
795 (defun mouse-posn-property (pos property) |
73006
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
796 "Look for a property at click position. |
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
797 POS may be either a buffer position or a click position like |
73042
f4f55aa95877
(mouse-posn-property): Fix typo for `event-start' in
David Kastrup <dak@gnu.org>
parents:
73006
diff
changeset
|
798 those returned from `event-start'. If the click position is on |
73006
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
799 a string, the text property PROPERTY is examined. |
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
800 If this is nil or the click is not on a string, then |
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
801 the corresponding buffer position is searched for PROPERTY. |
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
802 If PROPERTY is encountered in one of those places, |
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
803 its value is returned." |
72890
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
804 (if (consp pos) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
805 (let ((w (posn-window pos)) (pt (posn-point pos)) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
806 (str (posn-string pos))) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
807 (or (and str |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
808 (get-text-property (cdr str) property (car str))) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
809 (and pt |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
810 (get-char-property pt property w)))) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
811 (get-char-property pos property))) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
812 |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
813 (defun mouse-on-link-p (pos) |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
814 "Return non-nil if POS is on a link in the current buffer. |
72077
e345212112f0
(mouse-on-link-p): Doc fix.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
71391
diff
changeset
|
815 POS must be a buffer position in the current buffer or a mouse |
e345212112f0
(mouse-on-link-p): Doc fix.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
71391
diff
changeset
|
816 event location in the selected window (see `event-start'). |
60253
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
817 However, if `mouse-1-click-in-non-selected-windows' is non-nil, |
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
818 POS may be a mouse event location in any window. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
819 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
820 A clickable link is identified by one of the following methods: |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
821 |
59500 | 822 - If the character at POS has a non-nil `follow-link' text or |
61376
15f4c9e1a9b2
(mouse-on-link-p): Tiny doc fix.
Kim F. Storm <storm@cua.dk>
parents:
61160
diff
changeset
|
823 overlay property, the value of that property determines what to do. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
824 |
59500 | 825 - If there is a local key-binding or a keybinding at position POS |
826 for the `follow-link' event, the binding of that event determines | |
827 what to do. | |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
828 |
59500 | 829 The resulting value determine whether POS is inside a link: |
830 | |
831 - If the value is `mouse-face', POS is inside a link if there | |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
832 is a non-nil `mouse-face' property at POS. Return t in this case. |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
833 |
59500 | 834 - If the value is a function, FUNC, POS is inside a link if |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
835 the call \(FUNC POS) returns non-nil. Return the return value |
72077
e345212112f0
(mouse-on-link-p): Doc fix.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
71391
diff
changeset
|
836 from that call. Arg is \(posn-point POS) if POS is a mouse event. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
837 |
59500 | 838 - Otherwise, return the value itself. |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
839 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
840 The return value is interpreted as follows: |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
841 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
842 - If it is a string, the mouse-1 event is translated into the |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
843 first character of the string, i.e. the action of the mouse-1 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
844 click is the local or global binding of that character. |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
845 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
846 - If it is a vector, the mouse-1 event is translated into the |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
847 first element of that vector, i.e. the action of the mouse-1 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
848 click is the local or global binding of that event. |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
849 |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
850 - Otherwise, the mouse-1 event is translated into a mouse-2 event |
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
851 at the same position." |
72890
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
852 (let ((action |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
853 (and (or (not (consp pos)) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
854 mouse-1-click-in-non-selected-windows |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
855 (eq (selected-window) (posn-window pos))) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
856 (or (mouse-posn-property pos 'follow-link) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
857 (key-binding [follow-link] nil t pos))))) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
858 (cond |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
859 ((eq action 'mouse-face) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
860 (and (mouse-posn-property pos 'mouse-face) t)) |
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
861 ((functionp action) |
73006
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
862 ;; FIXME: This seems questionable if the click is not in a buffer. |
72999
c983ed5a8049
(mouse-on-link-p): Tentatively fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72890
diff
changeset
|
863 ;; Should we instead decide that `action' takes a `posn'? |
73006
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
864 (if (consp pos) |
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
865 (with-current-buffer (window-buffer (posn-window pos)) |
73755
ef7b62d477fd
(mouse-set-font): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73042
diff
changeset
|
866 (funcall action (posn-point pos))) |
73006
17ac31b82912
(mouse-posn-property): Improve doc string.
David Kastrup <dak@gnu.org>
parents:
72999
diff
changeset
|
867 (funcall action pos))) |
72890
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
868 (t action)))) |
60204
074d6632232c
(mouse-on-link-p): If arg POS is a mouse event,
Kim F. Storm <storm@cua.dk>
parents:
59996
diff
changeset
|
869 |
61160
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
870 (defun mouse-fixup-help-message (msg) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
871 "Fix help message MSG for `mouse-1-click-follows-link'." |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
872 (let (mp pos) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
873 (if (and mouse-1-click-follows-link |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
874 (stringp msg) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
875 (save-match-data |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
876 (string-match "^mouse-2" msg)) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
877 (setq mp (mouse-pixel-position)) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
878 (consp (setq pos (cdr mp))) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
879 (car pos) (>= (car pos) 0) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
880 (cdr pos) (>= (cdr pos) 0) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
881 (setq pos (posn-at-x-y (car pos) (cdr pos) (car mp))) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
882 (windowp (posn-window pos))) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
883 (with-current-buffer (window-buffer (posn-window pos)) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
884 (if (mouse-on-link-p pos) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
885 (setq msg (concat |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
886 (cond |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
887 ((eq mouse-1-click-follows-link 'double) "double-") |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
888 ((and (integerp mouse-1-click-follows-link) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
889 (< mouse-1-click-follows-link 0)) "Long ") |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
890 (t "")) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
891 "mouse-1" (substring msg 7))))))) |
2bc2e06d78aa
(mouse-1-click-follows-link): Increase to 450 ms.
Kim F. Storm <storm@cua.dk>
parents:
60253
diff
changeset
|
892 msg) |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
893 |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
894 (defun mouse-move-drag-overlay (ol start end mode) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
895 (unless (= start end) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
896 ;; Go to START first, so that when we move to END, if it's in the middle |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
897 ;; of intangible text, point jumps in the direction away from START. |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
898 ;; Don't do it if START=END otherwise a single click risks selecting |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
899 ;; a region if it's on intangible text. This exception was originally |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
900 ;; only applied on entry to mouse-drag-region, which had the problem |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
901 ;; that a tiny move during a single-click would cause the intangible |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
902 ;; text to be selected. |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
903 (goto-char start) |
65651
b16e4baf1a72
(mouse-move-drag-overlay): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65640
diff
changeset
|
904 (goto-char end) |
b16e4baf1a72
(mouse-move-drag-overlay): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65640
diff
changeset
|
905 (setq end (point))) |
b16e4baf1a72
(mouse-move-drag-overlay): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65640
diff
changeset
|
906 (let ((range (mouse-start-end start end mode))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
907 (move-overlay ol (car range) (nth 1 range)))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
908 |
73755
ef7b62d477fd
(mouse-set-font): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73042
diff
changeset
|
909 (defun mouse-drag-track (start-event &optional |
67997
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
910 do-mouse-drag-region-post-process) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
911 "Track mouse drags by highlighting area between point and cursor. |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
912 The region will be defined with mark and point, and the overlay |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
913 will be deleted after return. DO-MOUSE-DRAG-REGION-POST-PROCESS |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
914 should only be used by mouse-drag-region." |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
915 (mouse-minibuffer-check start-event) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
916 (setq mouse-selection-click-count-buffer (current-buffer)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
917 (let* ((original-window (selected-window)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
918 ;; We've recorded what we needed from the current buffer and |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
919 ;; window, now let's jump to the place of the event, where things |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
920 ;; are happening. |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
921 (_ (mouse-set-point start-event)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
922 (echo-keystrokes 0) |
14179
7db5b89b78b6
(mouse-drag-region, mouse-drag-secondary): Bind echo-keystrokes to 0.
Richard M. Stallman <rms@gnu.org>
parents:
13872
diff
changeset
|
923 (start-posn (event-start start-event)) |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
924 (start-point (posn-point start-posn)) |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
925 (start-window (posn-window start-posn)) |
41034
edd3baa8e385
(mouse-drag-region): Don't run the up-event
Richard M. Stallman <rms@gnu.org>
parents:
41033
diff
changeset
|
926 (start-window-start (window-start start-window)) |
28075
7421de9165d2
(mouse-drag-region): Don't run up-event handler
Gerd Moellmann <gerd@gnu.org>
parents:
27834
diff
changeset
|
927 (start-hscroll (window-hscroll start-window)) |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
928 (bounds (window-edges start-window)) |
58194
00222ee714ca
(mouse-drag-copy-region): Add :version.
Kim F. Storm <storm@cua.dk>
parents:
57927
diff
changeset
|
929 (make-cursor-line-fully-visible nil) |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
930 (top (nth 1 bounds)) |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
931 (bottom (if (window-minibuffer-p start-window) |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
932 (nth 3 bounds) |
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
933 ;; Don't count the mode line. |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
934 (1- (nth 3 bounds)))) |
60204
074d6632232c
(mouse-on-link-p): If arg POS is a mouse event,
Kim F. Storm <storm@cua.dk>
parents:
59996
diff
changeset
|
935 (on-link (and mouse-1-click-follows-link |
60253
6452fdddef8f
(mouse-1-click-in-non-selected-windows): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
60204
diff
changeset
|
936 (or mouse-1-click-in-non-selected-windows |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
937 (eq start-window original-window)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
938 ;; Use start-point before the intangibility |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
939 ;; treatment, in case we click on a link inside an |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
940 ;; intangible text. |
72890
5ba1cd1da822
* mouse-sel.el (mouse-sel-follow-link-p): Use event position
David Kastrup <dak@gnu.org>
parents:
72427
diff
changeset
|
941 (mouse-on-link-p start-posn))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
942 (click-count (1- (event-click-count start-event))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
943 (remap-double-click (and on-link |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
944 (eq mouse-1-click-follows-link 'double) |
74367
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
945 (= click-count 1))) |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
946 ;; Suppress automatic hscrolling, because that is a nuisance |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
947 ;; when setting point near the right fringe (but see below). |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
948 (automatic-hscrolling-saved automatic-hscrolling) |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
949 (automatic-hscrolling nil)) |
4751
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
950 (setq mouse-selection-click-count click-count) |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
951 ;; In case the down click is in the middle of some intangible text, |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
952 ;; use the end of that text, and put it in START-POINT. |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
953 (if (< (point) start-point) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
954 (goto-char start-point)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
955 (setq start-point (point)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
956 (if remap-double-click ;; Don't expand mouse overlay in links |
59016
1c959d343308
(mouse-1-click-follows-link): New defcustom.
Kim F. Storm <storm@cua.dk>
parents:
58837
diff
changeset
|
957 (setq click-count 0)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
958 (mouse-move-drag-overlay mouse-drag-overlay start-point start-point |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
959 click-count) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
960 (overlay-put mouse-drag-overlay 'window start-window) |
4200
3f5f55401364
(mouse-drag-region): Use deactivate-mark.
Richard M. Stallman <rms@gnu.org>
parents:
4081
diff
changeset
|
961 (deactivate-mark) |
65623
fcbaf6135d19
(mouse-drag-mode-line-1, mouse-drag-vertical-line):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65498
diff
changeset
|
962 (let (event end end-point last-end-point) |
3566
dc2b64ef30dc
(mouse-drag-region-1): Un-comment-out this function.
Richard M. Stallman <rms@gnu.org>
parents:
3420
diff
changeset
|
963 (track-mouse |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
964 (while (progn |
3961
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
965 (setq event (read-event)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
966 (or (mouse-movement-p event) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
967 (memq (car-safe event) '(switch-frame select-window)))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
968 (if (memq (car-safe event) '(switch-frame select-window)) |
3961
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
969 nil |
74367
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
970 ;; Automatic hscrolling did not occur during the call to |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
971 ;; `read-event'; but if the user subsequently drags the |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
972 ;; mouse, go ahead and hscroll. |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
973 (let ((automatic-hscrolling automatic-hscrolling-saved)) |
a3192cfa5e41
(mouse-drag-track): Suppress automatic hscrolling for initial down
Chong Yidong <cyd@stupidchicken.com>
parents:
74238
diff
changeset
|
974 (redisplay)) |
3961
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
975 (setq end (event-end event) |
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
976 end-point (posn-point end)) |
16304
ba59fb4dd237
(mouse-drag-region): Ignore event end-point if it is not a number.
Richard M. Stallman <rms@gnu.org>
parents:
16201
diff
changeset
|
977 (if (numberp end-point) |
15642
6a3622bb0f31
(mouse-drag-region): Cope if stop-point is nil.
Karl Heuer <kwzh@gnu.org>
parents:
15633
diff
changeset
|
978 (setq last-end-point end-point)) |
3961
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
979 |
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
980 (cond |
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
981 ;; Are we moving within the original window? |
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
982 ((and (eq (posn-window end) start-window) |
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
983 (integer-or-marker-p end-point)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
984 (mouse-move-drag-overlay mouse-drag-overlay start-point end-point click-count)) |
3961
e828d5f28ca2
* mouse.el (mouse-drag-region): Correctly handle drags which enter
Jim Blandy <jimb@redhat.com>
parents:
3928
diff
changeset
|
985 |
6923
5df81bebf7f7
(mouse-drag-region): Handle scroll off top/bottom.
Karl Heuer <kwzh@gnu.org>
parents:
6914
diff
changeset
|
986 (t |
5df81bebf7f7
(mouse-drag-region): Handle scroll off top/bottom.
Karl Heuer <kwzh@gnu.org>
parents:
6914
diff
changeset
|
987 (let ((mouse-row (cdr (cdr (mouse-position))))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
988 (cond |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
989 ((null mouse-row)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
990 ((< mouse-row top) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
991 (mouse-scroll-subr start-window (- mouse-row top) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
992 mouse-drag-overlay start-point)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
993 ((>= mouse-row bottom) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
994 (mouse-scroll-subr start-window (1+ (- mouse-row bottom)) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
995 mouse-drag-overlay start-point))))))))) |
41611
64ee9a4a698e
Converted backquote to the new style (in comments).
Sam Steingold <sds@gnu.org>
parents:
41034
diff
changeset
|
996 |
23611
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
997 ;; In case we did not get a mouse-motion event |
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
998 ;; for the final move of the mouse before a drag event |
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
999 ;; pretend that we did get one. |
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
1000 (when (and (memq 'drag (event-modifiers (car-safe event))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1001 (setq end (event-end event) |
23611
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
1002 end-point (posn-point end)) |
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
1003 (eq (posn-window end) start-window) |
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
1004 (integer-or-marker-p end-point)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1005 (mouse-move-drag-overlay mouse-drag-overlay start-point end-point click-count)) |
23611
4c8718a0fb85
(mouse-drag-region): Fake up a mouse-motion event
Richard M. Stallman <rms@gnu.org>
parents:
22852
diff
changeset
|
1006 |
67997
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1007 ;; Handle the terminating event |
7966
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
1008 (if (consp event) |
66085
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1009 (let* ((fun (key-binding (vector (car event)))) |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1010 (do-multi-click (and (> (event-click-count event) 0) |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1011 (functionp fun) |
73755
ef7b62d477fd
(mouse-set-font): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73042
diff
changeset
|
1012 (not (memq fun |
ef7b62d477fd
(mouse-set-font): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73042
diff
changeset
|
1013 '(mouse-set-point |
67997
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1014 mouse-set-region)))))) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1015 ;; Run the binding of the terminating up-event, if possible. |
66085
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1016 (if (and (not (= (overlay-start mouse-drag-overlay) |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1017 (overlay-end mouse-drag-overlay))) |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1018 (not do-multi-click)) |
18459
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1019 (let* ((stop-point |
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1020 (if (numberp (posn-point (event-end event))) |
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1021 (posn-point (event-end event)) |
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1022 last-end-point)) |
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1023 ;; The end that comes from where we ended the drag. |
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1024 ;; Point goes here. |
688c725c6b23
(mouse-drag-region): For a click (not a drag),
Richard M. Stallman <rms@gnu.org>
parents:
17983
diff
changeset
|
1025 (region-termination |
67997
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1026 (if (and stop-point (< stop-point start-point)) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1027 (overlay-start mouse-drag-overlay) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1028 (overlay-end mouse-drag-overlay))) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1029 ;; The end that comes from where we started the drag. |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1030 ;; Mark goes there. |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1031 (region-commencement |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1032 (- (+ (overlay-end mouse-drag-overlay) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1033 (overlay-start mouse-drag-overlay)) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1034 region-termination)) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1035 last-command this-command) |
78126
c30936b69ac7
(mouse-drag-track): Reset transient-mark-mode to nil
Martin Rudalics <rudalics@gmx.at>
parents:
78067
diff
changeset
|
1036 (when (eq transient-mark-mode 'identity) |
c30936b69ac7
(mouse-drag-track): Reset transient-mark-mode to nil
Martin Rudalics <rudalics@gmx.at>
parents:
78067
diff
changeset
|
1037 ;; Reset `transient-mark-mode' to avoid expanding the region |
c30936b69ac7
(mouse-drag-track): Reset transient-mark-mode to nil
Martin Rudalics <rudalics@gmx.at>
parents:
78067
diff
changeset
|
1038 ;; while scrolling (compare thread on "Erroneous selection |
c30936b69ac7
(mouse-drag-track): Reset transient-mark-mode to nil
Martin Rudalics <rudalics@gmx.at>
parents:
78067
diff
changeset
|
1039 ;; extension ..." on bug-gnu-emacs from 2007-06-10). |
c30936b69ac7
(mouse-drag-track): Reset transient-mark-mode to nil
Martin Rudalics <rudalics@gmx.at>
parents:
78067
diff
changeset
|
1040 (setq transient-mark-mode nil)) |
67997
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1041 (push-mark region-commencement t t) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1042 (goto-char region-termination) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1043 (if (not do-mouse-drag-region-post-process) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1044 ;; Skip all post-event handling, return immediately. |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1045 (delete-overlay mouse-drag-overlay) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1046 ;; Don't let copy-region-as-kill set deactivate-mark. |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1047 (when mouse-drag-copy-region |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1048 (let (deactivate-mark) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1049 (copy-region-as-kill (point) (mark t)))) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1050 (let ((buffer (current-buffer))) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1051 (mouse-show-mark) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1052 ;; mouse-show-mark can call read-event, |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1053 ;; and that means the Emacs server could switch buffers |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1054 ;; under us. If that happened, |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1055 ;; avoid trying to use the region. |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1056 (and (mark t) mark-active |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1057 (eq buffer (current-buffer)) |
217b260efd66
(mouse-drag-track): Renamed, from `mouse-drag-region-1'. Includes
J.D. Smith <jdsmith@as.arizona.edu>
parents:
67965
diff
changeset
|
1058 (mouse-set-region-1))))) |
66085
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1059 ;; Run the binding of the terminating up-event. |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1060 ;; If a multiple click is not bound to mouse-set-point, |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1061 ;; cancel the effects of mouse-move-drag-overlay to |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1062 ;; avoid producing wrong results. |
bff53f7b277b
* mouse.el (mouse-drag-region-1): Handle the case where a
Chong Yidong <cyd@stupidchicken.com>
parents:
66021
diff
changeset
|
1063 (if do-multi-click (goto-char start-point)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1064 (delete-overlay mouse-drag-overlay) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1065 (when (and (functionp fun) |
75430
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1066 (= start-hscroll (window-hscroll start-window)) |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1067 ;; Don't run the up-event handler if the |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1068 ;; window start changed in a redisplay after |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1069 ;; the mouse-set-point for the down-mouse |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1070 ;; event at the beginning of this function. |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1071 ;; When the window start has changed, the |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1072 ;; up-mouse event will contain a different |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1073 ;; position due to the new window contents, |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1074 ;; and point is set again. |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1075 (or end-point |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1076 (= (window-start start-window) |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1077 start-window-start))) |
06172d4ae1d7
Fix whitespace and indentation.
Eli Zaretskii <eliz@gnu.org>
parents:
75347
diff
changeset
|
1078 (when (and on-link |
67870
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1079 (or (not end-point) (= end-point start-point)) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1080 (consp event) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1081 (or remap-double-click |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1082 (and |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1083 (not (eq mouse-1-click-follows-link 'double)) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1084 (= click-count 0) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1085 (= (event-click-count event) 1) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1086 (or (not (integerp mouse-1-click-follows-link)) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1087 (let ((t0 (posn-timestamp (event-start start-event))) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1088 (t1 (posn-timestamp (event-end event)))) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1089 (and (integerp t0) (integerp t1) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1090 (if (> mouse-1-click-follows-link 0) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1091 (<= (- t1 t0) mouse-1-click-follows-link) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1092 (< (- t0 t1) mouse-1-click-follows-link)))))))) |
68734
43f8bbedb5ee
2006-02-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
1093 ;; If we rebind to mouse-2, reselect previous selected window, |
67870
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1094 ;; so that the mouse-2 event runs in the same |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1095 ;; situation as if user had clicked it directly. |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1096 ;; Fixes the bug reported by juri@jurta.org on 2005-12-27. |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1097 (if (or (vectorp on-link) (stringp on-link)) |
60b2bb5ad00f
(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
Richard M. Stallman <rms@gnu.org>
parents:
67779
diff
changeset
|
1098 (setq event (aref on-link 0)) |
68734
43f8bbedb5ee
2006-02-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
1099 (select-window original-window) |
67965
ea7ab3ce03e8
(mouse-drag-region-1): When following link via mouse-2,
Richard M. Stallman <rms@gnu.org>
parents:
67954
diff
changeset
|
1100 (setcar event 'mouse-2) |
ea7ab3ce03e8
(mouse-drag-region-1): When following link via mouse-2,
Richard M. Stallman <rms@gnu.org>
parents:
67954
diff
changeset
|
1101 ;; If this mouse click has never been done by |
ea7ab3ce03e8
(mouse-drag-region-1): When following link via mouse-2,
Richard M. Stallman <rms@gnu.org>
parents:
67954
diff
changeset
|
1102 ;; the user, it doesn't have the necessary |
ea7ab3ce03e8
(mouse-drag-region-1): When following link via mouse-2,
Richard M. Stallman <rms@gnu.org>
parents:
67954
diff
changeset
|
1103 ;; property to be interpreted correctly. |
ea7ab3ce03e8
(mouse-drag-region-1): When following link via mouse-2,
Richard M. Stallman <rms@gnu.org>
parents:
67954
diff
changeset
|
1104 (put 'mouse-2 'event-kind 'mouse-click))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1105 (push event unread-command-events)))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1106 |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1107 ;; Case where the end-event is not a cons cell (it's just a boring |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1108 ;; char-key-press). |
10720
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
1109 (delete-overlay mouse-drag-overlay))))) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1110 |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1111 ;; Commands to handle xterm-style multiple clicks. |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1112 (defun mouse-skip-word (dir) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1113 "Skip over word, over whitespace, or over identical punctuation. |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1114 If DIR is positive skip forward; if negative, skip backward." |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1115 (let* ((char (following-char)) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1116 (syntax (char-to-string (char-syntax char)))) |
22852
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1117 (cond ((string= syntax "w") |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1118 ;; Here, we can't use skip-syntax-forward/backward because |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1119 ;; they don't pay attention to word-separating-categories, |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1120 ;; and thus they will skip over a true word boundary. So, |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1121 ;; we simularte the original behaviour by using |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1122 ;; forward-word. |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1123 (if (< dir 0) |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1124 (if (not (looking-at "\\<")) |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1125 (forward-word -1)) |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1126 (if (or (looking-at "\\<") (not (looking-at "\\>"))) |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1127 (forward-word 1)))) |
dfb255fb91c8
(mouse-skip-word): If point is at word constituent
Kenichi Handa <handa@m17n.org>
parents:
22845
diff
changeset
|
1128 ((string= syntax " ") |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1129 (if (< dir 0) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1130 (skip-syntax-backward syntax) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1131 (skip-syntax-forward syntax))) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1132 ((string= syntax "_") |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1133 (if (< dir 0) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1134 (skip-syntax-backward "w_") |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1135 (skip-syntax-forward "w_"))) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1136 ((< dir 0) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1137 (while (and (not (bobp)) (= (preceding-char) char)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1138 (forward-char -1))) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1139 (t |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1140 (while (and (not (eobp)) (= (following-char) char)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
1141 (forward-char 1)))))) |
3928
c5f9d7f928a7
* mouse.el (mouse-drag-region-1): Commented out.
Jim Blandy <jimb@redhat.com>
parents:
3899
diff
changeset
|
1142 |
4751
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1143 (defun mouse-start-end (start end mode) |
66669
550c8e306cb5
Fix special handling of DEL after dragging a region:
Richard M. Stallman <rms@gnu.org>
parents:
66322
diff
changeset
|
1144 "Return a list of region bounds based on START and END according to MODE. |
52405
970694efa9b5
(mouse-popup-menubar, mouse-skip-word): Doc fix.
Dave Love <fx@gnu.org>
parents:
52401
diff
changeset
|
1145 If MODE is 0 then set point to (min START END), mark to (max START END). |
970694efa9b5
(mouse-popup-menubar, mouse-skip-word): Doc fix.
Dave Love <fx@gnu.org>
parents:
52401
diff
changeset
|
1146 If MODE is 1 then set point to start of word at (min START END), |
970694efa9b5
(mouse-popup-menubar, mouse-skip-word): Doc fix.
Dave Love <fx@gnu.org>
parents:
52401
diff
changeset
|
1147 mark to end of word at (max START END). |
970694efa9b5
(mouse-popup-menubar, mouse-skip-word): Doc fix.
Dave Love <fx@gnu.org>
parents:
52401
diff
changeset
|
1148 If MODE is 2 then do the same for lines." |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1149 (if (> start end) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1150 (let ((temp start)) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1151 (setq start end |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1152 end temp))) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1153 (setq mode (mod mode 3)) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1154 (cond ((= mode 0) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1155 (list start end)) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1156 ((and (= mode 1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1157 (= start end) |
5869
91dcabd87088
(mouse-start-end): Check START rather than point for being at eob.
Karl Heuer <kwzh@gnu.org>
parents:
5799
diff
changeset
|
1158 (char-after start) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1159 (= (char-syntax (char-after start)) ?\()) |
5879
66aadd6ba5e6
(mouse-start-end): For double click with START on openparen,
Richard M. Stallman <rms@gnu.org>
parents:
5869
diff
changeset
|
1160 (list start |
66aadd6ba5e6
(mouse-start-end): For double click with START on openparen,
Richard M. Stallman <rms@gnu.org>
parents:
5869
diff
changeset
|
1161 (save-excursion |
66aadd6ba5e6
(mouse-start-end): For double click with START on openparen,
Richard M. Stallman <rms@gnu.org>
parents:
5869
diff
changeset
|
1162 (goto-char start) |
66aadd6ba5e6
(mouse-start-end): For double click with START on openparen,
Richard M. Stallman <rms@gnu.org>
parents:
5869
diff
changeset
|
1163 (forward-sexp 1) |
66aadd6ba5e6
(mouse-start-end): For double click with START on openparen,
Richard M. Stallman <rms@gnu.org>
parents:
5869
diff
changeset
|
1164 (point)))) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1165 ((and (= mode 1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1166 (= start end) |
5869
91dcabd87088
(mouse-start-end): Check START rather than point for being at eob.
Karl Heuer <kwzh@gnu.org>
parents:
5799
diff
changeset
|
1167 (char-after start) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1168 (= (char-syntax (char-after start)) ?\))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1169 (list (save-excursion |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1170 (goto-char (1+ start)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1171 (backward-sexp 1) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1172 (point)) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1173 (1+ start))) |
15561
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1174 ((and (= mode 1) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1175 (= start end) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1176 (char-after start) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1177 (= (char-syntax (char-after start)) ?\")) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1178 (let ((open (or (eq start (point-min)) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1179 (save-excursion |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1180 (goto-char (- start 1)) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1181 (looking-at "\\s(\\|\\s \\|\\s>"))))) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1182 (if open |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1183 (list start |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1184 (save-excursion |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1185 (condition-case nil |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1186 (progn |
15561
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1187 (goto-char start) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1188 (forward-sexp 1) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1189 (point)) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1190 (error end)))) |
16746
9d2a854bac89
(mouse-start-end): Put values in proper order,
Richard M. Stallman <rms@gnu.org>
parents:
16636
diff
changeset
|
1191 (list (save-excursion |
15561
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1192 (condition-case nil |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1193 (progn |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1194 (goto-char (1+ start)) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1195 (backward-sexp 1) |
6f50026fd1e6
(mouse-start-end): Support selecting strings by double
Richard M. Stallman <rms@gnu.org>
parents:
15476
diff
changeset
|
1196 (point)) |
16746
9d2a854bac89
(mouse-start-end): Put values in proper order,
Richard M. Stallman <rms@gnu.org>
parents:
16636
diff
changeset
|
1197 (error end))) |
9d2a854bac89
(mouse-start-end): Put values in proper order,
Richard M. Stallman <rms@gnu.org>
parents:
16636
diff
changeset
|
1198 (1+ start))))) |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1199 ((= mode 1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1200 (list (save-excursion |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1201 (goto-char start) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1202 (mouse-skip-word -1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1203 (point)) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1204 (save-excursion |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1205 (goto-char end) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1206 (mouse-skip-word 1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1207 (point)))) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1208 ((= mode 2) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1209 (list (save-excursion |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1210 (goto-char start) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1211 (beginning-of-line 1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1212 (point)) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1213 (save-excursion |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1214 (goto-char end) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1215 (forward-line 1) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
1216 (point)))))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1217 |
3712
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1218 ;; Subroutine: set the mark where CLICK happened, |
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1219 ;; but don't do anything else. |
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1220 (defun mouse-set-mark-fast (click) |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1221 (mouse-minibuffer-check click) |
3712
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1222 (let ((posn (event-start click))) |
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1223 (select-window (posn-window posn)) |
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1224 (if (numberp (posn-point posn)) |
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1225 (push-mark (posn-point posn) t t)))) |
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1226 |
15613
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1227 (defun mouse-undouble-last-event (events) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1228 (let* ((index (1- (length events))) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1229 (last (nthcdr index events)) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1230 (event (car last)) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1231 (basic (event-basic-type event)) |
17983
56f88318699c
(mouse-undouble-last-event): Return nil if the event
Richard M. Stallman <rms@gnu.org>
parents:
17636
diff
changeset
|
1232 (old-modifiers (event-modifiers event)) |
56f88318699c
(mouse-undouble-last-event): Return nil if the event
Richard M. Stallman <rms@gnu.org>
parents:
17636
diff
changeset
|
1233 (modifiers (delq 'double (delq 'triple (copy-sequence old-modifiers)))) |
15613
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1234 (new |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1235 (if (consp event) |
18503
828ca7cea30f
(mouse-undouble-last-event): Use reverse, not nreverse.
Richard M. Stallman <rms@gnu.org>
parents:
18459
diff
changeset
|
1236 ;; Use reverse, not nreverse, since event-modifiers |
828ca7cea30f
(mouse-undouble-last-event): Use reverse, not nreverse.
Richard M. Stallman <rms@gnu.org>
parents:
18459
diff
changeset
|
1237 ;; does not copy the list it returns. |
18689
d11c2164a6af
(mouse-undouble-last-event): Fix gross bugs:
Richard M. Stallman <rms@gnu.org>
parents:
18675
diff
changeset
|
1238 (cons (event-convert-list (reverse (cons basic modifiers))) |
15613
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1239 (cdr event)) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1240 event))) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1241 (setcar last new) |
17983
56f88318699c
(mouse-undouble-last-event): Return nil if the event
Richard M. Stallman <rms@gnu.org>
parents:
17636
diff
changeset
|
1242 (if (and (not (equal modifiers old-modifiers)) |
56f88318699c
(mouse-undouble-last-event): Return nil if the event
Richard M. Stallman <rms@gnu.org>
parents:
17636
diff
changeset
|
1243 (key-binding (apply 'vector events))) |
15613
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1244 t |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1245 (setcar last event) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1246 nil))) |
4c646bed64d0
(mouse-show-mark): In transient mark mode, delete mouse-drag-overlay.
Miles Bader <miles@gnu.org>
parents:
15561
diff
changeset
|
1247 |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1248 ;; Momentarily show where the mark is, if highlighting doesn't show it. |
15941
f063cae001ee
(mouse-region-delete-keys): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15880
diff
changeset
|
1249 |
66669
550c8e306cb5
Fix special handling of DEL after dragging a region:
Richard M. Stallman <rms@gnu.org>
parents:
66322
diff
changeset
|
1250 (defcustom mouse-region-delete-keys '([delete] [deletechar] [backspace]) |
550c8e306cb5
Fix special handling of DEL after dragging a region:
Richard M. Stallman <rms@gnu.org>
parents:
66322
diff
changeset
|
1251 "List of keys that should cause the mouse region to be deleted." |
550c8e306cb5
Fix special handling of DEL after dragging a region:
Richard M. Stallman <rms@gnu.org>
parents:
66322
diff
changeset
|
1252 :group 'mouse |
550c8e306cb5
Fix special handling of DEL after dragging a region:
Richard M. Stallman <rms@gnu.org>
parents:
66322
diff
changeset
|
1253 :type '(repeat key-sequence)) |
15941
f063cae001ee
(mouse-region-delete-keys): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15880
diff
changeset
|
1254 |
3712
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1255 (defun mouse-show-mark () |
57749
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1256 (let ((inhibit-quit t) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1257 (echo-keystrokes 0) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1258 event events key ignore |
57780
8fe3a1b0606e
(mouse-show-mark): Adjust to new name and don't assume
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57749
diff
changeset
|
1259 (x-lost-selection-functions |
57785
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1260 (when (boundp 'x-lost-selection-functions) |
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1261 (copy-sequence x-lost-selection-functions)))) |
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1262 (add-hook 'x-lost-selection-functions |
57749
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1263 (lambda (seltype) |
57785
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1264 (when (eq seltype 'PRIMARY) |
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1265 (setq ignore t) |
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1266 (throw 'mouse-show-mark t)))) |
57749
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1267 (if transient-mark-mode |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1268 (delete-overlay mouse-drag-overlay) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1269 (move-overlay mouse-drag-overlay (point) (mark t))) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1270 (catch 'mouse-show-mark |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1271 ;; In this loop, execute scroll bar and switch-frame events. |
59470
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
1272 ;; Should we similarly handle `select-window' events? --Stef |
57749
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1273 ;; Also ignore down-events that are undefined. |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1274 (while (progn (setq event (read-event)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1275 (setq events (append events (list event))) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1276 (setq key (apply 'vector events)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1277 (or (and (consp event) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1278 (eq (car event) 'switch-frame)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1279 (and (consp event) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1280 (eq (posn-point (event-end event)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1281 'vertical-scroll-bar)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1282 (and (memq 'down (event-modifiers event)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1283 (not (key-binding key)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1284 (not (mouse-undouble-last-event events)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1285 (not (member key mouse-region-delete-keys))))) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1286 (and (consp event) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1287 (or (eq (car event) 'switch-frame) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1288 (eq (posn-point (event-end event)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1289 'vertical-scroll-bar)) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1290 (let ((keys (vector 'vertical-scroll-bar event))) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1291 (and (key-binding keys) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1292 (progn |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1293 (call-interactively (key-binding keys) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1294 nil keys) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1295 (setq events nil))))))) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1296 ;; If we lost the selection, just turn off the highlighting. |
57785
2a55e2b38c8d
(mouse-show-mark): Replace the last occurrence of
Sam Steingold <sds@gnu.org>
parents:
57780
diff
changeset
|
1297 (unless ignore |
57749
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1298 ;; For certain special keys, delete the region. |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1299 (if (member key mouse-region-delete-keys) |
76155
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1300 (progn |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1301 ;; Since notionally this is a separate command, |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1302 ;; run all the hooks that would be run if it were |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1303 ;; executed separately. |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1304 (run-hooks 'post-command-hook) |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1305 (setq last-command this-command) |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1306 (setq this-original-command 'delete-region) |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1307 (setq this-command (or (command-remapping this-original-command) |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1308 this-original-command)) |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1309 (run-hooks 'pre-command-hook) |
2854cd09e515
(mouse-show-mark): Run hooks and perform command
Kim F. Storm <storm@cua.dk>
parents:
75610
diff
changeset
|
1310 (call-interactively this-command)) |
57749
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1311 ;; Otherwise, unread the key so it gets executed normally. |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1312 (setq unread-command-events |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1313 (nconc events unread-command-events)))) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1314 (setq quit-flag nil) |
08eb19d9ee4b
(mouse-show-mark): Do most processing the same
Richard M. Stallman <rms@gnu.org>
parents:
57569
diff
changeset
|
1315 (unless transient-mark-mode |
43732
679c18d33c77
(mouse-show-mark): Remove the no-highlight alternative:
Eli Zaretskii <eliz@gnu.org>
parents:
43657
diff
changeset
|
1316 (delete-overlay mouse-drag-overlay)))) |
3712
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1317 |
465 | 1318 (defun mouse-set-mark (click) |
1319 "Set mark at the position clicked on with the mouse. | |
1320 Display cursor at that position for a second. | |
1321 This must be bound to a mouse click." | |
1113 | 1322 (interactive "e") |
8534
a446d13c46ea
(mouse-set-mark): Select the window before saving point.
Richard M. Stallman <rms@gnu.org>
parents:
8519
diff
changeset
|
1323 (mouse-minibuffer-check click) |
a446d13c46ea
(mouse-set-mark): Select the window before saving point.
Richard M. Stallman <rms@gnu.org>
parents:
8519
diff
changeset
|
1324 (select-window (posn-window (event-start click))) |
a446d13c46ea
(mouse-set-mark): Select the window before saving point.
Richard M. Stallman <rms@gnu.org>
parents:
8519
diff
changeset
|
1325 ;; We don't use save-excursion because that preserves the mark too. |
66 | 1326 (let ((point-save (point))) |
1327 (unwind-protect | |
465 | 1328 (progn (mouse-set-point click) |
3119
0d4886af9262
(mouse-set-mark): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2802
diff
changeset
|
1329 (push-mark nil t t) |
0d4886af9262
(mouse-set-mark): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2802
diff
changeset
|
1330 (or transient-mark-mode |
0d4886af9262
(mouse-set-mark): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2802
diff
changeset
|
1331 (sit-for 1))) |
66 | 1332 (goto-char point-save)))) |
1333 | |
465 | 1334 (defun mouse-kill (click) |
1335 "Kill the region between point and the mouse click. | |
1336 The text is saved in the kill ring, as with \\[kill-region]." | |
1113 | 1337 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1338 (mouse-minibuffer-check click) |
6301
80e3ee8d618d
(mouse-kill): Select the clicked window first.
Karl Heuer <kwzh@gnu.org>
parents:
6266
diff
changeset
|
1339 (let* ((posn (event-start click)) |
80e3ee8d618d
(mouse-kill): Select the clicked window first.
Karl Heuer <kwzh@gnu.org>
parents:
6266
diff
changeset
|
1340 (click-posn (posn-point posn))) |
80e3ee8d618d
(mouse-kill): Select the clicked window first.
Karl Heuer <kwzh@gnu.org>
parents:
6266
diff
changeset
|
1341 (select-window (posn-window posn)) |
1039 | 1342 (if (numberp click-posn) |
1343 (kill-region (min (point) click-posn) | |
1344 (max (point) click-posn))))) | |
66 | 1345 |
705 | 1346 (defun mouse-yank-at-click (click arg) |
1347 "Insert the last stretch of killed text at the position clicked on. | |
28922
c0732e5c1f58
(mouse-yank-at-click): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
28075
diff
changeset
|
1348 Also move point to one end of the text thus inserted (normally the end), |
42149 | 1349 and set mark at the beginning. |
5799
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1350 Prefix arguments are interpreted as with \\[yank]. |
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1351 If `mouse-yank-at-point' is non-nil, insert at point |
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1352 regardless of where you click." |
57843
e91b3798021f
(mouse-yank-at-click, mouse-yank-secondary): Revert
Jan Djärv <jan.h.d@swipnet.se>
parents:
57785
diff
changeset
|
1353 (interactive "e\nP") |
10258
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
1354 ;; Give temporary modes such as isearch a chance to turn off. |
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
1355 (run-hooks 'mouse-leave-buffer-hook) |
5799
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1356 (or mouse-yank-at-point (mouse-set-point click)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1357 (setq this-command 'yank) |
12357
8d2679d3f095
(mouse-yank-at-click): Clear mouse-selection-click-count.
Richard M. Stallman <rms@gnu.org>
parents:
12257
diff
changeset
|
1358 (setq mouse-selection-click-count 0) |
705 | 1359 (yank arg)) |
1360 | |
1361 (defun mouse-kill-ring-save (click) | |
465 | 1362 "Copy the region between point and the mouse click in the kill ring. |
1363 This does not delete the region; it acts like \\[kill-ring-save]." | |
1113 | 1364 (interactive "e") |
3712
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1365 (mouse-set-mark-fast click) |
8135
1f57b34ade27
(mouse-drag-region): Bind this-command like last-command.
Richard M. Stallman <rms@gnu.org>
parents:
8117
diff
changeset
|
1366 (let (this-command last-command) |
1f57b34ade27
(mouse-drag-region): Bind this-command like last-command.
Richard M. Stallman <rms@gnu.org>
parents:
8117
diff
changeset
|
1367 (kill-ring-save (point) (mark t))) |
3712
9e0f49a8f967
(mouse-set-mark-fast): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3566
diff
changeset
|
1368 (mouse-show-mark)) |
66 | 1369 |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1370 ;;; This function used to delete the text between point and the mouse |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1371 ;;; whenever it was equal to the front of the kill ring, but some |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1372 ;;; people found that confusing. |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1373 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1374 ;;; A list (TEXT START END), describing the text and position of the last |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1375 ;;; invocation of mouse-save-then-kill. |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1376 (defvar mouse-save-then-kill-posn nil) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1377 |
5007
8ed435ca9650
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
4906
diff
changeset
|
1378 (defun mouse-save-then-kill-delete-region (beg end) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1379 ;; We must make our own undo boundaries |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1380 ;; because they happen automatically only for the current buffer. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1381 (undo-boundary) |
5027
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1382 (if (or (= beg end) (eq buffer-undo-list t)) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1383 ;; If we have no undo list in this buffer, |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1384 ;; just delete. |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1385 (delete-region beg end) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1386 ;; Delete, but make the undo-list entry share with the kill ring. |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1387 ;; First, delete just one char, so in case buffer is being modified |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1388 ;; for the first time, the undo list records that fact. |
29344
2f44841e5506
(mouse-save-then-kill-delete-region): Don't bind
Dave Love <fx@gnu.org>
parents:
28922
diff
changeset
|
1389 (let (before-change-functions after-change-functions) |
7866
44680acb5d14
(mouse-save-then-kill-delete-region): Turn off change hooks
Richard M. Stallman <rms@gnu.org>
parents:
7794
diff
changeset
|
1390 (delete-region beg |
44680acb5d14
(mouse-save-then-kill-delete-region): Turn off change hooks
Richard M. Stallman <rms@gnu.org>
parents:
7794
diff
changeset
|
1391 (+ beg (if (> end beg) 1 -1)))) |
5027
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1392 (let ((buffer-undo-list buffer-undo-list)) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1393 ;; Undo that deletion--but don't change the undo list! |
29344
2f44841e5506
(mouse-save-then-kill-delete-region): Don't bind
Dave Love <fx@gnu.org>
parents:
28922
diff
changeset
|
1394 (let (before-change-functions after-change-functions) |
7866
44680acb5d14
(mouse-save-then-kill-delete-region): Turn off change hooks
Richard M. Stallman <rms@gnu.org>
parents:
7794
diff
changeset
|
1395 (primitive-undo 1 buffer-undo-list)) |
5027
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1396 ;; Now delete the rest of the specified region, |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1397 ;; but don't record it. |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1398 (setq buffer-undo-list t) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1399 (if (/= (length (car kill-ring)) (- (max end beg) (min end beg))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1400 (error "Lossage in mouse-save-then-kill-delete-region")) |
5027
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1401 (delete-region beg end)) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1402 (let ((tail buffer-undo-list)) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1403 ;; Search back in buffer-undo-list for the string |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1404 ;; that came from deleting one character. |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1405 (while (and tail (not (stringp (car (car tail))))) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1406 (setq tail (cdr tail))) |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1407 ;; Replace it with an entry for the entire deleted text. |
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1408 (and tail |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1409 (setcar tail (cons (car kill-ring) (min beg end)))))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1410 (undo-boundary)) |
4751
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1411 |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
1412 (defun mouse-save-then-kill (click) |
1765
1cc3ee5afc82
(mouse-save-then-kill): When deleting, avoid delay
Richard M. Stallman <rms@gnu.org>
parents:
1728
diff
changeset
|
1413 "Save text to point in kill ring; the second time, kill the text. |
1cc3ee5afc82
(mouse-save-then-kill): When deleting, avoid delay
Richard M. Stallman <rms@gnu.org>
parents:
1728
diff
changeset
|
1414 If the text between point and the mouse is the same as what's |
1cc3ee5afc82
(mouse-save-then-kill): When deleting, avoid delay
Richard M. Stallman <rms@gnu.org>
parents:
1728
diff
changeset
|
1415 at the front of the kill ring, this deletes the text. |
1cc3ee5afc82
(mouse-save-then-kill): When deleting, avoid delay
Richard M. Stallman <rms@gnu.org>
parents:
1728
diff
changeset
|
1416 Otherwise, it adds the text to the kill ring, like \\[kill-ring-save], |
4751
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1417 which prepares for a second click to delete the text. |
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1418 |
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1419 If you have selected words or lines, this command extends the |
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1420 selection through the word or line clicked on. If you do this |
c63ce262aa4d
(mouse-save-then-kill): If follows a multi-click selection,
Richard M. Stallman <rms@gnu.org>
parents:
4738
diff
changeset
|
1421 again in a different position, it extends the selection again. |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1422 If you do this twice in the same position, the selection is killed." |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
1423 (interactive "e") |
21426
4b4a4e32ffef
(mouse-save-then-kill): Get point-before-scroll
Richard M. Stallman <rms@gnu.org>
parents:
21194
diff
changeset
|
1424 (let ((before-scroll |
4b4a4e32ffef
(mouse-save-then-kill): Get point-before-scroll
Richard M. Stallman <rms@gnu.org>
parents:
21194
diff
changeset
|
1425 (with-current-buffer (window-buffer (posn-window (event-start click))) |
4b4a4e32ffef
(mouse-save-then-kill): Get point-before-scroll
Richard M. Stallman <rms@gnu.org>
parents:
21194
diff
changeset
|
1426 point-before-scroll))) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1427 (mouse-minibuffer-check click) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1428 (let ((click-posn (posn-point (event-start click))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1429 ;; Don't let a subsequent kill command append to this one: |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1430 ;; prevent setting this-command to kill-region. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1431 (this-command this-command)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1432 (if (and (with-current-buffer |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1433 (window-buffer (posn-window (event-start click))) |
12436
ffd777dc7d29
(mouse-selection-click-count-buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12357
diff
changeset
|
1434 (and (mark t) (> (mod mouse-selection-click-count 3) 0) |
ffd777dc7d29
(mouse-selection-click-count-buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12357
diff
changeset
|
1435 ;; Don't be fooled by a recent click in some other buffer. |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1436 (eq mouse-selection-click-count-buffer |
12436
ffd777dc7d29
(mouse-selection-click-count-buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12357
diff
changeset
|
1437 (current-buffer))))) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1438 (if (not (and (eq last-command 'mouse-save-then-kill) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1439 (equal click-posn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1440 (car (cdr-safe (cdr-safe mouse-save-then-kill-posn)))))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1441 ;; Find both ends of the object selected by this click. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1442 (let* ((range |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1443 (mouse-start-end click-posn click-posn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1444 mouse-selection-click-count))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1445 ;; Move whichever end is closer to the click. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1446 ;; That's what xterm does, and it seems reasonable. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1447 (if (< (abs (- click-posn (mark t))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1448 (abs (- click-posn (point)))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1449 (set-mark (car range)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1450 (goto-char (nth 1 range))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1451 ;; We have already put the old region in the kill ring. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1452 ;; Replace it with the extended region. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1453 ;; (It would be annoying to make a separate entry.) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1454 (kill-new (buffer-substring (point) (mark t)) t) |
10720
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
1455 (mouse-set-region-1) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1456 ;; Arrange for a repeated mouse-3 to kill this region. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1457 (setq mouse-save-then-kill-posn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1458 (list (car kill-ring) (point) click-posn)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1459 (mouse-show-mark)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1460 ;; If we click this button again without moving it, |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1461 ;; that time kill. |
11818
f470809e6a60
(mouse-save-then-kill): When making a new region
Richard M. Stallman <rms@gnu.org>
parents:
11453
diff
changeset
|
1462 (mouse-save-then-kill-delete-region (mark) (point)) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1463 (setq mouse-selection-click-count 0) |
5027
38980ea73075
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
5007
diff
changeset
|
1464 (setq mouse-save-then-kill-posn nil)) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1465 (if (and (eq last-command 'mouse-save-then-kill) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1466 mouse-save-then-kill-posn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1467 (eq (car mouse-save-then-kill-posn) (car kill-ring)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1468 (equal (cdr mouse-save-then-kill-posn) (list (point) click-posn))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1469 ;; If this is the second time we've called |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1470 ;; mouse-save-then-kill, delete the text from the buffer. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1471 (progn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1472 (mouse-save-then-kill-delete-region (point) (mark)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1473 ;; After we kill, another click counts as "the first time". |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1474 (setq mouse-save-then-kill-posn nil)) |
15321
1aeaf1224f0b
(mouse-show-mark): Use temporary highlighting if possible instead of a pause.
Richard M. Stallman <rms@gnu.org>
parents:
15169
diff
changeset
|
1475 ;; This is not a repetition. |
1aeaf1224f0b
(mouse-show-mark): Use temporary highlighting if possible instead of a pause.
Richard M. Stallman <rms@gnu.org>
parents:
15169
diff
changeset
|
1476 ;; We are adjusting an old selection or creating a new one. |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1477 (if (or (and (eq last-command 'mouse-save-then-kill) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1478 mouse-save-then-kill-posn) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1479 (and mark-active transient-mark-mode) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1480 (and (memq last-command |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1481 '(mouse-drag-region mouse-set-region)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1482 (or mark-even-if-inactive |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1483 (not transient-mark-mode)))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1484 ;; We have a selection or suitable region, so adjust it. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1485 (let* ((posn (event-start click)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1486 (new (posn-point posn))) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1487 (select-window (posn-window posn)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1488 (if (numberp new) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1489 (progn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1490 ;; Move whichever end of the region is closer to the click. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1491 ;; That is what xterm does, and it seems reasonable. |
36134
0d7ea691acc4
(mouse-save-then-kill): If the distance from the new
Gerd Moellmann <gerd@gnu.org>
parents:
33769
diff
changeset
|
1492 (if (<= (abs (- new (point))) (abs (- new (mark t)))) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1493 (goto-char new) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1494 (set-mark new)) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1495 (setq deactivate-mark nil))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1496 (kill-new (buffer-substring (point) (mark t)) t)) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1497 ;; Set the mark where point is, then move where clicked. |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1498 (mouse-set-mark-fast click) |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1499 (if before-scroll |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1500 (goto-char before-scroll)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1501 (exchange-point-and-mark) ;Why??? --Stef |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1502 (kill-new (buffer-substring (point) (mark t)))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1503 (mouse-show-mark) |
10720
4526bdcc806e
(mouse-drag-region): Delete the overlay before
Richard M. Stallman <rms@gnu.org>
parents:
10556
diff
changeset
|
1504 (mouse-set-region-1) |
10556
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1505 (setq mouse-save-then-kill-posn |
fda9e00240b0
(mouse-save-then-kill): When we don't use existing
Richard M. Stallman <rms@gnu.org>
parents:
10554
diff
changeset
|
1506 (list (car kill-ring) (point) click-posn))))))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1507 |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1508 (global-set-key [M-mouse-1] 'mouse-start-secondary) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1509 (global-set-key [M-drag-mouse-1] 'mouse-set-secondary) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1510 (global-set-key [M-down-mouse-1] 'mouse-drag-secondary) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1511 (global-set-key [M-mouse-3] 'mouse-secondary-save-then-kill) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1512 (global-set-key [M-mouse-2] 'mouse-yank-secondary) |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
1513 |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1514 (defconst mouse-secondary-overlay |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1515 (let ((ol (make-overlay (point-min) (point-min)))) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1516 (delete-overlay ol) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1517 (overlay-put ol 'face 'secondary-selection) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1518 ol) |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1519 "An overlay which records the current secondary selection. |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1520 It is deleted when there is no secondary selection.") |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1521 |
9206
06864fef4ec3
(mouse-secondary-click-count): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8765
diff
changeset
|
1522 (defvar mouse-secondary-click-count 0) |
06864fef4ec3
(mouse-secondary-click-count): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8765
diff
changeset
|
1523 |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1524 ;; A marker which records the specified first end for a secondary selection. |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1525 ;; May be nil. |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1526 (defvar mouse-secondary-start nil) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1527 |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1528 (defun mouse-start-secondary (click) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1529 "Set one end of the secondary selection to the position clicked on. |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1530 Use \\[mouse-secondary-save-then-kill] to set the other end |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1531 and complete the secondary selection." |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1532 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1533 (mouse-minibuffer-check click) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1534 (let ((posn (event-start click))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1535 (with-current-buffer (window-buffer (posn-window posn)) |
3823
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1536 ;; Cancel any preexisting secondary selection. |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1537 (delete-overlay mouse-secondary-overlay) |
3823
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1538 (if (numberp (posn-point posn)) |
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1539 (progn |
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1540 (or mouse-secondary-start |
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1541 (setq mouse-secondary-start (make-marker))) |
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1542 (move-marker mouse-secondary-start (posn-point posn))))))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1543 |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1544 (defun mouse-set-secondary (click) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1545 "Set the secondary selection to the text that the mouse is dragged over. |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1546 This must be bound to a mouse drag event." |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1547 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1548 (mouse-minibuffer-check click) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1549 (let ((posn (event-start click)) |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1550 beg |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1551 (end (event-end click))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1552 (with-current-buffer (window-buffer (posn-window posn)) |
3823
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1553 (if (numberp (posn-point posn)) |
7747dabf897f
(mouse-secondary-save-then-kill): Don't switch windows.
Richard M. Stallman <rms@gnu.org>
parents:
3808
diff
changeset
|
1554 (setq beg (posn-point posn))) |
76876
e3994020ab84
(mouse-set-secondary): Update mouse-secondary-overlay.
Chong Yidong <cyd@stupidchicken.com>
parents:
76575
diff
changeset
|
1555 (move-overlay mouse-secondary-overlay beg (posn-point end)) |
e3994020ab84
(mouse-set-secondary): Update mouse-secondary-overlay.
Chong Yidong <cyd@stupidchicken.com>
parents:
76575
diff
changeset
|
1556 (x-set-selection |
e3994020ab84
(mouse-set-secondary): Update mouse-secondary-overlay.
Chong Yidong <cyd@stupidchicken.com>
parents:
76575
diff
changeset
|
1557 'SECONDARY |
e3994020ab84
(mouse-set-secondary): Update mouse-secondary-overlay.
Chong Yidong <cyd@stupidchicken.com>
parents:
76575
diff
changeset
|
1558 (buffer-substring (overlay-start mouse-secondary-overlay) |
e3994020ab84
(mouse-set-secondary): Update mouse-secondary-overlay.
Chong Yidong <cyd@stupidchicken.com>
parents:
76575
diff
changeset
|
1559 (overlay-end mouse-secondary-overlay)))))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1560 |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1561 (defun mouse-drag-secondary (start-event) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1562 "Set the secondary selection to the text that the mouse is dragged over. |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1563 Highlight the drag area as you move the mouse. |
16318
86f1da650461
(mouse-drag-secondary): Make sure to return nil
Richard M. Stallman <rms@gnu.org>
parents:
16304
diff
changeset
|
1564 This must be bound to a button-down mouse event. |
86f1da650461
(mouse-drag-secondary): Make sure to return nil
Richard M. Stallman <rms@gnu.org>
parents:
16304
diff
changeset
|
1565 The function returns a non-nil value if it creates a secondary selection." |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1566 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1567 (mouse-minibuffer-check start-event) |
14179
7db5b89b78b6
(mouse-drag-region, mouse-drag-secondary): Bind echo-keystrokes to 0.
Richard M. Stallman <rms@gnu.org>
parents:
13872
diff
changeset
|
1568 (let* ((echo-keystrokes 0) |
7db5b89b78b6
(mouse-drag-region, mouse-drag-secondary): Bind echo-keystrokes to 0.
Richard M. Stallman <rms@gnu.org>
parents:
13872
diff
changeset
|
1569 (start-posn (event-start start-event)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1570 (start-point (posn-point start-posn)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1571 (start-window (posn-window start-posn)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1572 (bounds (window-edges start-window)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1573 (top (nth 1 bounds)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1574 (bottom (if (window-minibuffer-p start-window) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1575 (nth 3 bounds) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1576 ;; Don't count the mode line. |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1577 (1- (nth 3 bounds)))) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1578 (click-count (1- (event-click-count start-event)))) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1579 (with-current-buffer (window-buffer start-window) |
9206
06864fef4ec3
(mouse-secondary-click-count): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8765
diff
changeset
|
1580 (setq mouse-secondary-click-count click-count) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1581 (if (> (mod click-count 3) 0) |
5007
8ed435ca9650
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
4906
diff
changeset
|
1582 ;; Double or triple press: make an initial selection |
8ed435ca9650
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
4906
diff
changeset
|
1583 ;; of one word or line. |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1584 (let ((range (mouse-start-end start-point start-point click-count))) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1585 (set-marker mouse-secondary-start nil) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1586 ;; Why the double move? --Stef |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1587 ;; (move-overlay mouse-secondary-overlay 1 1 |
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1588 ;; (window-buffer start-window)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1589 (move-overlay mouse-secondary-overlay (car range) (nth 1 range) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1590 (window-buffer start-window))) |
5007
8ed435ca9650
(mouse-save-then-kill-delete-region): Take args BEG and END.
Richard M. Stallman <rms@gnu.org>
parents:
4906
diff
changeset
|
1591 ;; Single-press: cancel any preexisting secondary selection. |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1592 (or mouse-secondary-start |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1593 (setq mouse-secondary-start (make-marker))) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1594 (set-marker mouse-secondary-start start-point) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1595 (delete-overlay mouse-secondary-overlay)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1596 (let (event end end-point) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1597 (track-mouse |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1598 (while (progn |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1599 (setq event (read-event)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1600 (or (mouse-movement-p event) |
59470
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
1601 (memq (car-safe event) '(switch-frame select-window)))) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1602 |
59470
f009f3970cd9
(mouse-drag-mode-line-1, mouse-drag-vertical-line, mouse-drag-region)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59128
diff
changeset
|
1603 (if (memq (car-safe event) '(switch-frame select-window)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1604 nil |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1605 (setq end (event-end event) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1606 end-point (posn-point end)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1607 (cond |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1608 ;; Are we moving within the original window? |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1609 ((and (eq (posn-window end) start-window) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1610 (integer-or-marker-p end-point)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1611 (let ((range (mouse-start-end start-point end-point |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1612 click-count))) |
8224
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1613 (if (or (/= start-point end-point) |
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1614 (null (marker-position mouse-secondary-start))) |
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1615 (progn |
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1616 (set-marker mouse-secondary-start nil) |
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1617 (move-overlay mouse-secondary-overlay |
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1618 (car range) (nth 1 range)))))) |
7588
4a0b3a63e51e
(mouse-drag-secondary): Handle mouse motion out of window
Richard M. Stallman <rms@gnu.org>
parents:
7363
diff
changeset
|
1619 (t |
4a0b3a63e51e
(mouse-drag-secondary): Handle mouse motion out of window
Richard M. Stallman <rms@gnu.org>
parents:
7363
diff
changeset
|
1620 (let ((mouse-row (cdr (cdr (mouse-position))))) |
4a0b3a63e51e
(mouse-drag-secondary): Handle mouse motion out of window
Richard M. Stallman <rms@gnu.org>
parents:
7363
diff
changeset
|
1621 (cond |
4a0b3a63e51e
(mouse-drag-secondary): Handle mouse motion out of window
Richard M. Stallman <rms@gnu.org>
parents:
7363
diff
changeset
|
1622 ((null mouse-row)) |
4a0b3a63e51e
(mouse-drag-secondary): Handle mouse motion out of window
Richard M. Stallman <rms@gnu.org>
parents:
7363
diff
changeset
|
1623 ((< mouse-row top) |
7932
ac4b606bcfa2
(mouse-scroll-subr): New arg WINDOW.
Richard M. Stallman <rms@gnu.org>
parents:
7901
diff
changeset
|
1624 (mouse-scroll-subr start-window (- mouse-row top) |
ac4b606bcfa2
(mouse-scroll-subr): New arg WINDOW.
Richard M. Stallman <rms@gnu.org>
parents:
7901
diff
changeset
|
1625 mouse-secondary-overlay start-point)) |
8064
d04a39ce4f1d
(mouse-scroll-subr): Don't do anything special at eob.
Richard M. Stallman <rms@gnu.org>
parents:
7966
diff
changeset
|
1626 ((>= mouse-row bottom) |
7932
ac4b606bcfa2
(mouse-scroll-subr): New arg WINDOW.
Richard M. Stallman <rms@gnu.org>
parents:
7901
diff
changeset
|
1627 (mouse-scroll-subr start-window (1+ (- mouse-row bottom)) |
7588
4a0b3a63e51e
(mouse-drag-secondary): Handle mouse motion out of window
Richard M. Stallman <rms@gnu.org>
parents:
7363
diff
changeset
|
1628 mouse-secondary-overlay start-point))))))))) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1629 |
7966
76118755a179
(mouse-scroll-subr): Preserve point if WINDOW's not the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
7932
diff
changeset
|
1630 (if (consp event) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1631 (if (marker-position mouse-secondary-start) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1632 (save-window-excursion |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1633 (delete-overlay mouse-secondary-overlay) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1634 (x-set-selection 'SECONDARY nil) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1635 (select-window start-window) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1636 (save-excursion |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1637 (goto-char mouse-secondary-start) |
16318
86f1da650461
(mouse-drag-secondary): Make sure to return nil
Richard M. Stallman <rms@gnu.org>
parents:
16304
diff
changeset
|
1638 (sit-for 1) |
86f1da650461
(mouse-drag-secondary): Make sure to return nil
Richard M. Stallman <rms@gnu.org>
parents:
16304
diff
changeset
|
1639 nil)) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1640 (x-set-selection |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1641 'SECONDARY |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1642 (buffer-substring (overlay-start mouse-secondary-overlay) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1643 (overlay-end mouse-secondary-overlay))))))))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1644 |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1645 (defun mouse-yank-secondary (click) |
5799
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1646 "Insert the secondary selection at the position clicked on. |
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1647 Move point to the end of the inserted text. |
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1648 If `mouse-yank-at-point' is non-nil, insert at point |
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1649 regardless of where you click." |
57843
e91b3798021f
(mouse-yank-at-click, mouse-yank-secondary): Revert
Jan Djärv <jan.h.d@swipnet.se>
parents:
57785
diff
changeset
|
1650 (interactive "e") |
10258
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
1651 ;; Give temporary modes such as isearch a chance to turn off. |
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
1652 (run-hooks 'mouse-leave-buffer-hook) |
5799
13d7ce941848
(mouse-yank-secondary): Do move point.
Richard M. Stallman <rms@gnu.org>
parents:
5280
diff
changeset
|
1653 (or mouse-yank-at-point (mouse-set-point click)) |
81903
3bdde0e93c76
(mouse-yank-secondary): Better error message if no secondary selection.
Richard M. Stallman <rms@gnu.org>
parents:
78126
diff
changeset
|
1654 (let ((secondary (x-get-selection 'SECONDARY))) |
3bdde0e93c76
(mouse-yank-secondary): Better error message if no secondary selection.
Richard M. Stallman <rms@gnu.org>
parents:
78126
diff
changeset
|
1655 (if secondary |
3bdde0e93c76
(mouse-yank-secondary): Better error message if no secondary selection.
Richard M. Stallman <rms@gnu.org>
parents:
78126
diff
changeset
|
1656 (insert (x-get-selection 'SECONDARY)) |
3bdde0e93c76
(mouse-yank-secondary): Better error message if no secondary selection.
Richard M. Stallman <rms@gnu.org>
parents:
78126
diff
changeset
|
1657 (error "No secondary selection")))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1658 |
5280
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1659 (defun mouse-kill-secondary () |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1660 "Kill the text in the secondary selection. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1661 This is intended more as a keyboard command than as a mouse command |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1662 but it can work as either one. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1663 |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1664 The current buffer (in case of keyboard use), or the buffer clicked on, |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1665 must be the one that the secondary selection is in. This requirement |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1666 is to prevent accidents." |
5280
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1667 (interactive) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1668 (let* ((keys (this-command-keys)) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1669 (click (elt keys (1- (length keys))))) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1670 (or (eq (overlay-buffer mouse-secondary-overlay) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1671 (if (listp click) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1672 (window-buffer (posn-window (event-start click))) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1673 (current-buffer))) |
6a260dd9ee05
(mouse-kill-secondary): Get rid of CLICK argument.
Richard M. Stallman <rms@gnu.org>
parents:
5198
diff
changeset
|
1674 (error "Select or click on the buffer where the secondary selection is"))) |
10838
6c0dc7a8a07a
(mouse-kill-secondary): Avoid changing this-command.
Richard M. Stallman <rms@gnu.org>
parents:
10790
diff
changeset
|
1675 (let (this-command) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1676 (with-current-buffer (overlay-buffer mouse-secondary-overlay) |
10838
6c0dc7a8a07a
(mouse-kill-secondary): Avoid changing this-command.
Richard M. Stallman <rms@gnu.org>
parents:
10790
diff
changeset
|
1677 (kill-region (overlay-start mouse-secondary-overlay) |
6c0dc7a8a07a
(mouse-kill-secondary): Avoid changing this-command.
Richard M. Stallman <rms@gnu.org>
parents:
10790
diff
changeset
|
1678 (overlay-end mouse-secondary-overlay)))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1679 (delete-overlay mouse-secondary-overlay) |
10838
6c0dc7a8a07a
(mouse-kill-secondary): Avoid changing this-command.
Richard M. Stallman <rms@gnu.org>
parents:
10790
diff
changeset
|
1680 ;;; (x-set-selection 'SECONDARY nil) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1681 ) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1682 |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1683 (defun mouse-secondary-save-then-kill (click) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1684 "Save text to point in kill ring; the second time, kill the text. |
7302
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1685 You must use this in a buffer where you have recently done \\[mouse-start-secondary]. |
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1686 If the text between where you did \\[mouse-start-secondary] and where |
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1687 you use this command matches the text at the front of the kill ring, |
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1688 this command deletes the text. |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1689 Otherwise, it adds the text to the kill ring, like \\[kill-ring-save], |
7302
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1690 which prepares for a second click with this command to delete the text. |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1691 |
7302
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1692 If you have already made a secondary selection in that buffer, |
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1693 this command extends or retracts the selection to where you click. |
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1694 If you do this again in a different position, it extends or retracts |
1d9c6f42c7ae
(mouse-secondary-save-then-kill): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1695 again. If you do this twice in the same position, it kills the selection." |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1696 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1697 (mouse-minibuffer-check click) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1698 (let ((posn (event-start click)) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1699 (click-posn (posn-point (event-start click))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1700 ;; Don't let a subsequent kill command append to this one: |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1701 ;; prevent setting this-command to kill-region. |
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1702 (this-command this-command)) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1703 (or (eq (window-buffer (posn-window posn)) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1704 (or (overlay-buffer mouse-secondary-overlay) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1705 (if mouse-secondary-start |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1706 (marker-buffer mouse-secondary-start)))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1707 (error "Wrong buffer")) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1708 (with-current-buffer (window-buffer (posn-window posn)) |
9206
06864fef4ec3
(mouse-secondary-click-count): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8765
diff
changeset
|
1709 (if (> (mod mouse-secondary-click-count 3) 0) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1710 (if (not (and (eq last-command 'mouse-secondary-save-then-kill) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1711 (equal click-posn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1712 (car (cdr-safe (cdr-safe mouse-save-then-kill-posn)))))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1713 ;; Find both ends of the object selected by this click. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1714 (let* ((range |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1715 (mouse-start-end click-posn click-posn |
9206
06864fef4ec3
(mouse-secondary-click-count): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8765
diff
changeset
|
1716 mouse-secondary-click-count))) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1717 ;; Move whichever end is closer to the click. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1718 ;; That's what xterm does, and it seems reasonable. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1719 (if (< (abs (- click-posn (overlay-start mouse-secondary-overlay))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1720 (abs (- click-posn (overlay-end mouse-secondary-overlay)))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1721 (move-overlay mouse-secondary-overlay (car range) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1722 (overlay-end mouse-secondary-overlay)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1723 (move-overlay mouse-secondary-overlay |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1724 (overlay-start mouse-secondary-overlay) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1725 (nth 1 range))) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1726 ;; We have already put the old region in the kill ring. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1727 ;; Replace it with the extended region. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1728 ;; (It would be annoying to make a separate entry.) |
8765
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1729 (kill-new (buffer-substring |
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1730 (overlay-start mouse-secondary-overlay) |
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1731 (overlay-end mouse-secondary-overlay)) t) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1732 ;; Arrange for a repeated mouse-3 to kill this region. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1733 (setq mouse-save-then-kill-posn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1734 (list (car kill-ring) (point) click-posn))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1735 ;; If we click this button again without moving it, |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1736 ;; that time kill. |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1737 (progn |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1738 (mouse-save-then-kill-delete-region |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1739 (overlay-start mouse-secondary-overlay) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1740 (overlay-end mouse-secondary-overlay)) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1741 (setq mouse-save-then-kill-posn nil) |
9206
06864fef4ec3
(mouse-secondary-click-count): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8765
diff
changeset
|
1742 (setq mouse-secondary-click-count 0) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1743 (delete-overlay mouse-secondary-overlay))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1744 (if (and (eq last-command 'mouse-secondary-save-then-kill) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1745 mouse-save-then-kill-posn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1746 (eq (car mouse-save-then-kill-posn) (car kill-ring)) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1747 (equal (cdr mouse-save-then-kill-posn) (list (point) click-posn))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1748 ;; If this is the second time we've called |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1749 ;; mouse-secondary-save-then-kill, delete the text from the buffer. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1750 (progn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1751 (mouse-save-then-kill-delete-region |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1752 (overlay-start mouse-secondary-overlay) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1753 (overlay-end mouse-secondary-overlay)) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1754 (setq mouse-save-then-kill-posn nil) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1755 (delete-overlay mouse-secondary-overlay)) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1756 (if (overlay-start mouse-secondary-overlay) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1757 ;; We have a selection, so adjust it. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1758 (progn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1759 (if (numberp click-posn) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1760 (progn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1761 ;; Move whichever end of the region is closer to the click. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1762 ;; That is what xterm does, and it seems reasonable. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1763 (if (< (abs (- click-posn (overlay-start mouse-secondary-overlay))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1764 (abs (- click-posn (overlay-end mouse-secondary-overlay)))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1765 (move-overlay mouse-secondary-overlay click-posn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1766 (overlay-end mouse-secondary-overlay)) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1767 (move-overlay mouse-secondary-overlay |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1768 (overlay-start mouse-secondary-overlay) |
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
1769 click-posn)) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1770 (setq deactivate-mark nil))) |
8224
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1771 (if (eq last-command 'mouse-secondary-save-then-kill) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1772 ;; If the front of the kill ring comes from |
8765
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1773 ;; an immediately previous use of this command, |
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1774 ;; replace it with the extended region. |
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1775 ;; (It would be annoying to make a separate entry.) |
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1776 (kill-new (buffer-substring |
8224
1cc48bdd0c6b
(mouse-drag-secondary): Don't start making an overlay
Richard M. Stallman <rms@gnu.org>
parents:
8204
diff
changeset
|
1777 (overlay-start mouse-secondary-overlay) |
8765
77933f36ddc2
(mouse-save-then-kill, mouse-secondary-save-then-kill): Use the kill-new
Karl Heuer <kwzh@gnu.org>
parents:
8534
diff
changeset
|
1778 (overlay-end mouse-secondary-overlay)) t) |
21194
7a7950ffa79b
(mouse-drag-region): Bind deactivate-mark
Richard M. Stallman <rms@gnu.org>
parents:
21176
diff
changeset
|
1779 (let (deactivate-mark) |
7a7950ffa79b
(mouse-drag-region): Bind deactivate-mark
Richard M. Stallman <rms@gnu.org>
parents:
21176
diff
changeset
|
1780 (copy-region-as-kill (overlay-start mouse-secondary-overlay) |
7a7950ffa79b
(mouse-drag-region): Bind deactivate-mark
Richard M. Stallman <rms@gnu.org>
parents:
21176
diff
changeset
|
1781 (overlay-end mouse-secondary-overlay))))) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1782 (if mouse-secondary-start |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1783 ;; All we have is one end of a selection, |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1784 ;; so put the other end here. |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1785 (let ((start (+ 0 mouse-secondary-start))) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1786 (kill-ring-save start click-posn) |
65640
906677409870
(mouse-move-drag-overlay): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65623
diff
changeset
|
1787 (move-overlay mouse-secondary-overlay start click-posn)))) |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1788 (setq mouse-save-then-kill-posn |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1789 (list (car kill-ring) (point) click-posn)))) |
10782
806b3e3fd93c
(mouse-buffer-menu): Don't clear selection when we kill it.
Richard M. Stallman <rms@gnu.org>
parents:
10720
diff
changeset
|
1790 (if (overlay-buffer mouse-secondary-overlay) |
806b3e3fd93c
(mouse-buffer-menu): Don't clear selection when we kill it.
Richard M. Stallman <rms@gnu.org>
parents:
10720
diff
changeset
|
1791 (x-set-selection 'SECONDARY |
5153
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1792 (buffer-substring |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1793 (overlay-start mouse-secondary-overlay) |
27afcc69725a
(mouse-save-then-kill-delete-region):
Richard M. Stallman <rms@gnu.org>
parents:
5027
diff
changeset
|
1794 (overlay-end mouse-secondary-overlay))))))) |
3808
d852157f581a
(mouse-start-secondary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3712
diff
changeset
|
1795 |
21148
bbbd345f54de
(mouse-buffer-menu-maxlen): Renamed from mouse-menu-buffer-maxlen.
Richard M. Stallman <rms@gnu.org>
parents:
20686
diff
changeset
|
1796 (defcustom mouse-buffer-menu-maxlen 20 |
13872
e79f2b570509
(mouse-menu-buffer-maxlen): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13870
diff
changeset
|
1797 "*Number of buffers in one pane (submenu) of the buffer menu. |
e79f2b570509
(mouse-menu-buffer-maxlen): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13870
diff
changeset
|
1798 If we have lots of buffers, divide them into groups of |
21148
bbbd345f54de
(mouse-buffer-menu-maxlen): Renamed from mouse-menu-buffer-maxlen.
Richard M. Stallman <rms@gnu.org>
parents:
20686
diff
changeset
|
1799 `mouse-buffer-menu-maxlen' and make a pane (or submenu) for each one." |
17636 | 1800 :type 'integer |
1801 :group 'mouse) | |
13872
e79f2b570509
(mouse-menu-buffer-maxlen): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13870
diff
changeset
|
1802 |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1803 (defcustom mouse-buffer-menu-mode-mult 4 |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1804 "*Group the buffers by the major mode groups on \\[mouse-buffer-menu]? |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1805 This number which determines (in a hairy way) whether \\[mouse-buffer-menu] |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1806 will split the buffer menu by the major modes (see |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1807 `mouse-buffer-menu-mode-groups') or just by menu length. |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1808 Set to 1 (or even 0!) if you want to group by major mode always, and to |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1809 a large number if you prefer a mixed multitude. The default is 4." |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1810 :type 'integer |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1811 :group 'mouse |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1812 :version "20.3") |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1813 |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1814 (defvar mouse-buffer-menu-mode-groups |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1815 '(("Info\\|Help\\|Apropos\\|Man" . "Help") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1816 ("\\bVM\\b\\|\\bMH\\b\\|Message\\|Mail\\|Group\\|Score\\|Summary\\|Article" |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1817 . "Mail/News") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1818 ("\\<C\\>" . "C") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1819 ("ObjC" . "C") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1820 ("Text" . "Text") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1821 ("Outline" . "Text") |
40379
00827567d7bd
(mouse-buffer-menu-mode-groups): added SGML group
Sam Steingold <sds@gnu.org>
parents:
40268
diff
changeset
|
1822 ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML") |
00827567d7bd
(mouse-buffer-menu-mode-groups): added SGML group
Sam Steingold <sds@gnu.org>
parents:
40268
diff
changeset
|
1823 ("log\\|diff\\|vc\\|cvs" . "Version Control") ; "Change Management"? |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1824 ("Lisp" . "Lisp")) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1825 "How to group various major modes together in \\[mouse-buffer-menu]. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1826 Each element has the form (REGEXP . GROUPNAME). |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1827 If the major mode's name string matches REGEXP, use GROUPNAME instead.") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1828 |
1056
a7fc54083464
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
1829 (defun mouse-buffer-menu (event) |
1728
2a49d509b30d
(mouse-buffer-menu): Select the window clicked on.
Richard M. Stallman <rms@gnu.org>
parents:
1421
diff
changeset
|
1830 "Pop up a menu of buffers for selection with the mouse. |
2a49d509b30d
(mouse-buffer-menu): Select the window clicked on.
Richard M. Stallman <rms@gnu.org>
parents:
1421
diff
changeset
|
1831 This switches buffers in the window that you clicked on, |
2a49d509b30d
(mouse-buffer-menu): Select the window clicked on.
Richard M. Stallman <rms@gnu.org>
parents:
1421
diff
changeset
|
1832 and selects that window." |
1113 | 1833 (interactive "e") |
6266
66c0ed95c03f
(mouse-minibuffer-check): New function to disallow mouse events in an inactive
Karl Heuer <kwzh@gnu.org>
parents:
6231
diff
changeset
|
1834 (mouse-minibuffer-check event) |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1835 (let ((buffers (buffer-list)) alist menu split-by-major-mode sum-of-squares) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1836 ;; Make an alist of elements that look like (MENU-ITEM . BUFFER). |
82298
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1837 (dolist (buf buffers) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1838 ;; Divide all buffers into buckets for various major modes. |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1839 ;; Each bucket looks like (MODE NAMESTRING BUFFERS...). |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1840 (with-current-buffer buf |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1841 (let* ((adjusted-major-mode major-mode) elt) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1842 (dolist (group mouse-buffer-menu-mode-groups) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1843 (when (string-match (car group) (format-mode-line mode-name)) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1844 (setq adjusted-major-mode (cdr group)))) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1845 (setq elt (assoc adjusted-major-mode split-by-major-mode)) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1846 (unless elt |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1847 (setq elt (list adjusted-major-mode |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1848 (if (stringp adjusted-major-mode) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1849 adjusted-major-mode |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1850 mode-name)) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1851 split-by-major-mode (cons elt split-by-major-mode))) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1852 (or (memq buf (cdr (cdr elt))) |
0b0e460b400a
(mouse-buffer-menu): Pass mode-name through format-mode-line because it
Sam Steingold <sds@gnu.org>
parents:
82140
diff
changeset
|
1853 (setcdr (cdr elt) (cons buf (cdr (cdr elt)))))))) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1854 ;; Compute the sum of squares of sizes of the major-mode buckets. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1855 (let ((tail split-by-major-mode)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1856 (setq sum-of-squares 0) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1857 (while tail |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1858 (setq sum-of-squares |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1859 (+ sum-of-squares |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1860 (let ((len (length (cdr (cdr (car tail)))))) (* len len)))) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1861 (setq tail (cdr tail)))) |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1862 (if (< (* sum-of-squares mouse-buffer-menu-mode-mult) |
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1863 (* (length buffers) (length buffers))) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1864 ;; Subdividing by major modes really helps, so let's do it. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1865 (let (subdivided-menus (buffers-left (length buffers))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1866 ;; Sort the list to put the most popular major modes first. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1867 (setq split-by-major-mode |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1868 (sort split-by-major-mode |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1869 (function (lambda (elt1 elt2) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1870 (> (length elt1) (length elt2)))))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1871 ;; Make a separate submenu for each major mode |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1872 ;; that has more than one buffer, |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1873 ;; unless all the remaining buffers are less than 1/10 of them. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1874 (while (and split-by-major-mode |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1875 (and (> (length (car split-by-major-mode)) 3) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1876 (> (* buffers-left 10) (length buffers)))) |
38982
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1877 (let ((this-mode-list (mouse-buffer-menu-alist |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1878 (cdr (cdr (car split-by-major-mode)))))) |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1879 (and this-mode-list |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1880 (setq subdivided-menus |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1881 (cons (cons |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1882 (nth 1 (car split-by-major-mode)) |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1883 this-mode-list) |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1884 subdivided-menus)))) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1885 (setq buffers-left |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1886 (- buffers-left (length (cdr (car split-by-major-mode))))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1887 (setq split-by-major-mode (cdr split-by-major-mode))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1888 ;; If any major modes are left over, |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1889 ;; make a single submenu for them. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1890 (if split-by-major-mode |
38982
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1891 (let ((others-list |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1892 (mouse-buffer-menu-alist |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1893 ;; we don't need split-by-major-mode any more, |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1894 ;; so we can ditch it with nconc. |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1895 (apply 'nconc (mapcar 'cddr split-by-major-mode))))) |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1896 (and others-list |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1897 (setq subdivided-menus |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1898 (cons (cons "Others" others-list) |
f12d1ec614e9
(mouse-buffer-menu): If the buffer menu is split by
Eli Zaretskii <eliz@gnu.org>
parents:
38763
diff
changeset
|
1899 subdivided-menus))))) |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1900 (setq menu (cons "Buffer Menu" (nreverse subdivided-menus)))) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1901 (progn |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1902 (setq alist (mouse-buffer-menu-alist buffers)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1903 (setq menu (cons "Buffer Menu" |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1904 (mouse-buffer-menu-split "Select Buffer" alist))))) |
1728
2a49d509b30d
(mouse-buffer-menu): Select the window clicked on.
Richard M. Stallman <rms@gnu.org>
parents:
1421
diff
changeset
|
1905 (let ((buf (x-popup-menu event menu)) |
2a49d509b30d
(mouse-buffer-menu): Select the window clicked on.
Richard M. Stallman <rms@gnu.org>
parents:
1421
diff
changeset
|
1906 (window (posn-window (event-start event)))) |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1907 (when buf |
41033
0701d564260d
(mouse-show-mark): Either move point to the mark
Richard M. Stallman <rms@gnu.org>
parents:
40648
diff
changeset
|
1908 (select-window |
0701d564260d
(mouse-show-mark): Either move point to the mark
Richard M. Stallman <rms@gnu.org>
parents:
40648
diff
changeset
|
1909 (if (framep window) (frame-selected-window window) |
0701d564260d
(mouse-show-mark): Either move point to the mark
Richard M. Stallman <rms@gnu.org>
parents:
40648
diff
changeset
|
1910 window)) |
21685
b0ae6e29c252
(mouse-buffer-menu-mode-mult): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21426
diff
changeset
|
1911 (switch-to-buffer buf))))) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1912 |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1913 (defun mouse-buffer-menu-alist (buffers) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1914 (let (tail |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1915 (maxlen 0) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1916 head) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1917 (setq buffers |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1918 (sort buffers |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1919 (function (lambda (elt1 elt2) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1920 (string< (buffer-name elt1) (buffer-name elt2)))))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1921 (setq tail buffers) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1922 (while tail |
63849
91ca3ff1b216
(mouse-buffer-menu-alist): Change space constants followed by a sexp to "?\s ".
Juanma Barranquero <lekktu@gmail.com>
parents:
63256
diff
changeset
|
1923 (or (eq ?\s (aref (buffer-name (car tail)) 0)) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1924 (setq maxlen |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1925 (max maxlen |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1926 (length (buffer-name (car tail)))))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1927 (setq tail (cdr tail))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1928 (setq tail buffers) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1929 (while tail |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1930 (let ((elt (car tail))) |
74238
1901989292d8
(mouse-popup-menubar, mouse-buffer-menu-alist): "?\ " -> "?\s".
Juanma Barranquero <lekktu@gmail.com>
parents:
74024
diff
changeset
|
1931 (if (/= (aref (buffer-name elt) 0) ?\s) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1932 (setq head |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1933 (cons |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1934 (cons |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1935 (format |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1936 (format "%%%ds %%s%%s %%s" maxlen) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1937 (buffer-name elt) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1938 (if (buffer-modified-p elt) "*" " ") |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1939 (save-excursion |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1940 (set-buffer elt) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1941 (if buffer-read-only "%" " ")) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1942 (or (buffer-file-name elt) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1943 (save-excursion |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1944 (set-buffer elt) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1945 (if list-buffers-directory |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1946 (expand-file-name |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1947 list-buffers-directory))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1948 "")) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1949 elt) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1950 head)))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1951 (setq tail (cdr tail))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1952 ;; Compensate for the reversal that the above loop does. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1953 (nreverse head))) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1954 |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1955 (defun mouse-buffer-menu-split (title alist) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1956 ;; If we have lots of buffers, divide them into groups of 20 |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1957 ;; and make a pane (or submenu) for each one. |
21148
bbbd345f54de
(mouse-buffer-menu-maxlen): Renamed from mouse-menu-buffer-maxlen.
Richard M. Stallman <rms@gnu.org>
parents:
20686
diff
changeset
|
1958 (if (> (length alist) (/ (* mouse-buffer-menu-maxlen 3) 2)) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1959 (let ((alist alist) sublists next |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1960 (i 1)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1961 (while alist |
21148
bbbd345f54de
(mouse-buffer-menu-maxlen): Renamed from mouse-menu-buffer-maxlen.
Richard M. Stallman <rms@gnu.org>
parents:
20686
diff
changeset
|
1962 ;; Pull off the next mouse-buffer-menu-maxlen buffers |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1963 ;; and make them the next element of sublist. |
21148
bbbd345f54de
(mouse-buffer-menu-maxlen): Renamed from mouse-menu-buffer-maxlen.
Richard M. Stallman <rms@gnu.org>
parents:
20686
diff
changeset
|
1964 (setq next (nthcdr mouse-buffer-menu-maxlen alist)) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1965 (if next |
21148
bbbd345f54de
(mouse-buffer-menu-maxlen): Renamed from mouse-menu-buffer-maxlen.
Richard M. Stallman <rms@gnu.org>
parents:
20686
diff
changeset
|
1966 (setcdr (nthcdr (1- mouse-buffer-menu-maxlen) alist) |
16989
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1967 nil)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1968 (setq sublists (cons (cons (format "Buffers %d" i) alist) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1969 sublists)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1970 (setq i (1+ i)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1971 (setq alist next)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1972 (nreverse sublists)) |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1973 ;; Few buffers--put them all in one pane. |
4e31b0ff76a9
(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
Richard M. Stallman <rms@gnu.org>
parents:
16746
diff
changeset
|
1974 (list (cons title alist)))) |
66 | 1975 |
1980
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1976 ;;; These need to be rewritten for the new scroll bar implementation. |
66 | 1977 |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1978 ;;;!! ;; Commands for the scroll bar. |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1979 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1980 ;;;!! (defun mouse-scroll-down (click) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1981 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1982 ;;;!! (scroll-down (1+ (cdr (mouse-coords click))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1983 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1984 ;;;!! (defun mouse-scroll-up (click) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1985 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1986 ;;;!! (scroll-up (1+ (cdr (mouse-coords click))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1987 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1988 ;;;!! (defun mouse-scroll-down-full () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1989 ;;;!! (interactive "@") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1990 ;;;!! (scroll-down nil)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1991 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1992 ;;;!! (defun mouse-scroll-up-full () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1993 ;;;!! (interactive "@") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1994 ;;;!! (scroll-up nil)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1995 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1996 ;;;!! (defun mouse-scroll-move-cursor (click) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1997 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
1998 ;;;!! (move-to-window-line (1+ (cdr (mouse-coords click))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
1999 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2000 ;;;!! (defun mouse-scroll-absolute (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2001 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2002 ;;;!! (let* ((pos (car event)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2003 ;;;!! (position (car pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2004 ;;;!! (length (car (cdr pos)))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2005 ;;;!! (if (<= length 0) (setq length 1)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2006 ;;;!! (let* ((scale-factor (max 1 (/ length (/ 8000000 (buffer-size))))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2007 ;;;!! (newpos (* (/ (* (/ (buffer-size) scale-factor) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2008 ;;;!! position) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2009 ;;;!! length) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2010 ;;;!! scale-factor))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2011 ;;;!! (goto-char newpos) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2012 ;;;!! (recenter '(4))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2013 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2014 ;;;!! (defun mouse-scroll-left (click) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2015 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2016 ;;;!! (scroll-left (1+ (car (mouse-coords click))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2017 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2018 ;;;!! (defun mouse-scroll-right (click) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2019 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2020 ;;;!! (scroll-right (1+ (car (mouse-coords click))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2021 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2022 ;;;!! (defun mouse-scroll-left-full () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2023 ;;;!! (interactive "@") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2024 ;;;!! (scroll-left nil)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2025 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2026 ;;;!! (defun mouse-scroll-right-full () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2027 ;;;!! (interactive "@") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2028 ;;;!! (scroll-right nil)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2029 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2030 ;;;!! (defun mouse-scroll-move-cursor-horizontally (click) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2031 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2032 ;;;!! (move-to-column (1+ (car (mouse-coords click))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2033 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2034 ;;;!! (defun mouse-scroll-absolute-horizontally (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2035 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2036 ;;;!! (let* ((pos (car event)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2037 ;;;!! (position (car pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2038 ;;;!! (length (car (cdr pos)))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2039 ;;;!! (set-window-hscroll (selected-window) 33))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2040 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2041 ;;;!! (global-set-key [scroll-bar mouse-1] 'mouse-scroll-up) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2042 ;;;!! (global-set-key [scroll-bar mouse-2] 'mouse-scroll-absolute) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2043 ;;;!! (global-set-key [scroll-bar mouse-3] 'mouse-scroll-down) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2044 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2045 ;;;!! (global-set-key [vertical-slider mouse-1] 'mouse-scroll-move-cursor) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2046 ;;;!! (global-set-key [vertical-slider mouse-2] 'mouse-scroll-move-cursor) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2047 ;;;!! (global-set-key [vertical-slider mouse-3] 'mouse-scroll-move-cursor) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2048 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2049 ;;;!! (global-set-key [thumbup mouse-1] 'mouse-scroll-up-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2050 ;;;!! (global-set-key [thumbup mouse-2] 'mouse-scroll-up-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2051 ;;;!! (global-set-key [thumbup mouse-3] 'mouse-scroll-up-full) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2052 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2053 ;;;!! (global-set-key [thumbdown mouse-1] 'mouse-scroll-down-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2054 ;;;!! (global-set-key [thumbdown mouse-2] 'mouse-scroll-down-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2055 ;;;!! (global-set-key [thumbdown mouse-3] 'mouse-scroll-down-full) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2056 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2057 ;;;!! (global-set-key [horizontal-scroll-bar mouse-1] 'mouse-scroll-left) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2058 ;;;!! (global-set-key [horizontal-scroll-bar mouse-2] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2059 ;;;!! 'mouse-scroll-absolute-horizontally) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2060 ;;;!! (global-set-key [horizontal-scroll-bar mouse-3] 'mouse-scroll-right) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2061 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2062 ;;;!! (global-set-key [horizontal-slider mouse-1] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2063 ;;;!! 'mouse-scroll-move-cursor-horizontally) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2064 ;;;!! (global-set-key [horizontal-slider mouse-2] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2065 ;;;!! 'mouse-scroll-move-cursor-horizontally) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2066 ;;;!! (global-set-key [horizontal-slider mouse-3] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2067 ;;;!! 'mouse-scroll-move-cursor-horizontally) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2068 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2069 ;;;!! (global-set-key [thumbleft mouse-1] 'mouse-scroll-left-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2070 ;;;!! (global-set-key [thumbleft mouse-2] 'mouse-scroll-left-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2071 ;;;!! (global-set-key [thumbleft mouse-3] 'mouse-scroll-left-full) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2072 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2073 ;;;!! (global-set-key [thumbright mouse-1] 'mouse-scroll-right-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2074 ;;;!! (global-set-key [thumbright mouse-2] 'mouse-scroll-right-full) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2075 ;;;!! (global-set-key [thumbright mouse-3] 'mouse-scroll-right-full) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2076 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2077 ;;;!! (global-set-key [horizontal-scroll-bar S-mouse-2] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2078 ;;;!! 'mouse-split-window-horizontally) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2079 ;;;!! (global-set-key [mode-line S-mouse-2] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2080 ;;;!! 'mouse-split-window-horizontally) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2081 ;;;!! (global-set-key [vertical-scroll-bar S-mouse-2] |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2082 ;;;!! 'mouse-split-window) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2083 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2084 ;;;!! ;;;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2085 ;;;!! ;;;; Here are experimental things being tested. Mouse events |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2086 ;;;!! ;;;; are of the form: |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2087 ;;;!! ;;;; ((x y) window screen-part key-sequence timestamp) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2088 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2089 ;;;!! ;;;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2090 ;;;!! ;;;; Dynamically track mouse coordinates |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2091 ;;;!! ;;;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2092 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2093 ;;;!! ;;(defun track-mouse (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2094 ;;;!! ;; "Track the coordinates, absolute and relative, of the mouse." |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2095 ;;;!! ;; (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2096 ;;;!! ;; (while mouse-grabbed |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2097 ;;;!! ;; (let* ((pos (read-mouse-position (selected-screen))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2098 ;;;!! ;; (abs-x (car pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2099 ;;;!! ;; (abs-y (cdr pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2100 ;;;!! ;; (relative-coordinate (coordinates-in-window-p |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2101 ;;;!! ;; (list (car pos) (cdr pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2102 ;;;!! ;; (selected-window)))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2103 ;;;!! ;; (if (consp relative-coordinate) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2104 ;;;!! ;; (message "mouse: [%d %d], (%d %d)" abs-x abs-y |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2105 ;;;!! ;; (car relative-coordinate) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2106 ;;;!! ;; (car (cdr relative-coordinate))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2107 ;;;!! ;; (message "mouse: [%d %d]" abs-x abs-y))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2108 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2109 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2110 ;;;!! ;; Dynamically put a box around the line indicated by point |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2111 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2112 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2113 ;;;!! ;;(require 'backquote) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2114 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2115 ;;;!! ;;(defun mouse-select-buffer-line (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2116 ;;;!! ;; (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2117 ;;;!! ;; (let ((relative-coordinate |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2118 ;;;!! ;; (coordinates-in-window-p (car event) (selected-window))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2119 ;;;!! ;; (abs-y (car (cdr (car event))))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2120 ;;;!! ;; (if (consp relative-coordinate) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2121 ;;;!! ;; (progn |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2122 ;;;!! ;; (save-excursion |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2123 ;;;!! ;; (move-to-window-line (car (cdr relative-coordinate))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2124 ;;;!! ;; (x-draw-rectangle |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2125 ;;;!! ;; (selected-screen) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2126 ;;;!! ;; abs-y 0 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2127 ;;;!! ;; (save-excursion |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2128 ;;;!! ;; (move-to-window-line (car (cdr relative-coordinate))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2129 ;;;!! ;; (end-of-line) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2130 ;;;!! ;; (push-mark nil t) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2131 ;;;!! ;; (beginning-of-line) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2132 ;;;!! ;; (- (region-end) (region-beginning))) 1)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2133 ;;;!! ;; (sit-for 1) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2134 ;;;!! ;; (x-erase-rectangle (selected-screen)))))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2135 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2136 ;;;!! ;;(defvar last-line-drawn nil) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2137 ;;;!! ;;(defvar begin-delim "[^ \t]") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2138 ;;;!! ;;(defvar end-delim "[^ \t]") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2139 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2140 ;;;!! ;;(defun mouse-boxing (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2141 ;;;!! ;; (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2142 ;;;!! ;; (save-excursion |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2143 ;;;!! ;; (let ((screen (selected-screen))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2144 ;;;!! ;; (while (= (x-mouse-events) 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2145 ;;;!! ;; (let* ((pos (read-mouse-position screen)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2146 ;;;!! ;; (abs-x (car pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2147 ;;;!! ;; (abs-y (cdr pos)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2148 ;;;!! ;; (relative-coordinate |
41611
64ee9a4a698e
Converted backquote to the new style (in comments).
Sam Steingold <sds@gnu.org>
parents:
41034
diff
changeset
|
2149 ;;;!! ;; (coordinates-in-window-p `(,abs-x ,abs-y) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2150 ;;;!! ;; (selected-window))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2151 ;;;!! ;; (begin-reg nil) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2152 ;;;!! ;; (end-reg nil) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2153 ;;;!! ;; (end-column nil) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2154 ;;;!! ;; (begin-column nil)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2155 ;;;!! ;; (if (and (consp relative-coordinate) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2156 ;;;!! ;; (or (not last-line-drawn) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2157 ;;;!! ;; (not (= last-line-drawn abs-y)))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2158 ;;;!! ;; (progn |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2159 ;;;!! ;; (move-to-window-line (car (cdr relative-coordinate))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2160 ;;;!! ;; (if (= (following-char) 10) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2161 ;;;!! ;; () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2162 ;;;!! ;; (progn |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2163 ;;;!! ;; (setq begin-reg (1- (re-search-forward end-delim))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2164 ;;;!! ;; (setq begin-column (1- (current-column))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2165 ;;;!! ;; (end-of-line) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2166 ;;;!! ;; (setq end-reg (1+ (re-search-backward begin-delim))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2167 ;;;!! ;; (setq end-column (1+ (current-column))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2168 ;;;!! ;; (message "%s" (buffer-substring begin-reg end-reg)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2169 ;;;!! ;; (x-draw-rectangle screen |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2170 ;;;!! ;; (setq last-line-drawn abs-y) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2171 ;;;!! ;; begin-column |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2172 ;;;!! ;; (- end-column begin-column) 1)))))))))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2173 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2174 ;;;!! ;;(defun mouse-erase-box () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2175 ;;;!! ;; (interactive) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2176 ;;;!! ;; (if last-line-drawn |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2177 ;;;!! ;; (progn |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2178 ;;;!! ;; (x-erase-rectangle (selected-screen)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2179 ;;;!! ;; (setq last-line-drawn nil)))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2180 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2181 ;;;!! ;;; (defun test-x-rectangle () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2182 ;;;!! ;;; (use-local-mouse-map (setq rectangle-test-map (make-sparse-keymap))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2183 ;;;!! ;;; (define-key rectangle-test-map mouse-motion-button-left 'mouse-boxing) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2184 ;;;!! ;;; (define-key rectangle-test-map mouse-button-left-up 'mouse-erase-box)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2185 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2186 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2187 ;;;!! ;; Here is how to do double clicking in lisp. About to change. |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2188 ;;;!! ;; |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2189 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2190 ;;;!! (defvar double-start nil) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2191 ;;;!! (defconst double-click-interval 300 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2192 ;;;!! "Max ticks between clicks") |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2193 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2194 ;;;!! (defun double-down (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2195 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2196 ;;;!! (if double-start |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2197 ;;;!! (let ((interval (- (nth 4 event) double-start))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2198 ;;;!! (if (< interval double-click-interval) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2199 ;;;!! (progn |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2200 ;;;!! (backward-up-list 1) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2201 ;;;!! ;; (message "Interval %d" interval) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2202 ;;;!! (sleep-for 1))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2203 ;;;!! (setq double-start nil)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2204 ;;;!! (setq double-start (nth 4 event)))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2205 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2206 ;;;!! (defun double-up (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2207 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2208 ;;;!! (and double-start |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2209 ;;;!! (> (- (nth 4 event ) double-start) double-click-interval) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2210 ;;;!! (setq double-start nil))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2211 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2212 ;;;!! ;;; (defun x-test-doubleclick () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2213 ;;;!! ;;; (use-local-mouse-map (setq doubleclick-test-map (make-sparse-keymap))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2214 ;;;!! ;;; (define-key doubleclick-test-map mouse-button-left 'double-down) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2215 ;;;!! ;;; (define-key doubleclick-test-map mouse-button-left-up 'double-up)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2216 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2217 ;;;!! ;; |
1980
263033210413
* mouse.el (mouse-split-window-vertically): If the user clicks too
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
2218 ;;;!! ;; This scrolls while button is depressed. Use preferable in scroll bar. |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2219 ;;;!! ;; |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2220 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2221 ;;;!! (defvar scrolled-lines 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2222 ;;;!! (defconst scroll-speed 1) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2223 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2224 ;;;!! (defun incr-scroll-down (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2225 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2226 ;;;!! (setq scrolled-lines 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2227 ;;;!! (incremental-scroll scroll-speed)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2228 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2229 ;;;!! (defun incr-scroll-up (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2230 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2231 ;;;!! (setq scrolled-lines 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2232 ;;;!! (incremental-scroll (- scroll-speed))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2233 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2234 ;;;!! (defun incremental-scroll (n) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2235 ;;;!! (while (= (x-mouse-events) 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2236 ;;;!! (setq scrolled-lines (1+ (* scroll-speed scrolled-lines))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2237 ;;;!! (scroll-down n) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2238 ;;;!! (sit-for 300 t))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2239 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2240 ;;;!! (defun incr-scroll-stop (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2241 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2242 ;;;!! (message "Scrolled %d lines" scrolled-lines) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2243 ;;;!! (setq scrolled-lines 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2244 ;;;!! (sleep-for 1)) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2245 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2246 ;;;!! ;;; (defun x-testing-scroll () |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2247 ;;;!! ;;; (let ((scrolling-map (function mouse-vertical-scroll-bar-prefix))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2248 ;;;!! ;;; (define-key scrolling-map mouse-button-left 'incr-scroll-down) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2249 ;;;!! ;;; (define-key scrolling-map mouse-button-right 'incr-scroll-up) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2250 ;;;!! ;;; (define-key scrolling-map mouse-button-left-up 'incr-scroll-stop) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2251 ;;;!! ;;; (define-key scrolling-map mouse-button-right-up 'incr-scroll-stop))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2252 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2253 ;;;!! ;; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2254 ;;;!! ;; Some playthings suitable for picture mode? They need work. |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2255 ;;;!! ;; |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2256 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2257 ;;;!! (defun mouse-kill-rectangle (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2258 ;;;!! "Kill the rectangle between point and the mouse cursor." |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2259 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2260 ;;;!! (let ((point-save (point))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2261 ;;;!! (save-excursion |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2262 ;;;!! (mouse-set-point event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2263 ;;;!! (push-mark nil t) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2264 ;;;!! (if (> point-save (point)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2265 ;;;!! (kill-rectangle (point) point-save) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2266 ;;;!! (kill-rectangle point-save (point)))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2267 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2268 ;;;!! (defun mouse-open-rectangle (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2269 ;;;!! "Kill the rectangle between point and the mouse cursor." |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2270 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2271 ;;;!! (let ((point-save (point))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2272 ;;;!! (save-excursion |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2273 ;;;!! (mouse-set-point event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2274 ;;;!! (push-mark nil t) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2275 ;;;!! (if (> point-save (point)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2276 ;;;!! (open-rectangle (point) point-save) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2277 ;;;!! (open-rectangle point-save (point)))))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2278 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2279 ;;;!! ;; Must be a better way to do this. |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2280 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2281 ;;;!! (defun mouse-multiple-insert (n char) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2282 ;;;!! (while (> n 0) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2283 ;;;!! (insert char) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2284 ;;;!! (setq n (1- n)))) |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2285 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2286 ;;;!! ;; What this could do is not finalize until button was released. |
40268
3b6c70f1fe6c
(mouse-buffer-menu-mode-groups): Added "Version Control" group.
Sam Steingold <sds@gnu.org>
parents:
38982
diff
changeset
|
2287 ;;;!! |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2288 ;;;!! (defun mouse-move-text (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2289 ;;;!! "Move text from point to cursor position, inserting spaces." |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2290 ;;;!! (interactive "@e") |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2291 ;;;!! (let* ((relative-coordinate |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2292 ;;;!! (coordinates-in-window-p (car event) (selected-window)))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2293 ;;;!! (if (consp relative-coordinate) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2294 ;;;!! (cond ((> (current-column) (car relative-coordinate)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2295 ;;;!! (delete-char |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2296 ;;;!! (- (car relative-coordinate) (current-column)))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2297 ;;;!! ((< (current-column) (car relative-coordinate)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2298 ;;;!! (mouse-multiple-insert |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2299 ;;;!! (- (car relative-coordinate) (current-column)) " ")) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2300 ;;;!! ((= (current-column) (car relative-coordinate)) (ding)))))) |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2301 |
4081
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2302 ;; Choose a completion with the mouse. |
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2303 |
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2304 (defun mouse-choose-completion (event) |
4371
fb0e37e7afae
(mouse-choose-completion): Actually choose that alternative,
Richard M. Stallman <rms@gnu.org>
parents:
4294
diff
changeset
|
2305 "Click on an alternative in the `*Completions*' buffer to choose it." |
4081
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2306 (interactive "e") |
10258
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
2307 ;; Give temporary modes such as isearch a chance to turn off. |
0bcc67b3fe66
(mouse-minibuffer-check, mouse-drag-mode-line)
Richard M. Stallman <rms@gnu.org>
parents:
9936
diff
changeset
|
2308 (run-hooks 'mouse-leave-buffer-hook) |
4788
3182c0f7ace4
(mouse-delete-max-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4751
diff
changeset
|
2309 (let ((buffer (window-buffer)) |
8477
f4aa7a288cb6
(mouse-choose-completion): Pass completion-base-size value
Richard M. Stallman <rms@gnu.org>
parents:
8460
diff
changeset
|
2310 choice |
f4aa7a288cb6
(mouse-choose-completion): Pass completion-base-size value
Richard M. Stallman <rms@gnu.org>
parents:
8460
diff
changeset
|
2311 base-size) |
4081
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2312 (save-excursion |
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2313 (set-buffer (window-buffer (posn-window (event-start event)))) |
6163
f349bcb0ff59
(mouse-choose-completion): Use that as the buffer to edit.
Richard M. Stallman <rms@gnu.org>
parents:
6090
diff
changeset
|
2314 (if completion-reference-buffer |
f349bcb0ff59
(mouse-choose-completion): Use that as the buffer to edit.
Richard M. Stallman <rms@gnu.org>
parents:
6090
diff
changeset
|
2315 (setq buffer completion-reference-buffer)) |
8477
f4aa7a288cb6
(mouse-choose-completion): Pass completion-base-size value
Richard M. Stallman <rms@gnu.org>
parents:
8460
diff
changeset
|
2316 (setq base-size completion-base-size) |
4081
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2317 (save-excursion |
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2318 (goto-char (posn-point (event-start event))) |
7593
a837cfdcf7c0
(mouse-choose-completion):
Richard M. Stallman <rms@gnu.org>
parents:
7588
diff
changeset
|
2319 (let (beg end) |
8204
f5c8a4e8c4a5
(mouse-choose-completion): Use mouse-face properties to find string to use.
Richard M. Stallman <rms@gnu.org>
parents:
8200
diff
changeset
|
2320 (if (and (not (eobp)) (get-text-property (point) 'mouse-face)) |
f5c8a4e8c4a5
(mouse-choose-completion): Use mouse-face properties to find string to use.
Richard M. Stallman <rms@gnu.org>
parents:
8200
diff
changeset
|
2321 (setq end (point) beg (1+ (point)))) |
f5c8a4e8c4a5
(mouse-choose-completion): Use mouse-face properties to find string to use.
Richard M. Stallman <rms@gnu.org>
parents:
8200
diff
changeset
|
2322 (if (null beg) |
f5c8a4e8c4a5
(mouse-choose-completion): Use mouse-face properties to find string to use.
Richard M. Stallman <rms@gnu.org>
parents:
8200
diff
changeset
|
2323 (error "No completion here")) |
f5c8a4e8c4a5
(mouse-choose-completion): Use mouse-face properties to find string to use.
Richard M. Stallman <rms@gnu.org>
parents:
8200
diff
changeset
|
2324 (setq beg (previous-single-property-change beg 'mouse-face)) |
8381
9d751556d1c7
(mouse-choose-completion): Check for next-single-property-change
Richard M. Stallman <rms@gnu.org>
parents:
8268
diff
changeset
|
2325 (setq end (or (next-single-property-change end 'mouse-face) |
9d751556d1c7
(mouse-choose-completion): Check for next-single-property-change
Richard M. Stallman <rms@gnu.org>
parents:
8268
diff
changeset
|
2326 (point-max))) |
67779
01ba52243e5f
(mouse-choose-completion): Replace `buffer-substring' with
Juri Linkov <juri@jurta.org>
parents:
67524
diff
changeset
|
2327 (setq choice (buffer-substring-no-properties beg end))))) |
6231
c2bb4c368553
(mouse-choose-completion): Bury the completion buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6163
diff
changeset
|
2328 (let ((owindow (selected-window))) |
c2bb4c368553
(mouse-choose-completion): Bury the completion buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6163
diff
changeset
|
2329 (select-window (posn-window (event-start event))) |
7794
10ed4c75936b
(mouse-choose-completion): If *Completion* is a special
Richard M. Stallman <rms@gnu.org>
parents:
7637
diff
changeset
|
2330 (if (and (one-window-p t 'selected-frame) |
10ed4c75936b
(mouse-choose-completion): If *Completion* is a special
Richard M. Stallman <rms@gnu.org>
parents:
7637
diff
changeset
|
2331 (window-dedicated-p (selected-window))) |
10ed4c75936b
(mouse-choose-completion): If *Completion* is a special
Richard M. Stallman <rms@gnu.org>
parents:
7637
diff
changeset
|
2332 ;; This is a special buffer's frame |
10ed4c75936b
(mouse-choose-completion): If *Completion* is a special
Richard M. Stallman <rms@gnu.org>
parents:
7637
diff
changeset
|
2333 (iconify-frame (selected-frame)) |
10ed4c75936b
(mouse-choose-completion): If *Completion* is a special
Richard M. Stallman <rms@gnu.org>
parents:
7637
diff
changeset
|
2334 (or (window-dedicated-p (selected-window)) |
10ed4c75936b
(mouse-choose-completion): If *Completion* is a special
Richard M. Stallman <rms@gnu.org>
parents:
7637
diff
changeset
|
2335 (bury-buffer))) |
6231
c2bb4c368553
(mouse-choose-completion): Bury the completion buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6163
diff
changeset
|
2336 (select-window owindow)) |
8477
f4aa7a288cb6
(mouse-choose-completion): Pass completion-base-size value
Richard M. Stallman <rms@gnu.org>
parents:
8460
diff
changeset
|
2337 (choose-completion-string choice buffer base-size))) |
4081
da352b92ca90
(mouse-choose-completion): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3961
diff
changeset
|
2338 |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2339 ;; Font selection. |
465 | 2340 |
4294
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2341 (defun font-menu-add-default () |
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2342 (let* ((default (cdr (assq 'font (frame-parameters (selected-frame))))) |
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2343 (font-alist x-fixed-font-alist) |
4563
b9118969ce28
(font-menu-add-default): Use list, not cons, for new elt.
Richard M. Stallman <rms@gnu.org>
parents:
4562
diff
changeset
|
2344 (elt (or (assoc "Misc" font-alist) (nth 1 font-alist)))) |
4294
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2345 (if (assoc "Default" elt) |
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2346 (delete (assoc "Default" elt) elt)) |
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2347 (setcdr elt |
25547
2992a7953ac4
(font-menu-add-default): Simplify code.
Richard M. Stallman <rms@gnu.org>
parents:
25288
diff
changeset
|
2348 (cons (list "Default" default) |
4294
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2349 (cdr elt))))) |
644e33e3ab38
(font-menu-add-default): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4274
diff
changeset
|
2350 |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2351 (defvar x-fixed-font-alist |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2352 '("Font menu" |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2353 ("Misc" |
8460
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2354 ;; For these, we specify the pixel height and width. |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2355 ("fixed" "fixed") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2356 ("6x10" "-misc-fixed-medium-r-normal--10-*-*-*-c-60-iso8859-1" "6x10") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2357 ("6x12" |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2358 "-misc-fixed-medium-r-semicondensed--12-*-*-*-c-60-iso8859-1" "6x12") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2359 ("6x13" |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2360 "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" "6x13") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2361 ("7x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-70-iso8859-1" "7x13") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2362 ("7x14" "-misc-fixed-medium-r-normal--14-*-*-*-c-70-iso8859-1" "7x14") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2363 ("8x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-80-iso8859-1" "8x13") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2364 ("9x15" "-misc-fixed-medium-r-normal--15-*-*-*-c-90-iso8859-1" "9x15") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2365 ("10x20" "-misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1" "10x20") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2366 ("11x18" "-misc-fixed-medium-r-normal--18-*-*-*-c-110-iso8859-1" "11x18") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2367 ("12x24" "-misc-fixed-medium-r-normal--24-*-*-*-c-120-iso8859-1" "12x24") |
4274
6e46ab2ea271
(x-fixed-font-alist): Give some fonts long patterns.
Richard M. Stallman <rms@gnu.org>
parents:
4221
diff
changeset
|
2368 ("") |
8487
0a77d1dbae03
(x-fixed-font-alist): Add clean 5x8 and clean 6x8.
Richard M. Stallman <rms@gnu.org>
parents:
8477
diff
changeset
|
2369 ("clean 5x8" |
0a77d1dbae03
(x-fixed-font-alist): Add clean 5x8 and clean 6x8.
Richard M. Stallman <rms@gnu.org>
parents:
8477
diff
changeset
|
2370 "-schumacher-clean-medium-r-normal--8-*-*-*-c-50-iso8859-1") |
0a77d1dbae03
(x-fixed-font-alist): Add clean 5x8 and clean 6x8.
Richard M. Stallman <rms@gnu.org>
parents:
8477
diff
changeset
|
2371 ("clean 6x8" |
0a77d1dbae03
(x-fixed-font-alist): Add clean 5x8 and clean 6x8.
Richard M. Stallman <rms@gnu.org>
parents:
8477
diff
changeset
|
2372 "-schumacher-clean-medium-r-normal--8-*-*-*-c-60-iso8859-1") |
8460
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2373 ("clean 8x8" |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2374 "-schumacher-clean-medium-r-normal--8-*-*-*-c-80-iso8859-1") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2375 ("clean 8x10" |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2376 "-schumacher-clean-medium-r-normal--10-*-*-*-c-80-iso8859-1") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2377 ("clean 8x14" |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2378 "-schumacher-clean-medium-r-normal--14-*-*-*-c-80-iso8859-1") |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2379 ("clean 8x16" |
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2380 "-schumacher-clean-medium-r-normal--16-*-*-*-c-80-iso8859-1") |
4274
6e46ab2ea271
(x-fixed-font-alist): Give some fonts long patterns.
Richard M. Stallman <rms@gnu.org>
parents:
4221
diff
changeset
|
2381 ("") |
25097
65612dade7f5
(x-fixed-font-alist): Add lucidasanstypewriter.
Dave Love <fx@gnu.org>
parents:
24962
diff
changeset
|
2382 ("sony 8x16" "-sony-fixed-medium-r-normal--16-*-*-*-c-80-iso8859-1") |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2383 ;;; We don't seem to have these; who knows what they are. |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2384 ;;; ("fg-18" "fg-18") |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2385 ;;; ("fg-25" "fg-25") |
25097
65612dade7f5
(x-fixed-font-alist): Add lucidasanstypewriter.
Dave Love <fx@gnu.org>
parents:
24962
diff
changeset
|
2386 ("lucidasanstypewriter-12" "-b&h-lucidatypewriter-medium-r-normal-sans-*-120-*-*-*-*-iso8859-1") |
65612dade7f5
(x-fixed-font-alist): Add lucidasanstypewriter.
Dave Love <fx@gnu.org>
parents:
24962
diff
changeset
|
2387 ("lucidasanstypewriter-bold-14" "-b&h-lucidatypewriter-bold-r-normal-sans-*-140-*-*-*-*-iso8859-1") |
65612dade7f5
(x-fixed-font-alist): Add lucidasanstypewriter.
Dave Love <fx@gnu.org>
parents:
24962
diff
changeset
|
2388 ("lucidasanstypewriter-bold-24" |
65612dade7f5
(x-fixed-font-alist): Add lucidasanstypewriter.
Dave Love <fx@gnu.org>
parents:
24962
diff
changeset
|
2389 "-b&h-lucidatypewriter-bold-r-normal-sans-*-240-*-*-*-*-iso8859-1") |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2390 ;;; ("lucidatypewriter-bold-r-24" "-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1") |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2391 ;;; ("fixed-medium-20" "-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*") |
25097
65612dade7f5
(x-fixed-font-alist): Add lucidasanstypewriter.
Dave Love <fx@gnu.org>
parents:
24962
diff
changeset
|
2392 ) |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2393 ("Courier" |
8460
5fd799a9946e
(x-fixed-font-alist): Regularize how fonts are specified.
Richard M. Stallman <rms@gnu.org>
parents:
8426
diff
changeset
|
2394 ;; For these, we specify the point height. |
3231
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2395 ("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2396 ("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2397 ("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2398 ("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2399 ("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2400 ("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2401 ("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2402 ("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2403 ("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2404 ("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2405 ("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2406 ("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2407 ("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2408 ("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2409 ("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2410 ("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2411 ("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2412 ("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2413 ("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2414 ("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2415 ("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2416 ("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2417 ("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1") |
fb322590dda0
(x-fixed-font-alist): Specify field 7, not field 6.
Richard M. Stallman <rms@gnu.org>
parents:
3119
diff
changeset
|
2418 ("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1")) |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2419 ) |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2420 "X fonts suitable for use in Emacs.") |
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2421 |
6867
0f4c8109274a
(x-fixed-font-alist): Give multiple names for try for certain fonts.
Richard M. Stallman <rms@gnu.org>
parents:
6548
diff
changeset
|
2422 (defun mouse-set-font (&rest fonts) |
73755
ef7b62d477fd
(mouse-set-font): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73042
diff
changeset
|
2423 "Select an Emacs font from a list of known good fonts and fontsets." |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2424 (interactive |
45570
1739a350f81c
(mouse-set-font): Avoid misleading error message if user makes no selection.
Richard M. Stallman <rms@gnu.org>
parents:
44474
diff
changeset
|
2425 (progn (unless (display-multi-font-p) |
1739a350f81c
(mouse-set-font): Avoid misleading error message if user makes no selection.
Richard M. Stallman <rms@gnu.org>
parents:
44474
diff
changeset
|
2426 (error "Cannot change fonts on this display")) |
1739a350f81c
(mouse-set-font): Avoid misleading error message if user makes no selection.
Richard M. Stallman <rms@gnu.org>
parents:
44474
diff
changeset
|
2427 (x-popup-menu |
58837
e3c6ff0922c2
(mouse-set-font): Handle the case where the command was not invoked
Luc Teirlinck <teirllm@auburn.edu>
parents:
58194
diff
changeset
|
2428 (if (listp last-nonmenu-event) |
e3c6ff0922c2
(mouse-set-font): Handle the case where the command was not invoked
Luc Teirlinck <teirllm@auburn.edu>
parents:
58194
diff
changeset
|
2429 last-nonmenu-event |
e3c6ff0922c2
(mouse-set-font): Handle the case where the command was not invoked
Luc Teirlinck <teirllm@auburn.edu>
parents:
58194
diff
changeset
|
2430 (list '(0 0) (selected-window))) |
45570
1739a350f81c
(mouse-set-font): Avoid misleading error message if user makes no selection.
Richard M. Stallman <rms@gnu.org>
parents:
44474
diff
changeset
|
2431 ;; Append list of fontsets currently defined. |
1739a350f81c
(mouse-set-font): Avoid misleading error message if user makes no selection.
Richard M. Stallman <rms@gnu.org>
parents:
44474
diff
changeset
|
2432 (append x-fixed-font-alist (list (generate-fontset-menu)))))) |
6914
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2433 (if fonts |
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2434 (let (font) |
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2435 (while fonts |
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2436 (condition-case nil |
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2437 (progn |
7021
da5dc735eb50
(mouse-set-font): Simply call set-default-font.
Richard M. Stallman <rms@gnu.org>
parents:
6923
diff
changeset
|
2438 (set-default-font (car fonts)) |
6914
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2439 (setq font (car fonts)) |
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2440 (setq fonts nil)) |
7021
da5dc735eb50
(mouse-set-font): Simply call set-default-font.
Richard M. Stallman <rms@gnu.org>
parents:
6923
diff
changeset
|
2441 (error |
da5dc735eb50
(mouse-set-font): Simply call set-default-font.
Richard M. Stallman <rms@gnu.org>
parents:
6923
diff
changeset
|
2442 (setq fonts (cdr fonts))))) |
6914
569c2c6d812f
(mouse-set-font): Don't error if no selection.
Karl Heuer <kwzh@gnu.org>
parents:
6867
diff
changeset
|
2443 (if (null font) |
45570
1739a350f81c
(mouse-set-font): Avoid misleading error message if user makes no selection.
Richard M. Stallman <rms@gnu.org>
parents:
44474
diff
changeset
|
2444 (error "Font not found"))))) |
465 | 2445 |
2446 ;;; Bindings for mouse commands. | |
2447 | |
2799
93a5aef19835
(mouse-drag-region): New command, on down-mouse-1.
Richard M. Stallman <rms@gnu.org>
parents:
2632
diff
changeset
|
2448 (define-key global-map [down-mouse-1] 'mouse-drag-region) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2449 (global-set-key [mouse-1] 'mouse-set-point) |
2799
93a5aef19835
(mouse-drag-region): New command, on down-mouse-1.
Richard M. Stallman <rms@gnu.org>
parents:
2632
diff
changeset
|
2450 (global-set-key [drag-mouse-1] 'mouse-set-region) |
1057
d9775f33488d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1056
diff
changeset
|
2451 |
4738
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
2452 ;; These are tested for in mouse-drag-region. |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
2453 (global-set-key [double-mouse-1] 'mouse-set-point) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
2454 (global-set-key [triple-mouse-1] 'mouse-set-point) |
76a2ea569de5
(mouse-set-region): Put region in kill ring.
Richard M. Stallman <rms@gnu.org>
parents:
4592
diff
changeset
|
2455 |
53133
50717ae10f39
Bind mouse-1 on left-fringe and right-fringe to mouse-set-point so
Kim F. Storm <storm@cua.dk>
parents:
52405
diff
changeset
|
2456 ;; Clicking on the fringes causes hscrolling: |
50717ae10f39
Bind mouse-1 on left-fringe and right-fringe to mouse-set-point so
Kim F. Storm <storm@cua.dk>
parents:
52405
diff
changeset
|
2457 (global-set-key [left-fringe mouse-1] 'mouse-set-point) |
50717ae10f39
Bind mouse-1 on left-fringe and right-fringe to mouse-set-point so
Kim F. Storm <storm@cua.dk>
parents:
52405
diff
changeset
|
2458 (global-set-key [right-fringe mouse-1] 'mouse-set-point) |
50717ae10f39
Bind mouse-1 on left-fringe and right-fringe to mouse-set-point so
Kim F. Storm <storm@cua.dk>
parents:
52405
diff
changeset
|
2459 |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2460 (global-set-key [mouse-2] 'mouse-yank-at-click) |
72427
3fc22ce89bd1
(global-map): Allow yanking with mouse-2 at a spot whose
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72077
diff
changeset
|
2461 ;; Allow yanking also when the corresponding cursor is "in the fringe". |
74024
fbcf2e3cbf22
(global-map): Change 2006-08-16 fix to call mouse-yank-at-click
Chong Yidong <cyd@stupidchicken.com>
parents:
73755
diff
changeset
|
2462 (global-set-key [right-fringe mouse-2] 'mouse-yank-at-click) |
75610
e50186bf86ca
<left-fringe mouse-2, right-fringe mouse-3, left-fringe mouse-3>: New bindings.
Eli Zaretskii <eliz@gnu.org>
parents:
75430
diff
changeset
|
2463 (global-set-key [left-fringe mouse-2] 'mouse-yank-at-click) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2464 (global-set-key [mouse-3] 'mouse-save-then-kill) |
75610
e50186bf86ca
<left-fringe mouse-2, right-fringe mouse-3, left-fringe mouse-3>: New bindings.
Eli Zaretskii <eliz@gnu.org>
parents:
75430
diff
changeset
|
2465 (global-set-key [right-fringe mouse-3] 'mouse-save-then-kill) |
e50186bf86ca
<left-fringe mouse-2, right-fringe mouse-3, left-fringe mouse-3>: New bindings.
Eli Zaretskii <eliz@gnu.org>
parents:
75430
diff
changeset
|
2466 (global-set-key [left-fringe mouse-3] 'mouse-save-then-kill) |
705 | 2467 |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2468 ;; By binding these to down-going events, we let the user use the up-going |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2469 ;; event to make the selection, saving a click. |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
2470 (global-set-key [C-down-mouse-1] 'mouse-buffer-menu) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
2471 (if (not (eq system-type 'ms-dos)) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
2472 (global-set-key [S-down-mouse-1] 'mouse-set-font)) |
9753
00144934b449
Put mouse-set-font on C-down-mouse-1.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2473 ;; C-down-mouse-2 is bound in facemenu.el. |
30328
7ce202715b72
(popup-menu): Allow a list of keymaps for menu arg.
Dave Love <fx@gnu.org>
parents:
30312
diff
changeset
|
2474 (global-set-key [C-down-mouse-3] 'mouse-popup-menubar-stuff) |
9488
114fe3739aa3
(mouse-major-mode-menu): Use minor-mode-map-alist
Richard M. Stallman <rms@gnu.org>
parents:
9206
diff
changeset
|
2475 |
1100
5b3b202a84c8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1064
diff
changeset
|
2476 |
1056
a7fc54083464
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
2477 ;; Replaced with dragging mouse-1 |
a7fc54083464
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
2478 ;; (global-set-key [S-mouse-1] 'mouse-set-mark) |
1214
467833df795b
(mouse-split-window-vertically): Use @.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
2479 |
32327
140165e85530
([header-line mouse-1]): Bind to mouse-select-window.
Eli Zaretskii <eliz@gnu.org>
parents:
32319
diff
changeset
|
2480 ;; Binding mouse-1 to mouse-select-window when on mode-, header-, or |
140165e85530
([header-line mouse-1]): Bind to mouse-select-window.
Eli Zaretskii <eliz@gnu.org>
parents:
32319
diff
changeset
|
2481 ;; vertical-line prevents Emacs from signaling an error when the mouse |
140165e85530
([header-line mouse-1]): Bind to mouse-select-window.
Eli Zaretskii <eliz@gnu.org>
parents:
32319
diff
changeset
|
2482 ;; button is released after dragging these lines, on non-toolkit |
140165e85530
([header-line mouse-1]): Bind to mouse-select-window.
Eli Zaretskii <eliz@gnu.org>
parents:
32319
diff
changeset
|
2483 ;; versions. |
6090
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
2484 (global-set-key [mode-line mouse-1] 'mouse-select-window) |
8519
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
2485 (global-set-key [mode-line drag-mouse-1] 'mouse-select-window) |
7802e26b3bfd
(mouse-drag-mode-line): New function (from mldrag.el,
Richard M. Stallman <rms@gnu.org>
parents:
8487
diff
changeset
|
2486 (global-set-key [mode-line down-mouse-1] 'mouse-drag-mode-line) |
25618
ed0f7bf2cfc7
(mouse-drag-mode-line-1): Extension of former
Gerd Moellmann <gerd@gnu.org>
parents:
25547
diff
changeset
|
2487 (global-set-key [header-line down-mouse-1] 'mouse-drag-header-line) |
32327
140165e85530
([header-line mouse-1]): Bind to mouse-select-window.
Eli Zaretskii <eliz@gnu.org>
parents:
32319
diff
changeset
|
2488 (global-set-key [header-line mouse-1] 'mouse-select-window) |
6090
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
2489 (global-set-key [mode-line mouse-2] 'mouse-delete-other-windows) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1765
diff
changeset
|
2490 (global-set-key [mode-line mouse-3] 'mouse-delete-window) |
6090
e7c900a464d3
(help-menu-map): Variable deleted, and its binding.
Richard M. Stallman <rms@gnu.org>
parents:
6003
diff
changeset
|
2491 (global-set-key [mode-line C-mouse-2] 'mouse-split-window-horizontally) |
8174
0c7bcd40a21e
([vertical-scroll-bar C-mouse-2]): Split the window.
Richard M. Stallman <rms@gnu.org>
parents:
8135
diff
changeset
|
2492 (global-set-key [vertical-scroll-bar C-mouse-2] 'mouse-split-window-vertically) |
8268
3ff0307b8c0d
([vertical-line C-mouse-2]): Bind it as in a scroll bar.
Richard M. Stallman <rms@gnu.org>
parents:
8255
diff
changeset
|
2493 (global-set-key [vertical-line C-mouse-2] 'mouse-split-window-vertically) |
13038
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
2494 (global-set-key [vertical-line down-mouse-1] 'mouse-drag-vertical-line) |
d07703594662
(C-down-mouse-1): Use buffer menu, not font menu.
Richard M. Stallman <rms@gnu.org>
parents:
12844
diff
changeset
|
2495 (global-set-key [vertical-line mouse-1] 'mouse-select-window) |
584 | 2496 |
2497 (provide 'mouse) | |
2498 | |
25288
65dbd144132d
Provide `mldrag' for compatibility.
Dave Love <fx@gnu.org>
parents:
25097
diff
changeset
|
2499 ;; This file contains the functionality of the old mldrag.el. |
65dbd144132d
Provide `mldrag' for compatibility.
Dave Love <fx@gnu.org>
parents:
25097
diff
changeset
|
2500 (defalias 'mldrag-drag-mode-line 'mouse-drag-mode-line) |
65dbd144132d
Provide `mldrag' for compatibility.
Dave Love <fx@gnu.org>
parents:
25097
diff
changeset
|
2501 (defalias 'mldrag-drag-vertical-line 'mouse-drag-vertical-line) |
29353
42c2692d3933
Add a version to the obsoletions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29344
diff
changeset
|
2502 (make-obsolete 'mldrag-drag-mode-line 'mouse-drag-mode-line "21.1") |
42c2692d3933
Add a version to the obsoletions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29344
diff
changeset
|
2503 (make-obsolete 'mldrag-drag-vertical-line 'mouse-drag-vertical-line "21.1") |
25288
65dbd144132d
Provide `mldrag' for compatibility.
Dave Love <fx@gnu.org>
parents:
25097
diff
changeset
|
2504 (provide 'mldrag) |
65dbd144132d
Provide `mldrag' for compatibility.
Dave Love <fx@gnu.org>
parents:
25097
diff
changeset
|
2505 |
65623
fcbaf6135d19
(mouse-drag-mode-line-1, mouse-drag-vertical-line):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65498
diff
changeset
|
2506 ;; arch-tag: 9a710ce1-914a-4923-9b81-697f7bf82ab3 |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2507 ;;; mouse.el ends here |