Mercurial > emacs
annotate lisp/xt-mouse.el @ 14255:e84b5426ed37
(UNEXEC): unexsni.o renamed from unexelfsni.o.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 23 Jan 1996 17:03:55 +0000 |
parents | 83f275dcd93a |
children | 01ca1fbb38bc |
rev | line source |
---|---|
13163 | 1 ;;; xt-mouse.el --- Support the mouse when emacs run in an xterm. |
14169 | 2 |
13163 | 3 ;; Copyright (C) 1994 Free Software Foundation |
4 | |
5 ;; Author: Per Abrahamsen <abraham@iesd.auc.dk> | |
6 ;; Keywords: mouse, terminals | |
7 | |
14169 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13163 | 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. | |
14169 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13163 | 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. | |
14169 | 19 |
13163 | 20 ;; You should have received a copy of the GNU General Public License |
14169 | 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. | |
13163 | 24 |
25 ;;; Comments: | |
26 | |
27 ;; Enable mouse support when running inside an xterm. | |
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 | |
35 ;;; Todo: | |
36 | |
37 ;; Support multi-click -- somehow. | |
38 | |
39 ;; Clicking on the mode-line does not work, although it should. | |
40 | |
41 ;;; Code: | |
42 | |
43 (define-key function-key-map "\e[M" 'xterm-mouse-translate) | |
44 | |
13920
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
45 (defvar xterm-mouse-last) |
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
46 |
13163 | 47 (defun xterm-mouse-translate (event) |
48 ;; Read a click and release event from XTerm. | |
49 (save-excursion | |
50 (save-window-excursion | |
51 (deactivate-mark) | |
13920
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
52 (let* ((xterm-mouse-last) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
53 (down (xterm-mouse-event)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
54 (down-command (nth 0 down)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
55 (down-data (nth 1 down)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
56 (down-where (nth 1 down-data)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
57 (down-binding (key-binding (if (symbolp down-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
58 (vector down-where down-command) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
59 (vector down-command))))) |
13163 | 60 (or (and (eq (read-char) ?\e) |
61 (eq (read-char) ?\[) | |
62 (eq (read-char) ?M)) | |
63 (error "Unexpected escape sequence from XTerm")) | |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
64 (let* ((click (xterm-mouse-event)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
65 (click-command (nth 0 click)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
66 (click-data (nth 1 click)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
67 (click-where (nth 1 click-data))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
68 (if (memq down-binding '(nil ignore)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
69 (if (and (symbolp click-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
70 (not (eq 'menu-bar click-where))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
71 (vector (list click-where click-data) click) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
72 (vector click)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
73 (setq unread-command-events |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
74 (if (eq down-where click-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
75 (list click) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
76 (list |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
77 ;; Cheat `mouse-drag-region' with move event. |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
78 (list 'mouse-movement click-data) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
79 ;; Generate a drag event. |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
80 (if (symbolp down-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
81 0 |
13920
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
82 (list (intern (concat "drag-mouse-" (+ 1 xterm-mouse-last))) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
83 down-data click-data)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
84 ))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
85 (if (and (symbolp down-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
86 (not (eq 'menu-bar down-where))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
87 (vector (list down-where down-data) down) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
88 (vector down)))))))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
89 |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
90 (defvar xterm-mouse-x 0 |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
91 "Position of last xterm mouse event relative to the frame.") |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
92 |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
93 (defvar xterm-mouse-y 0 |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
94 "Position of last xterm mouse event relative to the frame.") |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
95 |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
96 (defadvice mouse-position (around xterm-mouse activate) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
97 "Use last key from xterm-mouse-mode if available." |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
98 (let ((answer ad-do-it)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
99 (setq ad-return-value |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
100 (if xterm-mouse-mode |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
101 (cons (car answer) (cons xterm-mouse-x xterm-mouse-y)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
102 answer)))) |
13163 | 103 |
104 (defun xterm-mouse-event () | |
105 ;; Convert XTerm mouse event to Emacs mouse event. | |
106 (let* ((type (- (read-char) ? )) | |
107 (x (- (read-char) ? 1)) | |
108 (y (- (read-char) ? 1)) | |
109 (point (cons x y)) | |
110 (window (window-at x y)) | |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
111 (where (if window |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
112 (coordinates-in-window-p point window) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
113 'menu-bar)) |
13163 | 114 (pos (if (consp where) |
115 (progn | |
116 (select-window window) | |
117 (goto-char (window-start window)) | |
118 (move-to-window-line (cdr where)) | |
119 (move-to-column (+ (car where) (current-column) | |
120 (max 0 (1- (window-hscroll))))) | |
121 (point)) | |
122 where)) | |
123 (mouse (intern (if (eq type 3) | |
13920
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
124 (concat "mouse-" (+ 1 xterm-mouse-last)) |
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
125 (setq xterm-mouse-last type) |
13163 | 126 (concat "down-mouse-" (+ 1 type)))))) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
127 (setq xterm-mouse-x x |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
128 xterm-mouse-y y) |
13163 | 129 (list mouse |
130 (list window pos point | |
131 (/ (nth 2 (current-time)) 1000))))) | |
132 | |
133 ;; Indicator for the xterm-mouse mode. | |
134 (defvar xterm-mouse-mode nil) | |
135 | |
136 (or (assq 'xterm-mouse-mode minor-mode-alist) | |
137 (setq minor-mode-alist | |
138 (cons '(xterm-mouse-mode (" Mouse")) minor-mode-alist))) | |
139 | |
140 ;;;###autoload | |
141 (defun xterm-mouse-mode (arg) | |
142 "Toggle XTerm mouse mode. | |
143 With prefix arg, turn XTerm mouse mode on iff arg is positive. | |
144 | |
145 Turn it on to use emacs mouse commands, and off to use xterm mouse commands." | |
146 (interactive "P") | |
147 (if (or (and (null arg) xterm-mouse-mode) | |
148 (<= (prefix-numeric-value arg) 0)) | |
149 ;; Turn it off | |
150 (if xterm-mouse-mode | |
151 (progn | |
152 (turn-off-xterm-mouse-tracking) | |
153 (setq xterm-mouse-mode nil) | |
154 (set-buffer-modified-p (buffer-modified-p)))) | |
155 ;;Turn it on | |
156 (if xterm-mouse-mode | |
157 () | |
158 (setq xterm-mouse-mode t) | |
159 (turn-on-xterm-mouse-tracking) | |
160 (set-buffer-modified-p (buffer-modified-p))))) | |
161 | |
162 (defun turn-on-xterm-mouse-tracking () | |
163 ;; Enable emacs mouse tracking in xterm. | |
164 (if xterm-mouse-mode | |
165 (send-string-to-terminal "\e[?1000h"))) | |
166 | |
167 (defun turn-off-xterm-mouse-tracking () | |
168 ;; Disable disable emacs mouse tracking in xterm. | |
169 (if xterm-mouse-mode | |
170 (send-string-to-terminal "\e[?1000l"))) | |
171 | |
172 ;; Restore normal mouse behaviour outside Emacs. | |
173 (add-hook 'suspend-hook 'turn-off-xterm-mouse-tracking) | |
174 (add-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking) | |
175 (add-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking) | |
176 | |
177 (provide 'xt-mouse) | |
178 | |
179 ;;; xt-mouse.el ends here |