]> code.delx.au - gnu-emacs/blob - lisp/xt-mouse.el
(python-mode): Skip comments when parsing.
[gnu-emacs] / lisp / xt-mouse.el
1 ;;; xt-mouse.el --- support the mouse when emacs run in an xterm
2
3 ;; Copyright (C) 1994, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
7 ;; Keywords: mouse, terminals
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; Enable mouse support when running inside an xterm.
29
30 ;; This is actually useful when you are running X11 locally, but is
31 ;; working on remote machine over a modem line or through a gateway.
32
33 ;; It works by translating xterm escape codes into generic emacs mouse
34 ;; events so it should work with any package that uses the mouse.
35
36 ;; You don't have to turn off xterm mode to use the normal xterm mouse
37 ;; functionality, it is still available by holding down the SHIFT key
38 ;; when you press the mouse button.
39
40 ;;; Todo:
41
42 ;; Support multi-click -- somehow.
43
44 ;;; Code:
45
46 (define-key function-key-map "\e[M" 'xterm-mouse-translate)
47
48 (defvar xterm-mouse-last)
49
50 ;; Mouse events symbols must have an 'event-kind property with
51 ;; the value 'mouse-click.
52 (dolist (event-type '(mouse-1 mouse-2 mouse-3))
53 (put event-type 'event-kind 'mouse-click))
54
55 (defun xterm-mouse-translate (event)
56 "Read a click and release event from XTerm."
57 (save-excursion
58 (save-window-excursion
59 (deactivate-mark)
60 (let* ((xterm-mouse-last)
61 (down (xterm-mouse-event))
62 (down-command (nth 0 down))
63 (down-data (nth 1 down))
64 (down-where (nth 1 down-data))
65 (down-binding (key-binding (if (symbolp down-where)
66 (vector down-where down-command)
67 (vector down-command))))
68 (is-click (string-match "^mouse" (symbol-name (car down)))))
69
70 (unless is-click
71 (unless (and (eq (read-char) ?\e)
72 (eq (read-char) ?\[)
73 (eq (read-char) ?M))
74 (error "Unexpected escape sequence from XTerm")))
75
76 (let* ((click (if is-click down (xterm-mouse-event)))
77 (click-command (nth 0 click))
78 (click-data (nth 1 click))
79 (click-where (nth 1 click-data)))
80 (if (memq down-binding '(nil ignore))
81 (if (and (symbolp click-where)
82 (consp click-where))
83 (vector (list click-where click-data) click)
84 (vector click))
85 (setq unread-command-events
86 (if (eq down-where click-where)
87 (list click)
88 (list
89 ;; Cheat `mouse-drag-region' with move event.
90 (list 'mouse-movement click-data)
91 ;; Generate a drag event.
92 (if (symbolp down-where)
93 0
94 (list (intern (format "drag-mouse-%d"
95 (+ 1 xterm-mouse-last)))
96 down-data click-data)))))
97 (if (and (symbolp down-where)
98 (consp down-where))
99 (vector (list down-where down-data) down)
100 (vector down))))))))
101
102 (defvar xterm-mouse-x 0
103 "Position of last xterm mouse event relative to the frame.")
104
105 (defvar xterm-mouse-y 0
106 "Position of last xterm mouse event relative to the frame.")
107
108 (defvar xt-mouse-epoch nil)
109
110 ;; Indicator for the xterm-mouse mode.
111
112 (defun xterm-mouse-position-function (pos)
113 "Bound to `mouse-position-function' in XTerm mouse mode."
114 (setcdr pos (cons xterm-mouse-x xterm-mouse-y))
115 pos)
116
117 ;; read xterm sequences above ascii 127 (#x7f)
118 (defun xterm-mouse-event-read ()
119 (let ((c (read-char)))
120 (if (< c 0)
121 (+ c #x8000000 128)
122 c)))
123
124 (defun xterm-mouse-event ()
125 "Convert XTerm mouse event to Emacs mouse event."
126 (let* ((type (- (xterm-mouse-event-read) #o40))
127 (x (- (xterm-mouse-event-read) #o40 1))
128 (y (- (xterm-mouse-event-read) #o40 1))
129 ;; Emulate timestamp information. This is accurate enough
130 ;; for default value of mouse-1-click-follows-link (450msec).
131 (timestamp (truncate
132 (* 1000
133 (- (float-time)
134 (or xt-mouse-epoch
135 (setq xt-mouse-epoch (float-time)))))))
136 (mouse (intern
137 ;; For buttons > 3, the release-event looks
138 ;; differently (see xc/programs/xterm/button.c,
139 ;; function EditorButton), and there seems to come in
140 ;; a release-event only, no down-event.
141 (cond ((>= type 64)
142 (format "mouse-%d" (- type 60)))
143 ((= type 3)
144 (format "mouse-%d" (+ 1 xterm-mouse-last)))
145 (t
146 (setq xterm-mouse-last type)
147 (format "down-mouse-%d" (+ 1 type))))))
148 (w (window-at x y))
149 (ltrb (window-edges w))
150 (left (nth 0 ltrb))
151 (top (nth 1 ltrb)))
152
153 (setq xterm-mouse-x x
154 xterm-mouse-y y)
155 (setq
156 last-input-event
157 (list mouse
158 (let ((event (if w
159 (posn-at-x-y (- x left) (- y top) w t)
160 (append (list nil 'menu-bar)
161 (nthcdr 2 (posn-at-x-y x y w t))))))
162 (setcar (nthcdr 3 event) timestamp)
163 event)))))
164
165 ;;;###autoload
166 (define-minor-mode xterm-mouse-mode
167 "Toggle XTerm mouse mode.
168 With prefix arg, turn XTerm mouse mode on iff arg is positive.
169
170 Turn it on to use Emacs mouse commands, and off to use xterm mouse commands.
171 This works in terminal emulators compatible with xterm. It only
172 works for simple uses of the mouse. Basically, only non-modified
173 single clicks are supported. When turned on, the normal xterm
174 mouse functionality for such clicks is still available by holding
175 down the SHIFT key while pressing the mouse button."
176 :global t :group 'mouse
177 (if xterm-mouse-mode
178 ;; Turn it on
179 (unless window-system
180 (setq mouse-position-function #'xterm-mouse-position-function)
181 (turn-on-xterm-mouse-tracking))
182 ;; Turn it off
183 (turn-off-xterm-mouse-tracking 'force)
184 (setq mouse-position-function nil)))
185
186 (defun turn-on-xterm-mouse-tracking ()
187 "Enable Emacs mouse tracking in xterm."
188 (if xterm-mouse-mode
189 (send-string-to-terminal "\e[?1000h")))
190
191 (defun turn-off-xterm-mouse-tracking (&optional force)
192 "Disable Emacs mouse tracking in xterm."
193 (if (or force xterm-mouse-mode)
194 (send-string-to-terminal "\e[?1000l")))
195
196 ;; Restore normal mouse behaviour outside Emacs.
197 (add-hook 'suspend-hook 'turn-off-xterm-mouse-tracking)
198 (add-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking)
199 (add-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking)
200
201 (provide 'xt-mouse)
202
203 ;;; arch-tag: 84962d4e-fae9-4c13-a9d7-ef4925a4ac03
204 ;;; xt-mouse.el ends here