annotate lisp/mouse.el @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents ebe98a74bd68
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1 ;;; mouse.el --- window system-independent mouse support.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1988, 1992-4, 1997 Free Software Foundation, Inc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4 ;; Copyright (C) 1995 Tinker Systems
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
5 ;; Copyright (C) 1995, 1996 Ben Wing.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
7 ;; Maintainer: XEmacs Development Team
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8 ;; Keywords: mouse, dumped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
11
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
12 ;; XEmacs is free software; you can redistribute it and/or modify it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
13 ;; under the terms of the GNU General Public License as published by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15 ;; any later version.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
16
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
17 ;; XEmacs is distributed in the hope that it will be useful, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20 ;; General Public License for more details.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
23 ;; along with XEmacs; see the file COPYING. If not, write to the
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
24 ;; Free Software Foundation, 59 Temple Place - Suite 330,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25 ;; Boston, MA 02111-1307, USA.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27 ;;; Synched up with: Not synched with FSF. Almost completely divergent.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
29 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
30
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
31 ;; This file is dumped with XEmacs (when window system support is compiled in).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
32
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
33 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
34
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
35 (provide 'mouse)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
36
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
37 (global-set-key 'button1 'mouse-track)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
38 (global-set-key '(shift button1) 'mouse-track-adjust)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
39 (global-set-key '(control button1) 'mouse-track-insert)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
40 (global-set-key '(control shift button1) 'mouse-track-delete-and-insert)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
41 (global-set-key '(meta button1) 'mouse-track-do-rectangle)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
42
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
43 ;; drops are now handled in dragdrop.el (ograf@fga.de)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
44
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
45 ;; enable drag regions (ograf@fga.de)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
46 ;; if button2 is dragged from within a region, this becomes a drop
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
47 ;;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
48 ;; this must be changed to the new api
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 243
diff changeset
49 (if (featurep '(or offix cde mswindows))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
50 (global-set-key 'button2 'mouse-drag-or-yank)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
51 (global-set-key 'button2 'mouse-yank))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
52
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
53 (defgroup mouse nil
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
54 "Window system-independent mouse support."
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
55 :group 'editing)
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
56
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
57 (defcustom mouse-track-rectangle-p nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
58 "*If true, then dragging out a region with the mouse selects rectangles
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
59 instead of simple start/end regions."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
60 :type 'boolean
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
61 :group 'mouse)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
62
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
63 (defcustom mouse-yank-at-point nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
64 "*If non-nil, the function `mouse-yank' will yank text at the cursor location.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
65 Otherwise, the cursor will be moved to the location of the pointer click before
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
66 text is inserted."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
67 :type 'boolean
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
68 :group 'mouse)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
69
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
70 (defcustom mouse-highlight-text 'context
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
71 "*Choose the default double-click highlighting behavior.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
72 If set to `context', double-click will highlight words when the mouse
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
73 is at a word character, or a symbol if the mouse is at a symbol
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
74 character.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
75 If set to `word', double-click will always attempt to highlight a word.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
76 If set to `symbol', double-click will always attempt to highlight a
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
77 symbol (the default behavior in previous XEmacs versions)."
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
78 :type '(choice (const context)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
79 (const word)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
80 (const symbol))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
81 :group 'mouse)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
82
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
83 (defvar mouse-yank-function 'mouse-consolidated-yank
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
84 "Function that is called upon by `mouse-yank' to actually insert text.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
85
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
86 (defun mouse-consolidated-yank ()
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
87 "Insert the current selection or, if there is none under X insert
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
88 the X cutbuffer. A mark is pushed, so that the inserted text lies
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
89 between point and mark."
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
90 (interactive)
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
91 (if (not (console-on-window-system-p))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
92 (yank)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
93 (push-mark)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
94 (if (region-active-p)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
95 (if (consp zmacs-region-extent)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
96 ;; pirated code from insert-rectangle in rect.el
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
97 ;; perhaps that code should be modified to handle a list of extents
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
98 ;; as the rectangle to be inserted?
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
99 (let ((lines zmacs-region-extent)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
100 (insertcolumn (current-column))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
101 (first t))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
102 (push-mark)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
103 (while lines
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
104 (or first
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
105 (progn
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
106 (forward-line 1)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
107 (or (bolp) (insert ?\n))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
108 (move-to-column insertcolumn t)))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
109 (setq first nil)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
110 (insert (extent-string (car lines)))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
111 (setq lines (cdr lines))))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
112 (insert (extent-string zmacs-region-extent)))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
113 (insert-selection t))))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
114
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
115 (defun insert-selection (&optional check-cutbuffer-p move-point-event)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
116 "Insert the current selection into buffer at point."
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
117 (interactive "P")
416
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
118 ;; we fallback to the clipboard if the current selection is not existent
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
119 (let ((text (if check-cutbuffer-p
416
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
120 (or (get-selection-no-error)
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
121 (get-cutbuffer)
416
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
122 (get-selection-no-error 'CLIPBOARD)
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
123 (error "No selection, clipboard or cut buffer available"))
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
124 (or (get-selection-no-error)
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
125 (get-selection 'CLIPBOARD)))))
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
126 (cond (move-point-event
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
127 (mouse-set-point move-point-event)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
128 (push-mark (point)))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
129 ((interactive-p)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
130 (push-mark (point))))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
131 (insert text)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
132 ))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
133
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
134
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
135 (defun mouse-select ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
136 "Select Emacs window the mouse is on."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
137 (interactive "@"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
138
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
139 (defun mouse-delete-window ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
140 "Delete the Emacs window the mouse is on."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
141 (interactive "@")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
142 (delete-window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
143
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
144 (defun mouse-keep-one-window ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
145 "Select Emacs window mouse is on, then kill all other Emacs windows."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
146 (interactive "@")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
147 (delete-other-windows))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
148
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
149 (defun mouse-select-and-split ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
150 "Select Emacs window mouse is on, then split it vertically in half."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
151 (interactive "@")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
152 (split-window-vertically nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
153
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
154 (defun mouse-set-point (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
155 "Select Emacs window mouse is on, and move point to mouse position."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
156 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
157 (let ((window (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
158 (pos (event-point event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
159 (close-pos (event-closest-point event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
160 (or window (error "not in a window"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
161 (select-window window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
162 (if (and pos (> pos 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
163 ;; If the event was over a text char, it's easy.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
164 (goto-char (max (min pos (point-max)) (point-min)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
165 (if (and close-pos (> close-pos 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
166 (goto-char (max (min close-pos (point-max)) (point-min)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
167 ;; When the event occurs outside of the frame directly to the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
168 ;; left or right of a modeline, close-point is nil, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
169 ;; event-over-modeline is also nil. That will drop us to this
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
170 ;; point. So instead of erroring, just return nil.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
171 nil))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
172
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
173 (defun mouse-yank (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
174 "Paste text with the mouse.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
175 If the variable `mouse-yank-at-point' is nil, then pasting occurs at the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
176 location of the click; otherwise, pasting occurs at the current cursor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
177 location."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
178 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
179 (and (not mouse-yank-at-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
180 (mouse-set-point event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
181 (funcall mouse-yank-function))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
182
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
183 (defun click-inside-extent-p (click extent)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
184 "Return non-nil if the button event is within the primary selection-extent.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
185 Return nil otherwise."
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
186 ;; stig@hackvan.com
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
187 (let ((ewin (event-window click))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
188 (epnt (event-point click)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
189 (and ewin
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
190 epnt
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
191 extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
192 (eq (window-buffer ewin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
193 (extent-object extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
194 (extent-start-position extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
195 (> epnt (extent-start-position extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
196 (> (extent-end-position extent) epnt))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
197
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
198 (defun click-inside-selection-p (click)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
199 (or (click-inside-extent-p click primary-selection-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
200 (click-inside-extent-p click zmacs-region-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
201 ))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
202
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
203 (defun point-inside-extent-p (extent)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
204 "Return t if point is within the bounds of the primary selection extent.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
205 Return t is point is at the end position of the extent.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
206 Return nil otherwise."
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
207 ;; stig@hackvan.com
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
208 (and extent
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
209 (eq (current-buffer)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
210 (extent-object extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
211 (> (point) (extent-start-position extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
212 (>= (extent-end-position extent) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
213
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
214 (defun point-inside-selection-p ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
215 ;; by Stig@hackvan.com
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
216 (or (point-inside-extent-p primary-selection-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
217 (point-inside-extent-p zmacs-region-extent)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
218
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
219 (defun mouse-drag-or-yank (event)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
220 "Either drag or paste the current selection.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
221 If the variable `mouse-yank-at-point' is non-nil,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
222 move the cursor to the location of the click before pasting.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
223 This functions has to be improved. Currently it is just a (working) test."
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
224 ;; by Oliver Graf <ograf@fga.de>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
225 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
226 (if (click-inside-extent-p event zmacs-region-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
227 ;; okay, this is a drag
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
228 (cond ((featurep 'offix)
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
229 (offix-start-drag-region
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
230 event
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
231 (extent-start-position zmacs-region-extent)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 416
diff changeset
232 (extent-end-position zmacs-region-extent)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
233 ((featurep 'cde)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
234 ;; should also work with CDE
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
235 (cde-start-drag-region event
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
236 (extent-start-position zmacs-region-extent)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
237 (extent-end-position zmacs-region-extent)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
238 (t (error "No offix or CDE support compiled in")))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
239 ;; no drag, call region-funct
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
240 (and (not mouse-yank-at-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
241 (mouse-set-point event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
242 (funcall mouse-yank-function))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
243 )
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
244
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
245 (defun mouse-eval-sexp (click force-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
246 "Evaluate the sexp under the mouse. Usually, this is the last sexp before
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
247 the click, but if you click on a left paren, then it is the sexp beginning
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
248 with the paren that is evaluated. Also, since strings evaluate to themselves,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
249 they're fed to re-search-forward and the matched region is highlighted until
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
250 the mouse button is released.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
251
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
252 Perhaps the most useful thing about this function is that the evaluation of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
253 the expression which is clicked upon is relative not to the window where you
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
254 click, but to the current window and the current position of point. Thus,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
255 you can use `mouse-eval-sexp' to interactively test code that acts upon a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
256 buffer...something you cannot do with the standard `eval-last-sexp' function.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
257 It's also fantastic for debugging regular expressions."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
258 ;; by Stig@hackvan.com
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
259 (interactive "e\nP")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
260 (let (exp val result-str)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
261 (setq exp (save-window-excursion
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
262 (save-excursion
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
263 (mouse-set-point click)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
264 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
265 (or (looking-at "(") (forward-sexp -1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
266 (read (point-marker))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
267 (cond ((stringp exp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
268 (if (setq val (re-search-forward exp nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
269 (let* ((oo (make-extent (match-beginning 0) (match-end 0))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
270 (set-extent-face oo 'highlight)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
271 (set-extent-priority oo 1000)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
272 ;; wait for button release...
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
273 (setq unread-command-event (next-command-event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
274 (delete-extent oo))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
275 (message "Regex \"%s\" not found" exp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
276 (ding nil 'quiet)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
277 (t (setq val (if (fboundp 'eval-interactive)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
278 (eval-interactive exp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
279 (eval exp)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
280 (setq result-str (prin1-to-string val))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
281 ;; #### -- need better test
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
282 (if (and (not force-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
283 (<= (length result-str) (window-width (selected-window))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
284 (message "%s" result-str)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
285 (with-output-to-temp-buffer "*Mouse-Eval*"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
286 (condition-case nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
287 (pprint val)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
288 (error (prin1 val))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
289 )))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
290
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
291 (defun mouse-line-length (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
292 "Print the length of the line indicated by the pointer."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
293 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
294 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
295 (mouse-set-point event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
296 (message "Line length: %d" (- (point-at-eol) (point-at-bol))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
297 (sleep-for 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
298
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
299 (defun mouse-set-mark (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
300 "Select Emacs window mouse is on, and set mark at mouse position.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
301 Display cursor at that position for a second."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
302 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
303 (let ((point-save (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
304 (unwind-protect
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
305 (progn (mouse-set-point event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
306 (push-mark nil t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
307 (sit-for 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
308 (goto-char point-save))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
309
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
310 (defun mouse-scroll (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
311 "Scroll point to the mouse position."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
312 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
313 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
314 (mouse-set-point event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
315 (recenter 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
316 (scroll-right (event-x event))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
317
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
318 (defun mouse-del-char (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
319 "Delete the char pointed to by the mouse."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
320 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
321 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
322 (mouse-set-point event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
323 (delete-char 1 nil)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
324
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
325 (defun mouse-kill-line (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
326 "Kill the line pointed to by the mouse."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
327 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
328 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
329 (mouse-set-point event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
330 (kill-line nil)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
331
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
332 (defun mouse-bury-buffer (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
333 "Bury the buffer pointed to by the mouse, thus selecting the next one."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
334 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
335 (save-selected-window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
336 (select-window (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
337 (bury-buffer)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
338
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
339 (defun mouse-unbury-buffer (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
340 "Unbury and select the most recently buried buffer."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
341 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
342 (save-selected-window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
343 (select-window (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
344 (let* ((bufs (buffer-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
345 (entry (1- (length bufs)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
346 val)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
347 (while (not (setq val (nth entry bufs)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
348 val (and (/= (aref (buffer-name val) 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
349 ? )
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
350 val)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
351 (setq entry (1- entry)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
352 (switch-to-buffer val))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
353
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
354 (defun narrow-window-to-region (m n)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
355 "Narrow window to region between point and last mark"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
356 (interactive "r")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
357 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
358 (save-restriction
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
359 (if (eq (selected-window) (next-window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
360 (split-window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
361 (goto-char m)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
362 (recenter 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
363 (if (eq (selected-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
364 (if (zerop (minibuffer-depth))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
365 (next-window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
366 ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
367 (shrink-window (- (- (window-height) (count-lines m n)) 1))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
368
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
369 (defun mouse-window-to-region (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
370 "Narrow window to region between cursor and mouse pointer."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
371 (interactive "@e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
372 (let ((point-save (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
373 (unwind-protect
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
374 (progn (mouse-set-point event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
375 (push-mark nil t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
376 (sit-for 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
377 (goto-char point-save)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
378 (narrow-window-to-region (region-beginning) (region-end)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
379
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
380 (defun mouse-ignore ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
381 "Don't do anything."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
382 (interactive))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
383
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
384
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
385 ;;; mouse/selection tracking
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
386 ;;; generalized mouse-track
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
387
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
388 (defvar default-mouse-track-normalize-point-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
389 'default-mouse-track-normalize-point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
390 "Function called to normalize position of point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
391 Called with two arguments: TYPE depends on the number of times that the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
392 mouse has been clicked and is a member of `default-mouse-track-type-list',
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
393 FORWARDP determines the direction in which the point should be moved.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
394
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
395 (defvar mouse-track-down-hook nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
396 "Function or functions called when the user presses the mouse.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
397 This hook is invoked by `mouse-track'; thus, it will not be called
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
398 for any buttons with a different binding. The functions will be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
399 called with two arguments: the button-press event and a click
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
400 count (see `mouse-track-click-hook').
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
401
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
402 If any function returns non-nil, the remaining functions will not be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
403 called.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
404
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
405 Note that most applications should take action when the mouse is
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
406 released, not when it is pressed.'")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
407
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
408 (defvar mouse-track-drag-hook nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
409 "Function or functions called when the user drags the mouse.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
410 This hook is invoked by `mouse-track'; thus, it will not be called
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
411 for any buttons with a different binding. The functions will be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
412 called with three arguments: the mouse-motion event, a click
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
413 count (see `mouse-track-click-hook'), and whether the call to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
414 this hook occurred as a result of a drag timeout (see
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
415 `mouse-track-scroll-delay').
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
416
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
417 If any function returns non-nil, the remaining functions will not be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
418 called.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
419
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
420 Note that no calls to this function will be made until the user
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
421 initiates a drag (i.e. moves the mouse more than a certain
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
422 threshold in either the X or the Y direction, as defined by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
423 `mouse-track-x-threshold' and `mouse-track-y-threshold').
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
424
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
425 See also `mouse-track-drag-up-hook'.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
426
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
427 (defvar mouse-track-drag-up-hook nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
428 "Function or functions called when the user finishes a drag.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
429 This hook is invoked by `mouse-track'; thus, it will not be called
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
430 for any buttons with a different binding. The functions will be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
431 called with two arguments: the button-press event and a click
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
432 count (see `mouse-track-click-hook').
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
433
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
434 If any function returns non-nil, the remaining functions will not be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
435 called.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
436
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
437 Note that this hook will not be invoked unless the user has
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
438 initiated a drag, i.e. moved the mouse more than a certain threshold
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
439 (see `mouse-track-drag-hook'). When this function is invoked,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
440 `mouse-track-drag-hook' will have been invoked at least once.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
441
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
442 See also `mouse-track-click-hook'.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
443
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
444 (defvar mouse-track-click-hook nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
445 "Function or functions called when the user clicks the mouse.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
446 `Clicking' means pressing and releasing the mouse without having
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
447 initiated a drag (i.e. without having moved more than a certain
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
448 threshold -- see `mouse-track-drag-hook').
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
449
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
450 This hook is invoked by `mouse-track'; thus, it will not be called
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
451 for any buttons with a different binding. The functions will be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
452 called with two arguments: the button-release event and a click
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
453 count, which specifies the number of times that the mouse has been
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
454 clicked in a series of clicks, each of which is separated by at most
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
455 `mouse-track-multi-click-time'. This can be used to implement actions
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
456 that are called on double clicks, triple clicks, etc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
457
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
458 If any function returns non-nil, the remaining functions will not be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
459 called.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
460
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
461 See also `mouse-track-drag-up-hook.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
462
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
463 (defvar mouse-track-up-hook nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
464 "Function or functions called when the user releases the mouse.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
465 This hook is invoked by `mouse-track'; thus, it will not be called
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
466 for any buttons with a different binding. The functions will be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
467 called with two arguments: the button-release event and a click
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
468 count (see `mouse-track-click-hook').
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
469
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
470 For many applications, it is more appropriate to use one or both
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
471 of `mouse-track-click-hook' and `mouse-track-drag-up-hook'.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
472
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
473 (defvar mouse-track-cleanup-hook nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
474 "Function or functions called when `mouse-track' terminates.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
475 This hook will be called in all circumstances, even upon a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
476 non-local exit out of `mouse-track', and so is useful for
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
477 doing cleanup work such as removing extents that may have
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
478 been created during the operation of `mouse-track'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
479
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
480 Unlike all of the other mouse-track hooks, this is a \"normal\"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
481 hook: the hook functions are called with no arguments, and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
482 all hook functions are called regardless of their return
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
483 values.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
484
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
485 (defcustom mouse-track-multi-click-time 400
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
486 "*Maximum number of milliseconds allowed between clicks for a multi-click.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
487 See `mouse-track-click-hook'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
488 :type 'integer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
489 :group 'mouse)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
490
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
491 (defcustom mouse-track-scroll-delay 100
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
492 "Maximum of milliseconds between calls to `mouse-track-drag-hook'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
493 If the user is dragging the mouse (i.e. the button is held down and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
494 a drag has been initiated) and does not move the mouse for this many
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
495 milliseconds, the hook will be called with t as the value of the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
496 WAS-TIMEOUT parameter. This can be used to implement scrolling
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
497 in a selection when the user drags the mouse out the window it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
498 was in.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
499
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
500 A value of nil disables the timeout feature."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
501 :type '(choice integer (const :tag "Disabled" nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
502 :group 'mouse)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
503
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
504 (defvar mouse-track-x-threshold '(face-width 'default)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
505 "Minimum number of pixels in the X direction for a drag to be initiated.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
506 If the mouse is moved more than either the X or Y threshold while the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
507 button is held down (see also `mouse-track-y-threshold'), then a drag
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
508 is initiated; otherwise the gesture is considered to be a click.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
509 See `mouse-track'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
510
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
511 The value should be either a number of a form to be evaluated to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
512 produce a number.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
513
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
514 (defvar mouse-track-y-threshold '(face-height 'default)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
515 "Minimum number of pixels in the Y direction for a drag to be initiated.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
516 If the mouse is moved more than either the X or Y threshold while the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
517 button is held down (see also `mouse-track-x-threshold'), then a drag
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
518 is initiated; otherwise the gesture is considered to be a click.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
519 See `mouse-track'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
520
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
521 The value should be either a number of a form to be evaluated to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
522 produce a number.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
523
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
524 ;; these variables are private to mouse-track.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
525 (defvar mouse-track-up-time nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
526 (defvar mouse-track-up-x nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
527 (defvar mouse-track-up-y nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
528 (defvar mouse-track-timeout-id nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
529 (defvar mouse-track-click-count nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
530
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
531 (defun mouse-track-set-timeout (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
532 (if mouse-track-timeout-id
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
533 (disable-timeout mouse-track-timeout-id))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
534 (if mouse-track-scroll-delay
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
535 (setq mouse-track-timeout-id
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
536 (add-timeout (/ mouse-track-scroll-delay 1000.0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
537 'mouse-track-scroll-undefined
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
538 (copy-event event)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
539
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
540 (defun mouse-track-run-hook (hook event &rest args)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
541 ;; ugh, can't use run-hook-with-args-until-success because we have
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
542 ;; to get the value using symbol-value-in-buffer. Doing a
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
543 ;; save-excursion/set-buffer is wrong because the hook might want to
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
544 ;; change the buffer, but just doing a set-buffer is wrong because
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
545 ;; the hook might not want to change the buffer.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
546 ;; #### What we need here is a Lisp interface to
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
547 ;; run_hook_with_args_in_buffer. Here is a poor man's version.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
548 (let ((buffer (event-buffer event)))
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
549 (and mouse-grabbed-buffer (setq buffer mouse-grabbed-buffer))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
550 (when buffer
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
551 (let ((value (symbol-value-in-buffer hook buffer nil)))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
552 (if (and (listp value) (not (eq (car value) 'lambda)))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
553 ;; List of functions.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
554 (let (retval)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
555 (while (and value (null retval))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
556 ;; Found `t': should process default value. We could
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
557 ;; splice it into the buffer-local value, but that
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
558 ;; would cons, which is not a good thing for
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
559 ;; mouse-track hooks.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
560 (if (eq (car value) t)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
561 (let ((global (default-value hook)))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
562 (if (and (listp global) (not (eq (car global) 'lambda)))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
563 ;; List of functions.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
564 (while (and global
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
565 (null (setq retval
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
566 (apply (car global) event args))))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
567 (pop global))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
568 ;; lambda
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
569 (setq retval (apply (car global) event args))))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
570 (setq retval (apply (car value) event args)))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
571 (pop value))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
572 retval)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
573 ;; lambda
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 209
diff changeset
574 (apply value event args))))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
575
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
576 (defun mouse-track-scroll-undefined (random)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
577 ;; the old implementation didn't actually define this function,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
578 ;; and in normal use it won't ever be called because the timeout
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
579 ;; will either be removed before it fires or will be picked off
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
580 ;; with next-event and not dispatched. However, if you're
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
581 ;; attempting to debug a click-hook (which is pretty damn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
582 ;; difficult to do), this function may get called.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
583 )
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
584
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
585 (defun mouse-track (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
586 "Make a selection with the mouse. This should be bound to a mouse button.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
587 The behavior of XEmacs during mouse selection is customizable using various
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
588 hooks and variables: see `mouse-track-click-hook', `mouse-track-drag-hook',
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
589 `mouse-track-drag-up-hook', `mouse-track-down-hook', `mouse-track-up-hook',
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
590 `mouse-track-cleanup-hook', `mouse-track-multi-click-time',
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
591 `mouse-track-scroll-delay', `mouse-track-x-threshold', and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
592 `mouse-track-y-threshold'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
593
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
594 Default handlers are provided to implement standard selecting/positioning
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
595 behavior. You can explicitly request this default behavior, and override
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
596 any custom-supplied handlers, by using the function `mouse-track-default'
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
597 instead of `mouse-track'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
598
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
599 Default behavior is as follows:
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
600
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
601 If you click-and-drag, the selection will be set to the region between the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
602 point of the initial click and the point at which you release the button.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
603 These positions need not be ordered.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
604
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
605 If you click-and-release without moving the mouse, then the point is moved
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
606 and the selection is disowned (there will be no selection owner). The mark
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
607 will be set to the previous position of point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
608
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
609 If you double-click, the selection will extend by symbols instead of by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
610 characters. If you triple-click, the selection will extend by lines.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
611
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
612 If you drag the mouse off the top or bottom of the window, you can select
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
613 pieces of text which are larger than the visible part of the buffer; the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
614 buffer will scroll as necessary.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
615
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
616 The selected text becomes the current X Selection. The point will be left
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
617 at the position at which you released the button, and the mark will be left
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
618 at the initial click position."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
619 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
620 (let ((mouse-down t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
621 (xthresh (eval mouse-track-x-threshold))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
622 (ythresh (eval mouse-track-y-threshold))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
623 (orig-x (event-x-pixel event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
624 (orig-y (event-y-pixel event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
625 (buffer (event-buffer event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
626 (mouse-grabbed-buffer (event-buffer event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
627 mouse-moved)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
628 (if (or (not mouse-track-up-x)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
629 (not mouse-track-up-y)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
630 (not mouse-track-up-time)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
631 (> (- (event-timestamp event) mouse-track-up-time)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
632 mouse-track-multi-click-time)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
633 (> (abs (- mouse-track-up-x orig-x)) xthresh)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
634 (> (abs (- mouse-track-up-y orig-y)) ythresh))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
635 (setq mouse-track-click-count 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
636 (setq mouse-track-click-count (1+ mouse-track-click-count)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
637 (if (not (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
638 (error "Not over a window."))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
639 (mouse-track-run-hook 'mouse-track-down-hook
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
640 event mouse-track-click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
641 (unwind-protect
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
642 (while mouse-down
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
643 (setq event (next-event event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
644 (cond ((motion-event-p event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
645 (if (and (not mouse-moved)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
646 (or (> (abs (- (event-x-pixel event) orig-x))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
647 xthresh)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
648 (> (abs (- (event-y-pixel event) orig-y))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
649 ythresh)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
650 (setq mouse-moved t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
651 (if mouse-moved
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
652 (mouse-track-run-hook 'mouse-track-drag-hook
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
653 event mouse-track-click-count nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
654 (mouse-track-set-timeout event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
655 ((and (timeout-event-p event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
656 (eq (event-function event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
657 'mouse-track-scroll-undefined))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
658 (if mouse-moved
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
659 (mouse-track-run-hook 'mouse-track-drag-hook
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
660 (event-object event) mouse-track-click-count t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
661 (mouse-track-set-timeout (event-object event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
662 ((button-release-event-p event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
663 (setq mouse-track-up-time (event-timestamp event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
664 (setq mouse-track-up-x (event-x-pixel event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
665 (setq mouse-track-up-y (event-y-pixel event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
666 (setq mouse-down nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
667 (mouse-track-run-hook 'mouse-track-up-hook
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
668 event mouse-track-click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
669 (if mouse-moved
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
670 (mouse-track-run-hook 'mouse-track-drag-up-hook
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
671 event mouse-track-click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
672 (mouse-track-run-hook 'mouse-track-click-hook
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
673 event mouse-track-click-count)))
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
674 ((or (key-press-event-p event)
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
675 (and (misc-user-event-p event)
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
676 (eq (event-function event) 'cancel-mode-internal)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
677 (error "Selection aborted"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
678 (t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
679 (dispatch-event event))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
680 ;; protected
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
681 (if mouse-track-timeout-id
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
682 (disable-timeout mouse-track-timeout-id))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
683 (setq mouse-track-timeout-id nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
684 (and buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
685 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
686 (set-buffer buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
687 (run-hooks 'mouse-track-cleanup-hook))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
688
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
689
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
690 ;;;;;;;;;;;; default handlers: new version of mouse-track
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
691
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
692 (defvar default-mouse-track-type nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
693 (defvar default-mouse-track-type-list '(char word line))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
694 (defvar default-mouse-track-window nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
695 (defvar default-mouse-track-extent nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
696 (defvar default-mouse-track-adjust nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
697 (defvar default-mouse-track-min-anchor nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
698 (defvar default-mouse-track-max-anchor nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
699 (defvar default-mouse-track-result nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
700 (defvar default-mouse-track-down-event nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
701
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
702 ;; D. Verna Feb. 17 1998
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
703 ;; This function used to assume that when (event-window event) differs from
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
704 ;; window, we have to scroll. This is WRONG, for instance when there are
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
705 ;; toolbars on the side, in which case window-event returns nil.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
706 (defun default-mouse-track-set-point-in-window (event window)
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
707 (if (event-over-modeline-p event)
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
708 nil ;; Scroll
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
709 ;; Not over a modeline
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
710 (if (eq (event-window event) window)
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
711 (let ((p (event-closest-point event)))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
712 (if (or (not p) (not (pos-visible-in-window-p p window)))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
713 nil ;; Scroll
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
714 (mouse-set-point event)
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
715 t))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
716 ;; Not over a modeline, not the same window. Check if the Y position
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
717 ;; is still overlapping the original window.
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
718 (let* ((edges (window-pixel-edges window))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
719 (row (event-y-pixel event))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
720 (text-start (nth 1 edges))
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
721 (text-end (+ (nth 3 edges))))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
722 (if (or (< row text-start)
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
723 (> row text-end))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
724 nil ;; Scroll
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
725 ;; The Y pos in overlapping the original window. Check however if
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
726 ;; the position is really visible, because there could be a
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
727 ;; scrollbar or a modeline at this place.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
728 ;; Find the mean line height (height / lines nb), and approximate
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
729 ;; the line number for Y pos.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
730 (select-window window)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
731 (let ((line (/ (* (- row text-start) (window-height))
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
732 (- text-end text-start))))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
733 (if (not (save-excursion
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
734 (goto-char (window-start))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
735 (pos-visible-in-window-p
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
736 (point-at-bol (+ 1 line)))))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
737 nil ;; Scroll
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
738 ;; OK, we can go to that position
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
739 (goto-char (window-start))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
740 (forward-line line)
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
741 ;; On the right side: go to end-of-line.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
742 (when (>= (event-x-pixel event) (nth 2 edges))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
743 (goto-char (point-at-eol)))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
744 t))))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
745 )))
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 249
diff changeset
746
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
747
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
748 (defun default-mouse-track-scroll-and-set-point (event window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
749 (select-window window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
750 (let ((edges (window-pixel-edges window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
751 (row (event-y-pixel event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
752 (height (face-height 'default)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
753 (cond ((< (abs (- row (nth 1 edges))) (abs (- row (nth 3 edges))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
754 ;; closer to window's top than to bottom, so move up
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
755 (let ((delta (max 1 (/ (- (nth 1 edges) row) height))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
756 (condition-case () (scroll-down delta) (error))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
757 (goto-char (window-start))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
758 ((>= (point) (point-max)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
759 (t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
760 ;; scroll by one line if over the modeline or a clipped line
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
761 (let ((delta (if (or (event-over-modeline-p event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
762 (< row (nth 3 edges)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
763 1
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
764 (+ (/ (- row (nth 3 edges)) height) 1)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
765 (close-pos (event-closest-point event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
766 (condition-case () (scroll-up delta) (error))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
767 (if (and close-pos (pos-visible-in-window-p close-pos))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
768 (goto-char close-pos)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
769 (goto-char (window-end))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
770 (vertical-motion delta)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
771 ;; window-end reports the end of the clipped line, even if
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
772 ;; scroll-on-clipped-lines is t. compensate.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
773 ;; (If window-end gets fixed this can be removed.)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
774 (if (not (pos-visible-in-window-p (max (1- (point))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
775 (point-min))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
776 (vertical-motion -1))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
777 (condition-case () (backward-char 1)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
778 (error (end-of-line)))))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
779
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
780
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
781 ;; This remembers the last position at which the user clicked, for the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
782 ;; benefit of mouse-track-adjust (for example, button1; scroll until the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
783 ;; position of the click is off the frame; then Sh-button1 to select the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
784 ;; new region.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
785 (defvar default-mouse-track-previous-point nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
786
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
787 (defun default-mouse-track-set-point (event window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
788 (if (default-mouse-track-set-point-in-window event window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
789 nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
790 (default-mouse-track-scroll-and-set-point event window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
791
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
792 (defsubst default-mouse-track-beginning-of-word (symbolp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
793 (let ((word-constituent (cond ((eq symbolp t) "\\w\\|\\s_\\|\\s'")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
794 ((null symbolp) "\\w")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
795 (t "[^ \t\n]")))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
796 (white-space "[ \t]"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
797 (cond ((bobp) nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
798 ((looking-at word-constituent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
799 (backward-char)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
800 (while (and (not (bobp)) (looking-at word-constituent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
801 (backward-char))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
802 (if (or (not (bobp)) (not (looking-at word-constituent)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
803 (forward-char)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
804 ((looking-at white-space)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
805 (backward-char)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
806 (while (looking-at white-space)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
807 (backward-char))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
808 (forward-char)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
809
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
810 (defun default-mouse-track-end-of-word (symbolp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
811 (let ((word-constituent (cond ((eq symbolp t) "\\w\\|\\s_\\|\\s'")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
812 ((null symbolp) "\\w")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
813 (t "[^ \t\n]")))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
814 (white-space "[ \t]"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
815 (cond ((looking-at word-constituent) ; word or symbol constituent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
816 (while (looking-at word-constituent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
817 (forward-char)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
818 ((looking-at white-space) ; word or symbol constituent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
819 (while (looking-at white-space)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
820 (forward-char))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
821
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
822 ;; Decide what will be the SYMBOLP argument to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
823 ;; default-mouse-track-{beginning,end}-of-word, according to the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
824 ;; syntax of the current character and value of mouse-highlight-text.
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
825 (defsubst default-mouse-track-symbolp (syntax)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
826 (cond ((eq mouse-highlight-text 'context)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
827 (eq syntax ?_))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
828 ((eq mouse-highlight-text 'symbol)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
829 t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
830 (t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
831 nil)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
832
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
833 ;; Return t if point is at an opening quote character. This is
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
834 ;; determined by testing whether the syntax of the following character
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
835 ;; is `string', which will always be true for opening quotes and
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
836 ;; always false for closing quotes.
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
837 (defun default-mouse-track-point-at-opening-quote-p ()
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
838 (save-excursion
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
839 (forward-char 1)
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
840 (eq (buffer-syntactic-context) 'string)))
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
841
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
842 (defun default-mouse-track-normalize-point (type forwardp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
843 (cond ((eq type 'word)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
844 ;; trap the beginning and end of buffer errors
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
845 (ignore-errors
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
846 (setq type (char-syntax (char-after (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
847 (if forwardp
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
848 (if (or (= type ?\()
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
849 (and (= type ?\")
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
850 (default-mouse-track-point-at-opening-quote-p)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
851 (goto-char (scan-sexps (point) 1))
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
852 (default-mouse-track-end-of-word
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
853 (default-mouse-track-symbolp type)))
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
854 (if (or (= type ?\))
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
855 (and (= type ?\")
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
856 (not (default-mouse-track-point-at-opening-quote-p))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
857 (goto-char (scan-sexps (1+ (point)) -1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
858 (default-mouse-track-beginning-of-word
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
859 (default-mouse-track-symbolp type))))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
860 ((eq type 'line)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
861 (if forwardp (end-of-line) (beginning-of-line)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
862 ((eq type 'buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
863 (if forwardp (end-of-buffer) (beginning-of-buffer)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
864
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
865 (defun default-mouse-track-next-move (min-anchor max-anchor extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
866 (let ((anchor (if (<= (point) min-anchor) max-anchor min-anchor)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
867 (funcall default-mouse-track-normalize-point-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
868 default-mouse-track-type (> (point) anchor))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
869 (if (consp extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
870 (default-mouse-track-next-move-rect anchor (point) extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
871 (if extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
872 (if (<= anchor (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
873 (set-extent-endpoints extent anchor (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
874 (set-extent-endpoints extent (point) anchor))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
875
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
876 (defun default-mouse-track-next-move-rect (start end extents &optional pad-p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
877 (if (< end start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
878 (let ((tmp start)) (setq start end end tmp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
879 (cond
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
880 ((= start end) ; never delete the last remaining extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
881 (mapcar 'delete-extent (cdr extents))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
882 (setcdr extents nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
883 (set-extent-endpoints (car extents) start start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
884 (t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
885 (let ((indent-tabs-mode nil) ; if pad-p, don't use tabs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
886 (rest extents)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
887 left right last p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
888 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
889 (save-restriction
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
890 (goto-char end)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
891 (setq right (current-column))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
892 (goto-char start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
893 (setq left (current-column))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
894 (if (< right left)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
895 (let ((tmp left))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
896 (setq left right right tmp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
897 (setq start (- start (- right left))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
898 end (+ end (- right left)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
899 ;; End may have been set to a value greater than point-max if drag
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
900 ;; or movement extends to end of buffer, so reset it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
901 (setq end (min end (point-max)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
902 (beginning-of-line)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
903 (narrow-to-region (point) end)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
904 (goto-char start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
905 (while (and rest (not (eobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
906 (setq p (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
907 (move-to-column right pad-p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
908 (set-extent-endpoints (car rest) p (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
909 ;; this code used to look at the return value
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
910 ;; of forward-line, but that doesn't work because
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
911 ;; forward-line has bogus behavior: If you're on
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
912 ;; the last line of a buffer but not at the very
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
913 ;; end, forward-line will move you to the very
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
914 ;; end and return 0 instead of 1, like it should.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
915 ;; the result was frequent infinite loops here,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
916 ;; creating very large numbers of extents at
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
917 ;; the same position. There was an N^2 sorting
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
918 ;; algorithm in extents.c for extents at a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
919 ;; particular position, and the result was very
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
920 ;; bad news.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
921 (forward-line 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
922 (if (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
923 (move-to-column left pad-p))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
924 (setq last rest
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
925 rest (cdr rest)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
926 (cond (rest
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
927 (mapcar 'delete-extent rest)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
928 (setcdr last nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
929 ((not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
930 (while (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
931 (setq p (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
932 (move-to-column right pad-p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
933 (let ((e (make-extent p (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
934 (set-extent-face e (extent-face (car extents)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
935 (set-extent-priority e (extent-priority (car extents)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
936 (setcdr last (cons e nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
937 (setq last (cdr last)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
938 (forward-line 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
939 (if (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
940 (move-to-column left pad-p))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
941 )))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
942 ))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
943
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
944 (defun default-mouse-track-has-selection-p (buffer)
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
945 (and (selection-owner-p)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
946 (extent-live-p primary-selection-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
947 (not (extent-detached-p primary-selection-extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
948 (eq buffer (extent-object primary-selection-extent))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
949
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
950 (defun default-mouse-track-anchor (adjust previous-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
951 (if adjust
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
952 (if (default-mouse-track-has-selection-p (current-buffer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
953 (let ((start (extent-start-position primary-selection-extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
954 (end (extent-end-position primary-selection-extent)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
955 (cond ((< (point) start) end)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
956 ((> (point) end) start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
957 ((> (- (point) start) (- end (point))) start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
958 (t end)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
959 previous-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
960 (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
961
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
962 (defun default-mouse-track-maybe-own-selection (pair type)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
963 (let ((start (car pair))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
964 (end (cdr pair)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
965 (or (= start end) (push-mark (if (= (point) start) end start)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
966 (cond (zmacs-regions
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
967 (if (= start end)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
968 nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
969 ;; #### UTTER KLUDGE.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
970 ;; If we don't have this sit-for here, then triple-clicking
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
971 ;; will result in the line not being highlighted as it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
972 ;; should. What appears to be happening is this:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
973 ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
974 ;; -- each time the button goes down, the selection is
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
975 ;; disowned (see comment "remove the existing selection
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
976 ;; to unclutter the display", below).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
977 ;; -- this causes a SelectionClear event to be sent to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
978 ;; XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
979 ;; -- each time the button goes up except the first, the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
980 ;; selection is owned again.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
981 ;; -- later, XEmacs processes the SelectionClear event.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
982 ;; The selection code attempts to keep track of the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
983 ;; time that it last asserted the selection, and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
984 ;; compare it to the time of the SelectionClear event,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
985 ;; to see if it's a bogus notification or not (as
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
986 ;; is the case here). However, for some unknown
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
987 ;; reason this doesn't work in the triple-clicking
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
988 ;; case, and the selection code bogusly thinks this
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
989 ;; SelectionClear event is the real thing.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
990 ;; -- putting the sit-for in causes the pending
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
991 ;; SelectionClear events to get processed before
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
992 ;; the selection is reasserted, so everything works
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
993 ;; out OK.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
994 ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
995 ;; Presumably(?) this means there is a weird timing bug
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
996 ;; in the selection code, but there's not a chance in hell
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
997 ;; that I have the patience to track it down. Blame the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
998 ;; designers of X for fucking everything up so badly.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
999 ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1000 ;; This was originally a sit-for 0 but that wasn't
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1001 ;; sufficient to make things work. Even this isn't
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1002 ;; always sufficient but it seems to give something
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1003 ;; approaching a 99% success rate. Making it higher yet
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1004 ;; would help guarantee success with the price that the
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
1005 ;; delay would start to become noticeable.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1006 ;;
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1007 (and (eq (console-type) 'x)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1008 (sit-for 0.15 t))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1009 (zmacs-activate-region)))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1010 ((console-on-window-system-p)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1011 (if (= start end)
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1012 (disown-selection type)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1013 (if (consp default-mouse-track-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1014 ;; own the rectangular region
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1015 ;; this is a hack
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1016 (let ((r default-mouse-track-extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1017 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1018 (set-buffer (get-buffer-create " *rect yank temp buf*"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1019 (while r
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1020 (insert (extent-string (car r)) "\n")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1021 (setq r (cdr r)))
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1022 (own-selection (buffer-substring (point-min) (point-max)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1023 (kill-buffer (current-buffer))))
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1024 (own-selection (cons (set-marker (make-marker) start)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1025 (set-marker (make-marker) end))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1026 type)))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1027 (if (and (eq 'x (console-type))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1028 (not (= start end)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1029 ;; I guess cutbuffers should do something with rectangles too.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1030 ;; does anybody use them?
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1031 (x-store-cutbuffer (buffer-substring start end)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1032
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1033 (defun default-mouse-track-deal-with-down-event (click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1034 (let ((event default-mouse-track-down-event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1035 (if (null event) nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1036 (select-frame (event-frame event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1037 (let ((adjust default-mouse-track-adjust)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1038 ;; ####When you click on the splash-screen,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1039 ;; event-{closest-,}point can be out of bounds. Should
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1040 ;; event-closest-point really be allowed to return a bad
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1041 ;; position like that? Maybe pixel_to_glyph_translation
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1042 ;; needs to invalidate its cache when the buffer changes.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1043 ;; -dkindred@cs.cmu.edu
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1044 (close-pos (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1045 (set-buffer (event-buffer event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1046 (let ((p (event-closest-point event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1047 (and p (min (max p (point-min)) (point-max))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1048 extent previous-point)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
1049
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1050 (if (not (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1051 (error "not over window?"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1052 (setq default-mouse-track-type
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1053 (nth (mod (1- click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1054 (length default-mouse-track-type-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1055 default-mouse-track-type-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1056 (setq default-mouse-track-window (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1057 ;; Note that the extent used here is NOT the extent which
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1058 ;; ends up as the value of zmacs-region-extent - this one is used
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1059 ;; just during mouse-dragging.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1060 (setq default-mouse-track-extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1061 (make-extent close-pos close-pos (event-buffer event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1062 (setq extent default-mouse-track-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1063 (set-extent-face extent 'zmacs-region)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1064 ;; While the selection is being dragged out, give the selection extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1065 ;; slightly higher priority than any mouse-highlighted extent, so that
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1066 ;; the exact endpoints of the selection will be visible while the mouse
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1067 ;; is down. Normally, the selection and mouse highlighting have the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1068 ;; same priority, so that conflicts between the two of them are
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1069 ;; resolved by the usual size-and-endpoint-comparison method.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1070 (set-extent-priority extent (1+ mouse-highlight-priority))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1071 (if mouse-track-rectangle-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1072 (setq default-mouse-track-extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1073 (list default-mouse-track-extent)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
1074
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1075 (setq previous-point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1076 (if (and adjust
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1077 (markerp default-mouse-track-previous-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1078 (eq (current-buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1079 (marker-buffer default-mouse-track-previous-point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1080 (marker-position default-mouse-track-previous-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1081 (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1082 (default-mouse-track-set-point event default-mouse-track-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1083 (if (not adjust)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1084 (if (markerp default-mouse-track-previous-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1085 (set-marker default-mouse-track-previous-point (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1086 (setq default-mouse-track-previous-point (point-marker))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1087 ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1088 ;; adjust point to a word or line boundary if appropriate
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1089 (let ((anchor (default-mouse-track-anchor adjust previous-point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1090 (setq default-mouse-track-min-anchor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1091 (save-excursion (goto-char anchor)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1092 (funcall
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1093 default-mouse-track-normalize-point-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1094 default-mouse-track-type nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1095 (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1096 (setq default-mouse-track-max-anchor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1097 (save-excursion (goto-char anchor)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1098 (funcall
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1099 default-mouse-track-normalize-point-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1100 default-mouse-track-type t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1101 (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1102 ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1103 ;; remove the existing selection to unclutter the display
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1104 (if (not adjust)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1105 (cond (zmacs-regions
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1106 (zmacs-deactivate-region))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1107 ((console-on-window-system-p)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1108 (disown-selection)))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1109 (setq default-mouse-track-down-event nil))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1110
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1111 (defun default-mouse-track-down-hook (event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1112 (setq default-mouse-track-down-event (copy-event event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1113 nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1114
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1115 (defun default-mouse-track-cleanup-extents-hook ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1116 (remove-hook 'pre-command-hook 'default-mouse-track-cleanup-extents-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1117 (let ((extent default-mouse-track-extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1118 (if (consp extent) ; rectangle-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1119 (mapcar 'delete-extent extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1120 (if extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1121 (delete-extent extent)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1122
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1123 (defun default-mouse-track-cleanup-hook ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1124 (if zmacs-regions
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1125 (funcall 'default-mouse-track-cleanup-extents-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1126 (let ((extent default-mouse-track-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1127 (func #'(lambda (e)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1128 (and (extent-live-p e)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1129 (set-extent-face e 'primary-selection)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1130 (add-hook 'pre-command-hook 'default-mouse-track-cleanup-extents-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1131 (if (consp extent) ; rectangle-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1132 (mapcar func extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1133 (if extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1134 (funcall func extent))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1135
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1136 (defun default-mouse-track-cleanup-extent ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1137 (let ((dead-func
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1138 (function (lambda (x)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1139 (or (not (extent-live-p x))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1140 (extent-detached-p x)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1141 (extent default-mouse-track-extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1142 (if (consp extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1143 (if (funcall dead-func extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1144 (let (newval)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1145 (mapcar (function (lambda (x)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1146 (if (not (funcall dead-func x))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1147 (setq newval (cons x newval)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1148 extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1149 (setq default-mouse-track-extent (nreverse newval))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1150 (if (funcall dead-func extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1151 (setq default-mouse-track-extent nil)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1152
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1153 (defun default-mouse-track-drag-hook (event click-count was-timeout)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1154 (default-mouse-track-deal-with-down-event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1155 (default-mouse-track-set-point event default-mouse-track-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1156 (default-mouse-track-cleanup-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1157 (default-mouse-track-next-move default-mouse-track-min-anchor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1158 default-mouse-track-max-anchor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1159 default-mouse-track-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1160 t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1161
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1162 (defun default-mouse-track-return-dragged-selection (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1163 (default-mouse-track-cleanup-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1164 (let ((extent default-mouse-track-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1165 result)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1166 (default-mouse-track-set-point-in-window event default-mouse-track-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1167 (default-mouse-track-next-move default-mouse-track-min-anchor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1168 default-mouse-track-max-anchor
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1169 extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1170 (cond ((consp extent) ; rectangle-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1171 (let ((first (car extent))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1172 (last (car (setq extent (nreverse extent)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1173 ;; nreverse is destructive so we need to reset this
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1174 (setq default-mouse-track-extent extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1175 (setq result (cons (extent-start-position first)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1176 (extent-end-position last)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1177 ;; kludge to fix up region when dragging backwards...
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1178 (if (and (/= (point) (extent-start-position first))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1179 (/= (point) (extent-end-position last))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1180 (= (point) (extent-end-position first)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1181 (goto-char (car result)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1182 (extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1183 (setq result (cons (extent-start-position extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1184 (extent-end-position extent)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1185 ;; Minor kludge: if we're selecting in line-mode, include the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1186 ;; final newline. It's hard to do this in *-normalize-point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1187 (if (and result (eq default-mouse-track-type 'line))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1188 (let ((end-p (= (point) (cdr result))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1189 (goto-char (cdr result))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1190 (if (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1191 (setcdr result (1+ (cdr result))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1192 (goto-char (if end-p (cdr result) (car result)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1193 ;;; ;; Minor kludge sub 2. If in char mode, and we drag the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1194 ;;; ;; mouse past EOL, include the newline.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1195 ;;; ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1196 ;;; ;; Major problem: can't easily distinguish between being
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1197 ;;; ;; just past the last char on a line, and well past it,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1198 ;;; ;; to determine whether or not to include it in the region
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1199 ;;; ;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1200 ;;; (if nil ; (eq default-mouse-track-type 'char)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1201 ;;; (let ((after-end-p (and (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1202 ;;; (eolp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1203 ;;; (> (point) (car result)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1204 ;;; (if after-end-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1205 ;;; (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1206 ;;; (setcdr result (1+ (cdr result)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1207 ;;; (goto-char (cdr result))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1208 result))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1210 (defun default-mouse-track-drag-up-hook (event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1211 (let ((result (default-mouse-track-return-dragged-selection event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1212 (if result
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1213 (default-mouse-track-maybe-own-selection result 'PRIMARY)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1214 t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1215
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1216 (defun default-mouse-track-click-hook (event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1217 (default-mouse-track-drag-hook event click-count nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1218 (default-mouse-track-drag-up-hook event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1219 t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1220
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1221 (add-hook 'mouse-track-down-hook 'default-mouse-track-down-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1222 (add-hook 'mouse-track-drag-hook 'default-mouse-track-drag-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1223 (add-hook 'mouse-track-drag-up-hook 'default-mouse-track-drag-up-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1224 (add-hook 'mouse-track-click-hook 'default-mouse-track-click-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1225 (add-hook 'mouse-track-cleanup-hook 'default-mouse-track-cleanup-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1226
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1227
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1228 ;;;;;;;;;;;; other mouse-track stuff (mostly associated with the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1229 ;;;;;;;;;;;; default handlers)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1230
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1231 (defun mouse-track-default (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1232 "Invoke `mouse-track' with only the default handlers active."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1233 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1234 (let ((mouse-track-down-hook 'default-mouse-track-down-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1235 (mouse-track-drag-hook 'default-mouse-track-drag-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1236 (mouse-track-drag-up-hook 'default-mouse-track-drag-up-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1237 (mouse-track-click-hook 'default-mouse-track-click-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1238 (mouse-track-cleanup-hook 'default-mouse-track-cleanup-hook))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1239 (mouse-track event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1240
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1241 (defun mouse-track-do-rectangle (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1242 "Like `mouse-track' but selects rectangles instead of regions."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1243 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1244 (let ((mouse-track-rectangle-p t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1245 (mouse-track event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1246
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1247 (defun mouse-track-adjust (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1248 "Extend the existing selection. This should be bound to a mouse button.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1249 The selection will be enlarged or shrunk so that the point of the mouse
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1250 click is one of its endpoints. This function in fact behaves fairly
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1251 similarly to `mouse-track', but begins by extending the existing selection
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1252 (or creating a new selection from the previous text cursor position to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1253 the current mouse position) instead of creating a new, empty selection.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1254
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1255 The mouse-track handlers are run from this command just like from
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1256 `mouse-track'. Therefore, do not call this command from a mouse-track
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1257 handler!"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1258 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1259 (let ((default-mouse-track-adjust t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1260 (mouse-track event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1261
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1262 (defun mouse-track-adjust-default (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1263 "Extend the existing selection, using only the default handlers.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1264 This is just like `mouse-track-adjust' but will override any
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1265 custom mouse-track handlers that the user may have installed."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1266 (interactive "e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1267 (let ((default-mouse-track-adjust t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1268 (mouse-track-default event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1269
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1270 (defvar mouse-track-insert-selected-region nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1271
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1272 (defun mouse-track-insert-drag-up-hook (event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1273 (setq mouse-track-insert-selected-region
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1274 (default-mouse-track-return-dragged-selection event)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 255
diff changeset
1275
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1276 (defun mouse-track-insert (event &optional delete)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1277 "Make a selection with the mouse and insert it at point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1278 This is exactly the same as the `mouse-track' command on \\[mouse-track],
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1279 except that point is not moved; the selected text is immediately inserted
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1280 after being selected\; and the selection is immediately disowned afterwards."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1281 (interactive "*e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1282 (setq mouse-track-insert-selected-region nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1283 (let ((mouse-track-drag-up-hook 'mouse-track-insert-drag-up-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1284 (mouse-track-click-hook 'mouse-track-insert-click-hook)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1285 s)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1286 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1287 (save-window-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1288 (mouse-track event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1289 (if (consp mouse-track-insert-selected-region)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1290 (let ((pair mouse-track-insert-selected-region))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1291 (setq s (prog1
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1292 (buffer-substring (car pair) (cdr pair))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1293 (if delete
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1294 (kill-region (car pair) (cdr pair)))))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1295 (or (null s) (equal s "") (insert s))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1296
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1297 (defun mouse-track-insert-click-hook (event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1298 (default-mouse-track-drag-hook event click-count nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1299 (mouse-track-insert-drag-up-hook event click-count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1300 t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1301
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1302 (defun mouse-track-delete-and-insert (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1303 "Make a selection with the mouse and insert it at point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1304 This is exactly the same as the `mouse-track' command on \\[mouse-track],
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1305 except that point is not moved; the selected text is immediately inserted
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1306 after being selected\; and the text of the selection is deleted."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1307 (interactive "*e")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1308 (mouse-track-insert event t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1309
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1310 ;;;;;;;;;;;;;;;;;;;;;;;;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1311
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1312
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1313 (defvar inhibit-help-echo nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1314 "Inhibits display of `help-echo' extent properties in the minibuffer.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1315 (defvar last-help-echo-object nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1316 (defvar help-echo-owns-message nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1317
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1318 (defun clear-help-echo (&optional ignored-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1319 (if help-echo-owns-message
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1320 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1321 (setq help-echo-owns-message nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1322 last-help-echo-object nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1323 (clear-message 'help-echo))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1324
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1325 (defun show-help-echo (mess)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1326 ;; (clear-help-echo)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1327 (setq help-echo-owns-message t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1328 (display-message 'help-echo mess))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1329
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1330 (add-hook 'mouse-leave-frame-hook 'clear-help-echo)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1331
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1332 ;; It may be a good idea to move this to C, for better performance of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1333 ;; extent highlighting and pointer changes.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1334 (defun default-mouse-motion-handler (event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1335 "For use as the value of `mouse-motion-handler'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1336 This implements the various pointer-shape variables,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1337 as well as extent highlighting, help-echo, toolbar up/down,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1338 and `mode-motion-hook'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1339 (let* ((frame (or (event-frame event) (selected-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1340 (window (event-window event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1341 (buffer (event-buffer event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1342 (modeline-point (and buffer (event-modeline-position event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1343 (modeline-string (and modeline-point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1344 (symbol-value-in-buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1345 'generated-modeline-string buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1346 ;; point must be invalidated by modeline-point.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1347 (point (and buffer (not modeline-point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1348 (event-point event)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1349 (extent (or (and point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1350 (extent-at point buffer 'mouse-face))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1351 (and modeline-point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1352 (extent-at modeline-point modeline-string
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1353 ;; Modeline extents don't have a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1354 ;; mouse-face property set.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1355 'help-echo))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1356 (glyph-extent1 (event-glyph-extent event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1357 (glyph-extent (and glyph-extent1
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1358 (extent-live-p glyph-extent1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1359 glyph-extent1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1360 ;; This is an extent:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1361 (user-pointer1 (or (and glyph-extent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1362 (extent-property glyph-extent 'pointer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1363 glyph-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1364 (and point (extent-at point buffer 'pointer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1365 (and modeline-point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1366 (extent-at modeline-point modeline-string
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1367 'pointer))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1368 ;; And this should be a glyph:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1369 (user-pointer (and user-pointer1 (extent-live-p user-pointer1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1370 (extent-property user-pointer1 'pointer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1371 (button (event-toolbar-button event))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1372 (help (or (and glyph-extent (extent-property glyph-extent 'help-echo)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1373 glyph-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1374 (and button (not (null (toolbar-button-help-string button)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1375 button)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1376 (and point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1377 (extent-at point buffer 'help-echo))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1378 (and modeline-point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1379 (extent-at modeline-point modeline-string
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1380 'help-echo))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1381 ;; vars is a list of glyph variables to check for a pointer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1382 ;; value.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1383 (vars (cond
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
1384 ;; Checking if button is non-nil is not sufficent
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1385 ;; since the pointer could be over a blank portion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1386 ;; of the toolbar.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1387 ((event-over-toolbar-p event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1388 '(toolbar-pointer-glyph nontext-pointer-glyph
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1389 text-pointer-glyph))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1390 ((or extent glyph-extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1391 '(selection-pointer-glyph text-pointer-glyph))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1392 ((event-over-modeline-p event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1393 '(modeline-pointer-glyph nontext-pointer-glyph
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1394 text-pointer-glyph))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1395 ((and (event-over-vertical-divider-p event)
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1396 ;; #### I disagree with the check below.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1397 ;; Discuss it with Kirill for 21.1. --hniksic
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1398 (specifier-instance vertical-divider-always-visible-p
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1399 (event-window event)))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1400 '(divider-pointer-glyph nontext-pointer-glyph
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1401 text-pointer-glyph))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1402 (point '(text-pointer-glyph))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1403 (buffer '(nontext-pointer-glyph text-pointer-glyph))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1404 (t '(nontext-pointer-glyph text-pointer-glyph))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1405 pointer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1406 (and user-pointer (glyphp user-pointer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1407 (push 'user-pointer vars))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1408 (while (and vars (not (pointer-image-instance-p pointer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1409 (setq pointer (glyph-image-instance (symbol-value (car vars))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1410 (or window frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1411 vars (cdr vars)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1412
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1413 (if (pointer-image-instance-p pointer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1414 (set-frame-pointer frame pointer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1415
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1416 ;; If last-pressed-toolbar-button is not nil, then check and see
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1417 ;; if we have moved to a new button and adjust the down flags
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1418 ;; accordingly.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1419 (when (and (featurep 'toolbar) toolbar-active)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1420 (unless (eq last-pressed-toolbar-button button)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1421 (release-previous-toolbar-button event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1422 (and button (press-toolbar-button event))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1423
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1424 (cond (extent (highlight-extent extent t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1425 (glyph-extent (highlight-extent glyph-extent t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1426 (t (highlight-extent nil nil)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1427 (cond ((extentp help)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1428 (or inhibit-help-echo
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1429 (eq help last-help-echo-object) ;save some time
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 380
diff changeset
1430 (eq (selected-window) (minibuffer-window))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1431 (let ((hprop (extent-property help 'help-echo)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1432 (setq last-help-echo-object help)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1433 (or (stringp hprop)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1434 (setq hprop (funcall hprop help)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1435 (and hprop (show-help-echo hprop)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1436 ((and (featurep 'toolbar)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1437 (toolbar-button-p help)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1438 (toolbar-button-enabled-p help))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1439 (or (not toolbar-help-enabled)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1440 (eq help last-help-echo-object) ;save some time
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 380
diff changeset
1441 (eq (selected-window) (minibuffer-window))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1442 (let ((hstring (toolbar-button-help-string button)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1443 (setq last-help-echo-object help)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1444 (or (stringp hstring)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1445 (setq hstring (funcall hstring help)))
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 380
diff changeset
1446 (and hstring (show-help-echo hstring)))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1447 (last-help-echo-object
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1448 (clear-help-echo)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1449 (if mouse-grabbed-buffer (setq buffer mouse-grabbed-buffer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1450 (if (and buffer (symbol-value-in-buffer 'mode-motion-hook buffer nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1451 (with-current-buffer buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1452 (run-hook-with-args 'mode-motion-hook event)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1453
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1454 ;; If the mode-motion-hook created a highlightable extent around
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1455 ;; the mouse-point, highlight it right away. Otherwise it wouldn't
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1456 ;; be highlighted until the *next* motion event came in.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1457 (if (and point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1458 (null extent)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1459 (setq extent (extent-at point
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1460 (event-buffer event) ; not buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1461 'mouse-face)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1462 (highlight-extent extent t)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1463 nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1464
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1465 (setq mouse-motion-handler 'default-mouse-motion-handler)
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1466
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1467 ;;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1468 ;; Vertical divider dragging
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1469 ;;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1470 (defun drag-window-divider (event)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1471 "Handle resizing windows by dragging window dividers.
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1472 This is an intenal function, normally bound to button1 event in
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1473 window-divider-map. You would not call it, but you may bind it to
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1474 other mouse buttons."
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1475 (interactive "e")
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1476 ;; #### I disagree with the check below.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1477 ;; Discuss it with Kirill for 21.1. --hniksic
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1478 (if (not (specifier-instance vertical-divider-always-visible-p
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1479 (event-window event)))
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 290
diff changeset
1480 (error "Not over a window"))
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1481 (let-specifier ((vertical-divider-shadow-thickness
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1482 (- (specifier-instance vertical-divider-shadow-thickness
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1483 (event-window event)))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1484 (event-window event)))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1485 (let* ((window (event-window event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1486 (frame (event-channel event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1487 (last-timestamp (event-timestamp event))
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1488 done)
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1489 (while (not done)
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1490 (let* ((edges (window-pixel-edges window))
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1491 (old-right (caddr edges))
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1492 (old-left (car edges))
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1493 (backup-conf (current-window-configuration frame))
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1494 (old-edges-all-windows (mapcar 'window-pixel-edges
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1495 (window-list))))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1496
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1497 ;; This is borrowed from modeline.el:
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1498 ;; requeue event and quit if this is a misc-user, eval or
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1499 ;; keypress event.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1500 ;; quit if this is a button press or release event, or if the event
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1501 ;; occurred in some other frame.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1502 ;; drag if this is a mouse motion event and the time
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1503 ;; between this event and the last event is greater than
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1504 ;; drag-divider-event-lag.
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1505 ;; do nothing if this is any other kind of event.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1506 (setq event (next-event event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1507 (cond ((or (misc-user-event-p event)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1508 (key-press-event-p event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1509 (setq unread-command-events (nconc unread-command-events
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1510 (list event))
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1511 done t))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1512 ((button-release-event-p event)
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1513 (setq done t))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1514 ((button-event-p event)
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1515 (setq done t))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1516 ((not (motion-event-p event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1517 (dispatch-event event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1518 ((not (eq frame (event-frame event)))
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1519 (setq done t))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1520 ((< (abs (- (event-timestamp event) last-timestamp))
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
1521 drag-divider-event-lag))
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1522 (t
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1523 (setq last-timestamp (event-timestamp event))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1524 ;; Enlarge the window, calculating change in characters
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1525 ;; of default font. Do not let the window to become
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
1526 ;; less than alolwed minimum (not because that's critical
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1527 ;; for the code performance, just the visual effect is
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1528 ;; better: when cursor goes to the left of the next left
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
1529 ;; divider, the vindow being resized shrinks to minimal
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1530 ;; size.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1531 (enlarge-window (max (- window-min-width (window-width window))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1532 (/ (- (event-x-pixel event) old-right)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1533 (face-width 'default window)))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1534 t window)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1535 ;; Backout the change if some windows got deleted, or
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1536 ;; if the change caused more than two windows to resize
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1537 ;; (shifting the whole stack right is ugly), or if the
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1538 ;; left window side has slipped (right side cannot be
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
1539 ;; moved any funrther to the right, so enlarge-window
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1540 ;; plays bad games with the left edge.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1541 (if (or (/= (count-windows) (length old-edges-all-windows))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1542 (/= old-left (car (window-pixel-edges window)))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1543 ;; This check is very hairy. We allow any number
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1544 ;; of left edges to change, but only to the same
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1545 ;; new value. Similar procedure is for the right edges.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1546 (let ((all-that-bad nil)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1547 (new-left-ok nil)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1548 (new-right-ok nil))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1549 (mapcar* (lambda (window old-edges)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1550 (let ((new (car (window-pixel-edges window))))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1551 (if (/= new (car old-edges))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1552 (if (and new-left-ok
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1553 (/= new-left-ok new))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1554 (setq all-that-bad t)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1555 (setq new-left-ok new)))))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1556 (window-list) old-edges-all-windows)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1557 (mapcar* (lambda (window old-edges)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1558 (let ((new (caddr (window-pixel-edges window))))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1559 (if (/= new (caddr old-edges))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1560 (if (and new-right-ok
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1561 (/= new-right-ok new))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1562 (setq all-that-bad t)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1563 (setq new-right-ok new)))))
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1564 (window-list) old-edges-all-windows)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1565 all-that-bad))
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1566 (set-window-configuration backup-conf)))))))))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1567
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1568 (setq vertical-divider-map (make-keymap))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1569 (define-key vertical-divider-map 'button1 'drag-window-divider)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1570
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1571 ;;; mouse.el ends here