bytecomp.el fix for bug#8647
[bpt/emacs.git] / lisp / xt-mouse.el
CommitLineData
e8af40ee 1;;; xt-mouse.el --- support the mouse when emacs run in an xterm
b578f267 2
73b0cd50 3;; Copyright (C) 1994, 2000-2011 Free Software Foundation, Inc.
fe3acbd4 4
3efc86ef 5;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
fe3acbd4
RS
6;; Keywords: mouse, terminals
7
b578f267
EN
8;; This file is part of GNU Emacs.
9
eb3fa2cf 10;; GNU Emacs is free software: you can redistribute it and/or modify
fe3acbd4 11;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
b578f267
EN
14
15;; GNU Emacs is distributed in the hope that it will be useful,
fe3acbd4
RS
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
b578f267 19
fe3acbd4 20;; You should have received a copy of the GNU General Public License
eb3fa2cf 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
fe3acbd4 22
b2497d2e 23;;; Commentary:
fe3acbd4 24
30598da5 25;; Enable mouse support when running inside an xterm.
fe3acbd4
RS
26
27;; This is actually useful when you are running X11 locally, but is
28;; working on remote machine over a modem line or through a gateway.
29
30;; It works by translating xterm escape codes into generic emacs mouse
31;; events so it should work with any package that uses the mouse.
32
387a2345
RS
33;; You don't have to turn off xterm mode to use the normal xterm mouse
34;; functionality, it is still available by holding down the SHIFT key
35;; when you press the mouse button.
36
fe3acbd4
RS
37;;; Todo:
38
39;; Support multi-click -- somehow.
40
b2497d2e 41;;; Code:
fe3acbd4 42
315c417c
NR
43(defvar xterm-mouse-debug-buffer nil)
44
599431ab
RS
45(defvar xterm-mouse-last)
46
bf31a093
NR
47;; Mouse events symbols must have an 'event-kind property with
48;; the value 'mouse-click.
ad15832e
NR
49(dolist (event-type '(mouse-1 mouse-2 mouse-3
50 M-down-mouse-1 M-down-mouse-2 M-down-mouse-3))
bf31a093
NR
51 (put event-type 'event-kind 'mouse-click))
52
06b60517 53(defun xterm-mouse-translate (_event)
b2497d2e 54 "Read a click and release event from XTerm."
fe3acbd4
RS
55 (save-excursion
56 (save-window-excursion
57 (deactivate-mark)
599431ab 58 (let* ((xterm-mouse-last)
cec01ccb
RS
59 (down (xterm-mouse-event))
60 (down-command (nth 0 down))
61 (down-data (nth 1 down))
62 (down-where (nth 1 down-data))
63 (down-binding (key-binding (if (symbolp down-where)
64 (vector down-where down-command)
4b09e331
GM
65 (vector down-command))))
66 (is-click (string-match "^mouse" (symbol-name (car down)))))
f1180544 67
4b09e331
GM
68 (unless is-click
69 (unless (and (eq (read-char) ?\e)
70 (eq (read-char) ?\[)
71 (eq (read-char) ?M))
72 (error "Unexpected escape sequence from XTerm")))
73
74 (let* ((click (if is-click down (xterm-mouse-event)))
af020a04 75 ;; (click-command (nth 0 click))
cec01ccb
RS
76 (click-data (nth 1 click))
77 (click-where (nth 1 click-data)))
78 (if (memq down-binding '(nil ignore))
79 (if (and (symbolp click-where)
bf31a093 80 (consp click-where))
cec01ccb
RS
81 (vector (list click-where click-data) click)
82 (vector click))
83 (setq unread-command-events
84 (if (eq down-where click-where)
85 (list click)
86 (list
87 ;; Cheat `mouse-drag-region' with move event.
88 (list 'mouse-movement click-data)
89 ;; Generate a drag event.
90 (if (symbolp down-where)
91 0
b2497d2e
DL
92 (list (intern (format "drag-mouse-%d"
93 (+ 1 xterm-mouse-last)))
bf31a093 94 down-data click-data)))))
315c417c
NR
95 (if xterm-mouse-debug-buffer
96 (print unread-command-events xterm-mouse-debug-buffer))
cec01ccb 97 (if (and (symbolp down-where)
bf31a093 98 (consp down-where))
cec01ccb
RS
99 (vector (list down-where down-data) down)
100 (vector down))))))))
101
6bac1616
KL
102;; These two variables have been converted to terminal parameters.
103;;
104;;(defvar xterm-mouse-x 0
105;; "Position of last xterm mouse event relative to the frame.")
106;;
107;;(defvar xterm-mouse-y 0
108;; "Position of last xterm mouse event relative to the frame.")
cec01ccb 109
a7dc2df1
NR
110(defvar xt-mouse-epoch nil)
111
54eba353 112;; Indicator for the xterm-mouse mode.
54eba353 113
b2497d2e
DL
114(defun xterm-mouse-position-function (pos)
115 "Bound to `mouse-position-function' in XTerm mouse mode."
6bac1616
KL
116 (when (terminal-parameter nil 'xterm-mouse-x)
117 (setcdr pos (cons (terminal-parameter nil 'xterm-mouse-x)
118 (terminal-parameter nil 'xterm-mouse-y))))
b2497d2e 119 pos)
fe3acbd4 120
a9772fb4
FP
121;; read xterm sequences above ascii 127 (#x7f)
122(defun xterm-mouse-event-read ()
123 (let ((c (read-char)))
243881ed
J
124 (if (> c #x3FFF80)
125 (+ 128 (- c #x3FFF80))
a9772fb4
FP
126 c)))
127
6ab93c85
SM
128(defun xterm-mouse-truncate-wrap (f)
129 "Truncate with wrap-around."
130 (condition-case nil
131 ;; First try the built-in truncate, in case there's no overflow.
132 (truncate f)
133 ;; In case of overflow, do wraparound by hand.
134 (range-error
135 ;; In our case, we wrap around every 3 days or so, so if we assume
136 ;; a maximum of 65536 wraparounds, we're safe for a couple years.
137 ;; Using a power of 2 makes rounding errors less likely.
138 (let* ((maxwrap (* 65536 2048))
139 (dbig (truncate (/ f maxwrap)))
140 (fdiff (- f (* 1.0 maxwrap dbig))))
141 (+ (truncate fdiff) (* maxwrap dbig))))))
142
fe3acbd4 143(defun xterm-mouse-event ()
b2497d2e 144 "Convert XTerm mouse event to Emacs mouse event."
a9772fb4
FP
145 (let* ((type (- (xterm-mouse-event-read) #o40))
146 (x (- (xterm-mouse-event-read) #o40 1))
147 (y (- (xterm-mouse-event-read) #o40 1))
4c8bb950
NR
148 ;; Emulate timestamp information. This is accurate enough
149 ;; for default value of mouse-1-click-follows-link (450msec).
6ab93c85
SM
150 (timestamp (xterm-mouse-truncate-wrap
151 (* 1000
152 (- (float-time)
153 (or xt-mouse-epoch
154 (setq xt-mouse-epoch (float-time)))))))
155 (mouse (intern
4b09e331
GM
156 ;; For buttons > 3, the release-event looks
157 ;; differently (see xc/programs/xterm/button.c,
158 ;; function EditorButton), and there seems to come in
159 ;; a release-event only, no down-event.
160 (cond ((>= type 64)
161 (format "mouse-%d" (- type 60)))
ad15832e
NR
162 ((memq type '(8 9 10))
163 (setq xterm-mouse-last type)
164 (format "M-down-mouse-%d" (- type 7)))
165 ((= type 11)
166 (format "mouse-%d" (- xterm-mouse-last 7)))
4b09e331 167 ((= type 3)
318f2a46
AS
168 ;; For buttons > 5 xterm only reports a
169 ;; button-release event. Avoid error by mapping
170 ;; them all to mouse-1.
171 (format "mouse-%d" (+ 1 (or xterm-mouse-last 0))))
4b09e331
GM
172 (t
173 (setq xterm-mouse-last type)
bf31a093 174 (format "down-mouse-%d" (+ 1 type))))))
fcd9df1b
NR
175 (w (window-at x y))
176 (ltrb (window-edges w))
177 (left (nth 0 ltrb))
178 (top (nth 1 ltrb)))
179
6bac1616
KL
180 (set-terminal-parameter nil 'xterm-mouse-x x)
181 (set-terminal-parameter nil 'xterm-mouse-y y)
cb666f2d
NR
182 (setq
183 last-input-event
429146fc 184 (list mouse
915bdfc4
NR
185 (let ((event (if w
186 (posn-at-x-y (- x left) (- y top) w t)
187 (append (list nil 'menu-bar)
ad15832e 188 (nthcdr 2 (posn-at-x-y x y))))))
915bdfc4
NR
189 (setcar (nthcdr 3 event) timestamp)
190 event)))))
fe3acbd4 191
fe3acbd4 192;;;###autoload
c6005bf3 193(define-minor-mode xterm-mouse-mode
fe3acbd4 194 "Toggle XTerm mouse mode.
4837b516
GM
195With prefix arg, turn XTerm mouse mode on if arg is positive, otherwise turn
196it off.
fe3acbd4 197
e742657f 198Turn it on to use Emacs mouse commands, and off to use xterm mouse commands.
9001354f
LT
199This works in terminal emulators compatible with xterm. It only
200works for simple uses of the mouse. Basically, only non-modified
201single clicks are supported. When turned on, the normal xterm
202mouse functionality for such clicks is still available by holding
203down the SHIFT key while pressing the mouse button."
204 :global t :group 'mouse
146df845
SM
205 (let ((do-hook (if xterm-mouse-mode 'add-hook 'remove-hook)))
206 (funcall do-hook 'terminal-init-xterm-hook
207 'turn-on-xterm-mouse-tracking-on-terminal)
208 (funcall do-hook 'delete-terminal-functions
209 'turn-off-xterm-mouse-tracking-on-terminal)
210 (funcall do-hook 'suspend-tty-functions
211 'turn-off-xterm-mouse-tracking-on-terminal)
212 (funcall do-hook 'resume-tty-functions
213 'turn-on-xterm-mouse-tracking-on-terminal)
214 (funcall do-hook 'suspend-hook 'turn-off-xterm-mouse-tracking)
215 (funcall do-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking)
216 (funcall do-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking))
c6005bf3
SM
217 (if xterm-mouse-mode
218 ;; Turn it on
6bac1616 219 (progn
c6005bf3
SM
220 (setq mouse-position-function #'xterm-mouse-position-function)
221 (turn-on-xterm-mouse-tracking))
222 ;; Turn it off
223 (turn-off-xterm-mouse-tracking 'force)
224 (setq mouse-position-function nil)))
fe3acbd4
RS
225
226(defun turn-on-xterm-mouse-tracking ()
b2497d2e 227 "Enable Emacs mouse tracking in xterm."
d63ddb2c 228 (dolist (terminal (terminal-list))
af020a04 229 (turn-on-xterm-mouse-tracking-on-terminal terminal)))
fe3acbd4 230
06b60517 231(defun turn-off-xterm-mouse-tracking (&optional _force)
90e742e0 232 "Disable Emacs mouse tracking in xterm."
d63ddb2c 233 (dolist (terminal (terminal-list))
af020a04 234 (turn-off-xterm-mouse-tracking-on-terminal terminal)))
6bac1616 235
af020a04 236(defun turn-on-xterm-mouse-tracking-on-terminal (&optional terminal)
6bac1616 237 "Enable xterm mouse tracking on TERMINAL."
393439a3
DN
238 (when (and xterm-mouse-mode (eq t (terminal-live-p terminal))
239 ;; Avoid the initial terminal which is not a termcap device.
240 ;; FIXME: is there more elegant way to detect the initial terminal?
241 (not (string= (terminal-name terminal) "initial_terminal")))
af020a04
SM
242 (unless (terminal-parameter terminal 'xterm-mouse-mode)
243 ;; Simulate selecting a terminal by selecting one of its frames ;-(
244 (with-selected-frame (car (frames-on-display-list terminal))
245 (define-key input-decode-map "\e[M" 'xterm-mouse-translate))
246 (set-terminal-parameter terminal 'xterm-mouse-mode t))
6bac1616
KL
247 (send-string-to-terminal "\e[?1000h" terminal)))
248
249(defun turn-off-xterm-mouse-tracking-on-terminal (terminal)
250 "Disable xterm mouse tracking on TERMINAL."
af020a04
SM
251 ;; Only send the disable command to those terminals to which we've already
252 ;; sent the enable command.
253 (when (and (terminal-parameter terminal 'xterm-mouse-mode)
393439a3
DN
254 (eq t (terminal-live-p terminal))
255 ;; Avoid the initial terminal which is not a termcap device.
256 ;; FIXME: is there more elegant way to detect the initial terminal?
257 (not (string= (terminal-name terminal) "initial_terminal")))
af020a04
SM
258 ;; We could remove the key-binding and unset the `xterm-mouse-mode'
259 ;; terminal parameter, but it seems less harmful to send this escape
260 ;; command too many times (or to catch an unintended key sequence), than
261 ;; to send it too few times (or to fail to let xterm-mouse events
262 ;; pass by untranslated).
6bac1616
KL
263 (send-string-to-terminal "\e[?1000l" terminal)))
264
fe3acbd4
RS
265(provide 'xt-mouse)
266
267;;; xt-mouse.el ends here