1 ;;; xt-mouse.el --- support the mouse when emacs run in an xterm
3 ;; Copyright (C) 1994, 2000-2014 Free Software Foundation, Inc.
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Keywords: mouse, terminals
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; Enable mouse support when running inside an xterm.
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.
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.
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.
39 ;; Support multi-click -- somehow.
43 (defvar xterm-mouse-debug-buffer nil
)
45 ;; Mouse events symbols must have an 'event-kind property with
46 ;; the value 'mouse-click.
47 (dolist (event '(mouse-1 mouse-2 mouse-3 mouse-4 mouse-5
))
48 (let ((M-event (intern (concat "M-" (symbol-name event
)))))
49 (put event
'event-kind
'mouse-click
)
50 (put M-event
'event-kind
'mouse-click
)))
52 (defun xterm-mouse-translate (_event)
53 "Read a click and release event from XTerm."
54 (xterm-mouse-translate-1))
56 (defun xterm-mouse-translate-extended (_event)
57 "Read a click and release event from XTerm.
58 Similar to `xterm-mouse-translate', but using the \"1006\"
59 extension, which supports coordinates >= 231 (see
60 http://invisible-island.net/xterm/ctlseqs/ctlseqs.html)."
61 (xterm-mouse-translate-1 1006))
63 (defun xterm-mouse-translate-1 (&optional extension
)
65 (let* ((event (xterm-mouse-event extension
))
66 (ev-command (nth 0 event
))
67 (ev-data (nth 1 event
))
68 (ev-where (nth 1 ev-data
))
70 (is-down (string-match "down-" (symbol-name ev-command
))))
73 ((null event
) nil
) ;Unknown/bogus byte sequence!
75 (setf (terminal-parameter nil
'xterm-mouse-last-down
) event
)
78 (let* ((down (terminal-parameter nil
'xterm-mouse-last-down
))
79 (down-data (nth 1 down
))
80 (down-where (nth 1 down-data
)))
81 (setf (terminal-parameter nil
'xterm-mouse-last-down
) nil
)
84 ;; This is an "up-only" event. Pretend there was an up-event
85 ;; right before and keep the up-event for later.
86 (push event unread-command-events
)
87 (vector (cons (intern (replace-regexp-in-string
88 "\\`\\([ACMHSs]-\\)*" "\\&down-"
89 (symbol-name ev-command
) t
))
91 ((equal ev-where down-where
) vec
)
93 (let ((drag (if (symbolp ev-where
)
95 (list (intern (replace-regexp-in-string
96 "\\`\\([ACMHSs]-\\)*" "\\&drag-"
97 (symbol-name ev-command
) t
))
99 (if (null track-mouse
)
101 (push drag unread-command-events
)
102 (vector (list 'mouse-movement ev-data
))))))))))))
104 ;; These two variables have been converted to terminal parameters.
106 ;;(defvar xterm-mouse-x 0
107 ;; "Position of last xterm mouse event relative to the frame.")
109 ;;(defvar xterm-mouse-y 0
110 ;; "Position of last xterm mouse event relative to the frame.")
112 (defvar xt-mouse-epoch nil
)
114 ;; Indicator for the xterm-mouse mode.
116 (defun xterm-mouse-position-function (pos)
117 "Bound to `mouse-position-function' in XTerm mouse mode."
118 (when (terminal-parameter nil
'xterm-mouse-x
)
119 (setcdr pos
(cons (terminal-parameter nil
'xterm-mouse-x
)
120 (terminal-parameter nil
'xterm-mouse-y
))))
123 (defun xterm-mouse-truncate-wrap (f)
124 "Truncate with wrap-around."
126 ;; First try the built-in truncate, in case there's no overflow.
128 ;; In case of overflow, do wraparound by hand.
130 ;; In our case, we wrap around every 3 days or so, so if we assume
131 ;; a maximum of 65536 wraparounds, we're safe for a couple years.
132 ;; Using a power of 2 makes rounding errors less likely.
133 (let* ((maxwrap (* 65536 2048))
134 (dbig (truncate (/ f maxwrap
)))
135 (fdiff (- f
(* 1.0 maxwrap dbig
))))
136 (+ (truncate fdiff
) (* maxwrap dbig
))))))
138 ;; Normal terminal mouse click reporting: expect three bytes, of the
139 ;; form <BUTTON+32> <X+32> <Y+32>. Return a list (EVENT-TYPE X Y).
140 (defun xterm-mouse--read-event-sequence-1000 ()
141 (let* ((code (- (read-event) 32))
143 ;; For buttons > 3, the release-event looks differently
144 ;; (see xc/programs/xterm/button.c, function EditorButton),
145 ;; and come in a release-event only, no down-event.
147 (format "mouse-%d" (- code
60)))
148 ((memq code
'(8 9 10))
149 (format "M-down-mouse-%d" (- code
7)))
151 (let ((down (car (terminal-parameter
152 nil
'xterm-mouse-last-down
))))
153 (when (and down
(string-match "[0-9]" (symbol-name down
)))
154 (format (if (eq code
3) "mouse-%s" "M-mouse-%s")
155 (match-string 0 (symbol-name down
))))))
156 ((memq code
'(0 1 2))
157 (format "down-mouse-%d" (+ 1 code
)))))
158 (x (- (read-event) 33))
159 (y (- (read-event) 33)))
160 (and type
(wholenump x
) (wholenump y
)
161 (list (intern type
) x y
))))
163 ;; XTerm's 1006-mode terminal mouse click reporting has the form
164 ;; <BUTTON> ; <X> ; <Y> <M or m>, where the button and ordinates are
165 ;; in encoded (decimal) form. Return a list (EVENT-TYPE X Y).
166 (defun xterm-mouse--read-event-sequence-1006 ()
167 (let (button-bytes x-bytes y-bytes c
)
168 (while (not (eq (setq c
(read-event)) ?\
;))
169 (push c button-bytes
))
170 (while (not (eq (setq c
(read-event)) ?\
;))
172 (while (not (memq (setq c
(read-event)) '(?m ?M
)))
174 (list (let* ((code (string-to-number
175 (apply 'string
(nreverse button-bytes
))))
177 (down (and (not wheel
)
179 (intern (format "%s%smouse-%d"
188 ((< code
32) "C-M-S-")
190 (error "Unexpected escape sequence from XTerm")))
194 (1+ (mod code
4))))))
195 (1- (string-to-number (apply 'string
(nreverse x-bytes
))))
196 (1- (string-to-number (apply 'string
(nreverse y-bytes
)))))))
198 (defun xterm-mouse--set-click-count (event click-count
)
199 (setcdr (cdr event
) (list click-count
))
200 (let ((name (symbol-name (car event
))))
201 (when (string-match "\\(.*?\\)\\(\\(?:down-\\)?mouse-.*\\)" name
)
203 (intern (concat (match-string 1 name
)
204 (if (= click-count
2)
206 (match-string 2 name
)))))))
208 (defun xterm-mouse-event (&optional extension
)
209 "Convert XTerm mouse event to Emacs mouse event.
210 EXTENSION, if non-nil, means to use an extension to the usual
211 terminal mouse protocol; we currently support the value 1006,
212 which is the \"1006\" extension implemented in Xterm >= 277."
213 (let* ((click (cond ((null extension
)
214 (xterm-mouse--read-event-sequence-1000))
216 (xterm-mouse--read-event-sequence-1006))
218 (error "Unsupported XTerm mouse protocol")))))
220 (let* ((type (nth 0 click
))
223 ;; Emulate timestamp information. This is accurate enough
224 ;; for default value of mouse-1-click-follows-link (450msec).
225 (timestamp (xterm-mouse-truncate-wrap
229 (setq xt-mouse-epoch
(float-time)))))))
231 (ltrb (window-edges w
))
235 (posn-at-x-y (- x left
) (- y top
) w t
)
236 (append (list nil
'menu-bar
)
237 (nthcdr 2 (posn-at-x-y x y
)))))
238 (event (list type posn
)))
239 (setcar (nthcdr 3 posn
) timestamp
)
241 ;; Try to handle double/triple clicks.
242 (let* ((last-click (terminal-parameter nil
'xterm-mouse-last-click
))
243 (last-type (nth 0 last-click
))
244 (last-name (symbol-name last-type
))
245 (last-time (nth 1 last-click
))
246 (click-count (nth 2 last-click
))
247 (this-time (float-time))
248 (name (symbol-name type
)))
250 ((not (string-match "down-" name
))
251 ;; For up events, make the up side match the down side.
252 (setq this-time last-time
)
253 (when (and click-count
(> click-count
1)
254 (string-match "down-" last-name
)
255 (equal name
(replace-match "" t t last-name
)))
256 (xterm-mouse--set-click-count event click-count
)))
257 ((not last-time
) nil
)
258 ((and (> double-click-time
(* 1000 (- this-time last-time
)))
259 (equal last-name
(replace-match "" t t name
)))
260 (setq click-count
(1+ click-count
))
261 (xterm-mouse--set-click-count event click-count
))
262 (t (setq click-count
1)))
263 (set-terminal-parameter nil
'xterm-mouse-last-click
264 (list type this-time click-count
)))
266 (set-terminal-parameter nil
'xterm-mouse-x x
)
267 (set-terminal-parameter nil
'xterm-mouse-y y
)
268 (setq last-input-event event
)))))
271 (define-minor-mode xterm-mouse-mode
272 "Toggle XTerm mouse mode.
273 With a prefix argument ARG, enable XTerm mouse mode if ARG is
274 positive, and disable it otherwise. If called from Lisp, enable
275 the mode if ARG is omitted or nil.
277 Turn it on to use Emacs mouse commands, and off to use xterm mouse commands.
278 This works in terminal emulators compatible with xterm. It only
279 works for simple uses of the mouse. Basically, only non-modified
280 single clicks are supported. When turned on, the normal xterm
281 mouse functionality for such clicks is still available by holding
282 down the SHIFT key while pressing the mouse button."
283 :global t
:group
'mouse
284 (funcall (if xterm-mouse-mode
'add-hook
'remove-hook
)
285 'terminal-init-xterm-hook
286 'turn-on-xterm-mouse-tracking-on-terminal
)
290 (setq mouse-position-function
#'xterm-mouse-position-function
)
291 (mapc #'turn-on-xterm-mouse-tracking-on-terminal
(terminal-list)))
293 (mapc #'turn-off-xterm-mouse-tracking-on-terminal
(terminal-list))
294 (setq mouse-position-function nil
)))
296 (defconst xterm-mouse-tracking-enable-sequence
298 "Control sequence to enable xterm mouse tracking.
299 Enables basic tracking, then extended tracking on
300 terminals that support it.")
302 (defconst xterm-mouse-tracking-disable-sequence
304 "Reset the modes set by `xterm-mouse-tracking-enable-sequence'.")
306 (defun turn-on-xterm-mouse-tracking-on-terminal (&optional terminal
)
307 "Enable xterm mouse tracking on TERMINAL."
308 (when (and xterm-mouse-mode
(eq t
(terminal-live-p terminal
))
309 ;; Avoid the initial terminal which is not a termcap device.
310 ;; FIXME: is there more elegant way to detect the initial
312 (not (string= (terminal-name terminal
) "initial_terminal")))
313 (unless (terminal-parameter terminal
'xterm-mouse-mode
)
314 ;; Simulate selecting a terminal by selecting one of its frames
315 ;; so that we can set the terminal-local `input-decode-map'.
316 (with-selected-frame (car (frames-on-display-list terminal
))
317 (define-key input-decode-map
"\e[M" 'xterm-mouse-translate
)
318 (define-key input-decode-map
"\e[<" 'xterm-mouse-translate-extended
))
320 (send-string-to-terminal xterm-mouse-tracking-enable-sequence
322 ;; FIXME: This should use a dedicated error signal.
323 (error (if (equal (cadr err
) "Terminal is currently suspended")
324 nil
;The sequence will be sent upon resume.
325 (signal (car err
) (cdr err
)))))
326 (push xterm-mouse-tracking-enable-sequence
327 (terminal-parameter nil
'tty-mode-set-strings
))
328 (push xterm-mouse-tracking-disable-sequence
329 (terminal-parameter nil
'tty-mode-reset-strings
))
330 (set-terminal-parameter terminal
'xterm-mouse-mode t
))))
332 (defun turn-off-xterm-mouse-tracking-on-terminal (terminal)
333 "Disable xterm mouse tracking on TERMINAL."
334 ;; Only send the disable command to those terminals to which we've already
335 ;; sent the enable command.
336 (when (and (terminal-parameter terminal
'xterm-mouse-mode
)
337 (eq t
(terminal-live-p terminal
)))
338 ;; We could remove the key-binding and unset the `xterm-mouse-mode'
339 ;; terminal parameter, but it seems less harmful to send this escape
340 ;; command too many times (or to catch an unintended key sequence), than
341 ;; to send it too few times (or to fail to let xterm-mouse events
342 ;; pass by untranslated).
344 (send-string-to-terminal xterm-mouse-tracking-disable-sequence
346 ;; FIXME: This should use a dedicated error signal.
347 (error (if (equal (cadr err
) "Terminal is currently suspended")
349 (signal (car err
) (cdr err
)))))
350 (setf (terminal-parameter nil
'tty-mode-set-strings
)
351 (remq xterm-mouse-tracking-enable-sequence
352 (terminal-parameter nil
'tty-mode-set-strings
)))
353 (setf (terminal-parameter nil
'tty-mode-reset-strings
)
354 (remq xterm-mouse-tracking-disable-sequence
355 (terminal-parameter nil
'tty-mode-reset-strings
)))
356 (set-terminal-parameter terminal
'xterm-mouse-mode nil
)))
360 ;;; xt-mouse.el ends here