Mention the effect of eval-expression-print-length and
[bpt/emacs.git] / lisp / xt-mouse.el
CommitLineData
e8af40ee 1;;; xt-mouse.el --- support the mouse when emacs run in an xterm
b578f267 2
b2497d2e 3;; Copyright (C) 1994, 2000 Free Software Foundation
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
10;; GNU Emacs is free software; you can redistribute it and/or modify
fe3acbd4
RS
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; 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
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
fe3acbd4 24
b2497d2e 25;;; Commentary:
fe3acbd4 26
387a2345 27;; Enable mouse support when running inside an xterm or Linux console.
fe3acbd4
RS
28
29;; This is actually useful when you are running X11 locally, but is
30;; working on remote machine over a modem line or through a gateway.
31
32;; It works by translating xterm escape codes into generic emacs mouse
33;; events so it should work with any package that uses the mouse.
34
387a2345
RS
35;; The xterm mouse escape codes are supposedly also supported by the
36;; Linux console, but I have not been able to verify this.
37
38;; You don't have to turn off xterm mode to use the normal xterm mouse
39;; functionality, it is still available by holding down the SHIFT key
40;; when you press the mouse button.
41
fe3acbd4
RS
42;;; Todo:
43
44;; Support multi-click -- somehow.
45
46;; Clicking on the mode-line does not work, although it should.
47
b2497d2e 48;;; Code:
fe3acbd4 49
fe3acbd4
RS
50(define-key function-key-map "\e[M" 'xterm-mouse-translate)
51
599431ab
RS
52(defvar xterm-mouse-last)
53
fe3acbd4 54(defun xterm-mouse-translate (event)
b2497d2e 55 "Read a click and release event from XTerm."
fe3acbd4
RS
56 (save-excursion
57 (save-window-excursion
58 (deactivate-mark)
599431ab 59 (let* ((xterm-mouse-last)
cec01ccb
RS
60 (down (xterm-mouse-event))
61 (down-command (nth 0 down))
62 (down-data (nth 1 down))
63 (down-where (nth 1 down-data))
64 (down-binding (key-binding (if (symbolp down-where)
65 (vector down-where down-command)
66 (vector down-command)))))
fe3acbd4
RS
67 (or (and (eq (read-char) ?\e)
68 (eq (read-char) ?\[)
69 (eq (read-char) ?M))
70 (error "Unexpected escape sequence from XTerm"))
cec01ccb
RS
71 (let* ((click (xterm-mouse-event))
72 (click-command (nth 0 click))
73 (click-data (nth 1 click))
74 (click-where (nth 1 click-data)))
75 (if (memq down-binding '(nil ignore))
76 (if (and (symbolp click-where)
77 (not (eq 'menu-bar click-where)))
78 (vector (list click-where click-data) click)
79 (vector click))
80 (setq unread-command-events
81 (if (eq down-where click-where)
82 (list click)
83 (list
84 ;; Cheat `mouse-drag-region' with move event.
85 (list 'mouse-movement click-data)
86 ;; Generate a drag event.
87 (if (symbolp down-where)
88 0
b2497d2e
DL
89 (list (intern (format "drag-mouse-%d"
90 (+ 1 xterm-mouse-last)))
cec01ccb
RS
91 down-data click-data))
92 )))
93 (if (and (symbolp down-where)
94 (not (eq 'menu-bar down-where)))
95 (vector (list down-where down-data) down)
96 (vector down))))))))
97
98(defvar xterm-mouse-x 0
99 "Position of last xterm mouse event relative to the frame.")
100
101(defvar xterm-mouse-y 0
102 "Position of last xterm mouse event relative to the frame.")
103
54eba353
MR
104;; Indicator for the xterm-mouse mode.
105(defvar xterm-mouse-mode nil)
106
b2497d2e
DL
107(defun xterm-mouse-position-function (pos)
108 "Bound to `mouse-position-function' in XTerm mouse mode."
109 (setcdr pos (cons xterm-mouse-x xterm-mouse-y))
110 pos)
fe3acbd4
RS
111
112(defun xterm-mouse-event ()
b2497d2e 113 "Convert XTerm mouse event to Emacs mouse event."
fe3acbd4
RS
114 (let* ((type (- (read-char) ? ))
115 (x (- (read-char) ? 1))
116 (y (- (read-char) ? 1))
117 (point (cons x y))
118 (window (window-at x y))
b2497d2e 119 (where (if window
cec01ccb
RS
120 (coordinates-in-window-p point window)
121 'menu-bar))
fe3acbd4
RS
122 (pos (if (consp where)
123 (progn
124 (select-window window)
125 (goto-char (window-start window))
9501b986
EZ
126 (move-to-window-line (-
127 (cdr where)
128 (if (or header-line-format
129 default-header-line-format)
130 1
131 0)))
fe3acbd4 132 (move-to-column (+ (car where) (current-column)
c27f1e01
RS
133 (if (string-match "\\` \\*Minibuf"
134 (buffer-name))
135 (- (minibuffer-prompt-width))
136 0)
fe3acbd4
RS
137 (max 0 (1- (window-hscroll)))))
138 (point))
139 where))
140 (mouse (intern (if (eq type 3)
ebc4ab7c 141 (format "mouse-%d" (+ 1 xterm-mouse-last))
599431ab 142 (setq xterm-mouse-last type)
ebc4ab7c 143 (format "down-mouse-%d" (+ 1 type))))))
cec01ccb
RS
144 (setq xterm-mouse-x x
145 xterm-mouse-y y)
fe3acbd4
RS
146 (list mouse
147 (list window pos point
148 (/ (nth 2 (current-time)) 1000)))))
149
fe3acbd4
RS
150(or (assq 'xterm-mouse-mode minor-mode-alist)
151 (setq minor-mode-alist
152 (cons '(xterm-mouse-mode (" Mouse")) minor-mode-alist)))
153
154;;;###autoload
155(defun xterm-mouse-mode (arg)
156 "Toggle XTerm mouse mode.
157With prefix arg, turn XTerm mouse mode on iff arg is positive.
158
159Turn it on to use emacs mouse commands, and off to use xterm mouse commands."
160 (interactive "P")
161 (if (or (and (null arg) xterm-mouse-mode)
162 (<= (prefix-numeric-value arg) 0))
163 ;; Turn it off
164 (if xterm-mouse-mode
165 (progn
166 (turn-off-xterm-mouse-tracking)
b2497d2e
DL
167 (setq xterm-mouse-mode nil
168 mouse-position-function nil)
fe3acbd4
RS
169 (set-buffer-modified-p (buffer-modified-p))))
170 ;;Turn it on
47da5efa 171 (unless (or window-system xterm-mouse-mode)
b2497d2e
DL
172 (setq xterm-mouse-mode t
173 mouse-position-function #'xterm-mouse-position-function)
fe3acbd4
RS
174 (turn-on-xterm-mouse-tracking)
175 (set-buffer-modified-p (buffer-modified-p)))))
176
177(defun turn-on-xterm-mouse-tracking ()
b2497d2e 178 "Enable Emacs mouse tracking in xterm."
fe3acbd4
RS
179 (if xterm-mouse-mode
180 (send-string-to-terminal "\e[?1000h")))
181
182(defun turn-off-xterm-mouse-tracking ()
b2497d2e 183 "Disable disable Emacs mouse tracking in xterm."
fe3acbd4
RS
184 (if xterm-mouse-mode
185 (send-string-to-terminal "\e[?1000l")))
186
187;; Restore normal mouse behaviour outside Emacs.
188(add-hook 'suspend-hook 'turn-off-xterm-mouse-tracking)
189(add-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking)
190(add-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking)
191
192(provide 'xt-mouse)
193
194;;; xt-mouse.el ends here