2001-07-16 12:23:00 +00:00
|
|
|
;;; xt-mouse.el --- support the mouse when emacs run in an xterm
|
1996-01-14 07:34:30 +00:00
|
|
|
|
2005-08-06 22:13:43 +00:00
|
|
|
;; Copyright (C) 1994, 2000, 2001, 2002, 2003,
|
2008-01-07 02:45:14 +00:00
|
|
|
;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
1997-05-27 21:26:13 +00:00
|
|
|
;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
|
1995-10-09 17:08:20 +00:00
|
|
|
;; Keywords: mouse, terminals
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1995-10-09 17:08:20 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
1995-10-09 17:08:20 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2000-02-22 11:57:31 +00:00
|
|
|
;;; Commentary:
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2005-01-17 09:54:56 +00:00
|
|
|
;; Enable mouse support when running inside an xterm.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
|
|
|
;; This is actually useful when you are running X11 locally, but is
|
|
|
|
;; working on remote machine over a modem line or through a gateway.
|
|
|
|
|
|
|
|
;; It works by translating xterm escape codes into generic emacs mouse
|
|
|
|
;; events so it should work with any package that uses the mouse.
|
|
|
|
|
1996-03-04 21:24:28 +00:00
|
|
|
;; You don't have to turn off xterm mode to use the normal xterm mouse
|
|
|
|
;; functionality, it is still available by holding down the SHIFT key
|
|
|
|
;; when you press the mouse button.
|
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
;;; Todo:
|
|
|
|
|
|
|
|
;; Support multi-click -- somehow.
|
|
|
|
|
2000-02-22 11:57:31 +00:00
|
|
|
;;; Code:
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2007-05-12 09:39:06 +00:00
|
|
|
(defvar xterm-mouse-debug-buffer nil)
|
|
|
|
|
1996-01-02 16:35:13 +00:00
|
|
|
(defvar xterm-mouse-last)
|
|
|
|
|
2005-01-12 06:13:08 +00:00
|
|
|
;; Mouse events symbols must have an 'event-kind property with
|
|
|
|
;; the value 'mouse-click.
|
2007-04-03 21:16:17 +00:00
|
|
|
(dolist (event-type '(mouse-1 mouse-2 mouse-3
|
|
|
|
M-down-mouse-1 M-down-mouse-2 M-down-mouse-3))
|
2005-01-12 06:13:08 +00:00
|
|
|
(put event-type 'event-kind 'mouse-click))
|
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
(defun xterm-mouse-translate (event)
|
2000-02-22 11:57:31 +00:00
|
|
|
"Read a click and release event from XTerm."
|
1995-10-09 17:08:20 +00:00
|
|
|
(save-excursion
|
|
|
|
(save-window-excursion
|
|
|
|
(deactivate-mark)
|
1996-01-02 16:35:13 +00:00
|
|
|
(let* ((xterm-mouse-last)
|
1995-11-11 04:07:39 +00:00
|
|
|
(down (xterm-mouse-event))
|
|
|
|
(down-command (nth 0 down))
|
|
|
|
(down-data (nth 1 down))
|
|
|
|
(down-where (nth 1 down-data))
|
|
|
|
(down-binding (key-binding (if (symbolp down-where)
|
|
|
|
(vector down-where down-command)
|
2001-07-25 17:42:56 +00:00
|
|
|
(vector down-command))))
|
|
|
|
(is-click (string-match "^mouse" (symbol-name (car down)))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
2001-07-25 17:42:56 +00:00
|
|
|
(unless is-click
|
|
|
|
(unless (and (eq (read-char) ?\e)
|
|
|
|
(eq (read-char) ?\[)
|
|
|
|
(eq (read-char) ?M))
|
|
|
|
(error "Unexpected escape sequence from XTerm")))
|
|
|
|
|
|
|
|
(let* ((click (if is-click down (xterm-mouse-event)))
|
2007-10-18 19:06:44 +00:00
|
|
|
;; (click-command (nth 0 click))
|
1995-11-11 04:07:39 +00:00
|
|
|
(click-data (nth 1 click))
|
|
|
|
(click-where (nth 1 click-data)))
|
|
|
|
(if (memq down-binding '(nil ignore))
|
|
|
|
(if (and (symbolp click-where)
|
2005-01-12 06:13:08 +00:00
|
|
|
(consp click-where))
|
1995-11-11 04:07:39 +00:00
|
|
|
(vector (list click-where click-data) click)
|
|
|
|
(vector click))
|
|
|
|
(setq unread-command-events
|
|
|
|
(if (eq down-where click-where)
|
|
|
|
(list click)
|
|
|
|
(list
|
|
|
|
;; Cheat `mouse-drag-region' with move event.
|
|
|
|
(list 'mouse-movement click-data)
|
|
|
|
;; Generate a drag event.
|
|
|
|
(if (symbolp down-where)
|
|
|
|
0
|
2000-02-22 11:57:31 +00:00
|
|
|
(list (intern (format "drag-mouse-%d"
|
|
|
|
(+ 1 xterm-mouse-last)))
|
2005-01-12 06:13:08 +00:00
|
|
|
down-data click-data)))))
|
2007-05-12 09:39:06 +00:00
|
|
|
(if xterm-mouse-debug-buffer
|
|
|
|
(print unread-command-events xterm-mouse-debug-buffer))
|
1995-11-11 04:07:39 +00:00
|
|
|
(if (and (symbolp down-where)
|
2005-01-12 06:13:08 +00:00
|
|
|
(consp down-where))
|
1995-11-11 04:07:39 +00:00
|
|
|
(vector (list down-where down-data) down)
|
|
|
|
(vector down))))))))
|
|
|
|
|
2005-09-11 03:06:33 +00:00
|
|
|
;; These two variables have been converted to terminal parameters.
|
|
|
|
;;
|
|
|
|
;;(defvar xterm-mouse-x 0
|
|
|
|
;; "Position of last xterm mouse event relative to the frame.")
|
|
|
|
;;
|
|
|
|
;;(defvar xterm-mouse-y 0
|
|
|
|
;; "Position of last xterm mouse event relative to the frame.")
|
1995-11-11 04:07:39 +00:00
|
|
|
|
2007-03-21 20:41:23 +00:00
|
|
|
(defvar xt-mouse-epoch nil)
|
|
|
|
|
1998-12-05 18:23:14 +00:00
|
|
|
;; Indicator for the xterm-mouse mode.
|
|
|
|
|
2000-02-22 11:57:31 +00:00
|
|
|
(defun xterm-mouse-position-function (pos)
|
|
|
|
"Bound to `mouse-position-function' in XTerm mouse mode."
|
2005-09-11 03:06:33 +00:00
|
|
|
(when (terminal-parameter nil 'xterm-mouse-x)
|
|
|
|
(setcdr pos (cons (terminal-parameter nil 'xterm-mouse-x)
|
|
|
|
(terminal-parameter nil 'xterm-mouse-y))))
|
2000-02-22 11:57:31 +00:00
|
|
|
pos)
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2003-04-07 14:04:51 +00:00
|
|
|
;; read xterm sequences above ascii 127 (#x7f)
|
|
|
|
(defun xterm-mouse-event-read ()
|
|
|
|
(let ((c (read-char)))
|
|
|
|
(if (< c 0)
|
|
|
|
(+ c #x8000000 128)
|
|
|
|
c)))
|
|
|
|
|
2007-05-25 14:34:35 +00:00
|
|
|
(defun xterm-mouse-truncate-wrap (f)
|
|
|
|
"Truncate with wrap-around."
|
|
|
|
(condition-case nil
|
|
|
|
;; First try the built-in truncate, in case there's no overflow.
|
|
|
|
(truncate f)
|
|
|
|
;; In case of overflow, do wraparound by hand.
|
|
|
|
(range-error
|
|
|
|
;; In our case, we wrap around every 3 days or so, so if we assume
|
|
|
|
;; a maximum of 65536 wraparounds, we're safe for a couple years.
|
|
|
|
;; Using a power of 2 makes rounding errors less likely.
|
|
|
|
(let* ((maxwrap (* 65536 2048))
|
|
|
|
(dbig (truncate (/ f maxwrap)))
|
|
|
|
(fdiff (- f (* 1.0 maxwrap dbig))))
|
|
|
|
(+ (truncate fdiff) (* maxwrap dbig))))))
|
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
(defun xterm-mouse-event ()
|
2000-02-22 11:57:31 +00:00
|
|
|
"Convert XTerm mouse event to Emacs mouse event."
|
2003-04-07 14:04:51 +00:00
|
|
|
(let* ((type (- (xterm-mouse-event-read) #o40))
|
|
|
|
(x (- (xterm-mouse-event-read) #o40 1))
|
|
|
|
(y (- (xterm-mouse-event-read) #o40 1))
|
2007-03-21 20:43:49 +00:00
|
|
|
;; Emulate timestamp information. This is accurate enough
|
|
|
|
;; for default value of mouse-1-click-follows-link (450msec).
|
2007-05-25 14:34:35 +00:00
|
|
|
(timestamp (xterm-mouse-truncate-wrap
|
|
|
|
(* 1000
|
|
|
|
(- (float-time)
|
|
|
|
(or xt-mouse-epoch
|
|
|
|
(setq xt-mouse-epoch (float-time)))))))
|
|
|
|
(mouse (intern
|
2001-07-25 17:42:56 +00:00
|
|
|
;; For buttons > 3, the release-event looks
|
|
|
|
;; differently (see xc/programs/xterm/button.c,
|
|
|
|
;; function EditorButton), and there seems to come in
|
|
|
|
;; a release-event only, no down-event.
|
|
|
|
(cond ((>= type 64)
|
|
|
|
(format "mouse-%d" (- type 60)))
|
2007-04-03 21:16:17 +00:00
|
|
|
((memq type '(8 9 10))
|
|
|
|
(setq xterm-mouse-last type)
|
|
|
|
(format "M-down-mouse-%d" (- type 7)))
|
|
|
|
((= type 11)
|
|
|
|
(format "mouse-%d" (- xterm-mouse-last 7)))
|
2001-07-25 17:42:56 +00:00
|
|
|
((= type 3)
|
2008-03-24 09:28:05 +00:00
|
|
|
;; For buttons > 5 xterm only reports a
|
|
|
|
;; button-release event. Avoid error by mapping
|
|
|
|
;; them all to mouse-1.
|
|
|
|
(format "mouse-%d" (+ 1 (or xterm-mouse-last 0))))
|
2001-07-25 17:42:56 +00:00
|
|
|
(t
|
|
|
|
(setq xterm-mouse-last type)
|
2005-01-12 06:13:08 +00:00
|
|
|
(format "down-mouse-%d" (+ 1 type))))))
|
2005-01-14 07:36:50 +00:00
|
|
|
(w (window-at x y))
|
|
|
|
(ltrb (window-edges w))
|
|
|
|
(left (nth 0 ltrb))
|
|
|
|
(top (nth 1 ltrb)))
|
|
|
|
|
2005-09-11 03:06:33 +00:00
|
|
|
(set-terminal-parameter nil 'xterm-mouse-x x)
|
|
|
|
(set-terminal-parameter nil 'xterm-mouse-y y)
|
2005-11-28 05:38:49 +00:00
|
|
|
(setq
|
|
|
|
last-input-event
|
2007-03-21 22:36:48 +00:00
|
|
|
(list mouse
|
2007-03-21 20:33:26 +00:00
|
|
|
(let ((event (if w
|
|
|
|
(posn-at-x-y (- x left) (- y top) w t)
|
|
|
|
(append (list nil 'menu-bar)
|
2007-04-03 21:16:17 +00:00
|
|
|
(nthcdr 2 (posn-at-x-y x y))))))
|
2007-03-21 20:33:26 +00:00
|
|
|
(setcar (nthcdr 3 event) timestamp)
|
|
|
|
event)))))
|
1995-10-09 17:08:20 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
2002-04-12 03:33:20 +00:00
|
|
|
(define-minor-mode xterm-mouse-mode
|
1995-10-09 17:08:20 +00:00
|
|
|
"Toggle XTerm mouse mode.
|
2007-08-08 07:40:09 +00:00
|
|
|
With prefix arg, turn XTerm mouse mode on if arg is positive, otherwise turn
|
|
|
|
it off.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2005-04-04 01:13:59 +00:00
|
|
|
Turn it on to use Emacs mouse commands, and off to use xterm mouse commands.
|
2005-04-12 23:05:22 +00:00
|
|
|
This works in terminal emulators compatible with xterm. It only
|
|
|
|
works for simple uses of the mouse. Basically, only non-modified
|
|
|
|
single clicks are supported. When turned on, the normal xterm
|
|
|
|
mouse functionality for such clicks is still available by holding
|
|
|
|
down the SHIFT key while pressing the mouse button."
|
|
|
|
:global t :group 'mouse
|
2008-03-29 02:15:56 +00:00
|
|
|
(let ((do-hook (if xterm-mouse-mode 'add-hook 'remove-hook)))
|
|
|
|
(funcall do-hook 'terminal-init-xterm-hook
|
|
|
|
'turn-on-xterm-mouse-tracking-on-terminal)
|
|
|
|
(funcall do-hook 'delete-terminal-functions
|
|
|
|
'turn-off-xterm-mouse-tracking-on-terminal)
|
|
|
|
(funcall do-hook 'suspend-tty-functions
|
|
|
|
'turn-off-xterm-mouse-tracking-on-terminal)
|
|
|
|
(funcall do-hook 'resume-tty-functions
|
|
|
|
'turn-on-xterm-mouse-tracking-on-terminal)
|
|
|
|
(funcall do-hook 'suspend-hook 'turn-off-xterm-mouse-tracking)
|
|
|
|
(funcall do-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking)
|
|
|
|
(funcall do-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking))
|
2002-04-12 03:33:20 +00:00
|
|
|
(if xterm-mouse-mode
|
|
|
|
;; Turn it on
|
2005-09-11 03:06:33 +00:00
|
|
|
(progn
|
2002-04-12 03:33:20 +00:00
|
|
|
(setq mouse-position-function #'xterm-mouse-position-function)
|
|
|
|
(turn-on-xterm-mouse-tracking))
|
|
|
|
;; Turn it off
|
|
|
|
(turn-off-xterm-mouse-tracking 'force)
|
|
|
|
(setq mouse-position-function nil)))
|
1995-10-09 17:08:20 +00:00
|
|
|
|
|
|
|
(defun turn-on-xterm-mouse-tracking ()
|
2000-02-22 11:57:31 +00:00
|
|
|
"Enable Emacs mouse tracking in xterm."
|
2008-06-10 21:56:13 +00:00
|
|
|
(dolist (terminal (terminal-list))
|
2007-10-18 19:06:44 +00:00
|
|
|
(turn-on-xterm-mouse-tracking-on-terminal terminal)))
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2002-04-12 03:33:20 +00:00
|
|
|
(defun turn-off-xterm-mouse-tracking (&optional force)
|
2001-12-04 16:13:04 +00:00
|
|
|
"Disable Emacs mouse tracking in xterm."
|
2008-06-10 21:56:13 +00:00
|
|
|
(dolist (terminal (terminal-list))
|
2007-10-18 19:06:44 +00:00
|
|
|
(turn-off-xterm-mouse-tracking-on-terminal terminal)))
|
2005-09-11 03:06:33 +00:00
|
|
|
|
2007-10-18 19:06:44 +00:00
|
|
|
(defun turn-on-xterm-mouse-tracking-on-terminal (&optional terminal)
|
2005-09-11 03:06:33 +00:00
|
|
|
"Enable xterm mouse tracking on TERMINAL."
|
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
* src/termhooks.h (struct device): Rename to `terminal'. Rename member
`next_device' to `next_terminal'.
(device_list): Rename to `terminal_list'.
(FRAME_DEVICE): Rename to `FRAME_TERMINAL'.
(DEVICE_TERMINAL_CODING): Rename to `TERMINAL_TERMINAL_CODING'.
(TERMINAL_KEYBOARD_CODING): Rename to `TERMINAL_KEYBOARD_CODING'.
(DEVICE_ACTIVE_P): Rename to `TERMINAL_ACTIVE_P'.
Update declarations and macro definitions.
* src/termchar.h (tty_display_info): Rename member `device' to `terminal'.
(FRAME_TTY): Update for renames.
* src/xterm.h (x_display_info): Rename member `device' to `terminal'.
* src/frame.h (frame): Rename `device' member to `terminal'.
(FRAME_KBOARD, FRAME_LIVE_P, Qdevice, Qdisplay_live_p):
Update for renames.
* src/lisp.h (set_process_environment): Rename to `set_global_environment'.
(device): Rename to `terminal'.
* src/dispextern.h: Update declarations and macro definitions.
* src/terminal.c (device_list): Rename to `terminal_list'.
(next_device_id): Rename to `next_terminal_id'.
(initial_device): Rename to `initial_terminal'.
(get_device): Rename to `get_terminal'.
(create_device): Rename to `create_terminal'.
(mark_devices): Rename to `mark_terminals'.
(delete_device): Rename to `delete_terminal'.
(Fdelete_display): Rename to `Fdelete_terminal'.
(Fframe_terminal): Move here from frame.c.
(Fdisplay_live_p): Rename to `Fterminal_live_p'.
(Fdisplay_list): Rename to `Fterminal_list'.
(Fdisplay_name): Rename to `Fterminal_name'.
(init_initial_device): Rename to `init_initial_terminal'.
(delete_initial_device): Rename to `delete_initial_terminal'.
(ring_bell, update_begin, update_end, set_terminal_window)
(cursor_to, raw_cursor_to, clear_to_end, clear_frame)
(clear_end_of_line, write_glyphs, insert_glyphs, delete_glyphs)
(ins_del_lines, get_terminal_param, store_terminal_param)
(Fterminal_parameters, Fterminal_parameter)
(Fmodify_terminal_parameters, Fset_terminal_parameter)
(syms_of_terminal): Update for renames.
* src/term.c (get_tty_device): Rename to `get_tty_terminal'. Update.
(Fdisplay_tty_type): Rename to `Ftty_type'.
(Fdisplay_controlling_tty_p): Rename to `Fcontrolling_tty_p'.
(delete_tty, tty_set_terminal_modes, tty_reset_terminal_modes)
(Ftty_display_color_p, Ftty_display_color_cells, get_named_tty)
(Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
(init_tty, maybe_fatal, delete_tty, syms_of_term): Update for rename.
* src/frame.c (Qdevice): Rename to `Qterminal'.
(Qdisplay_live_p): Rename to `Qterminal_live_p'.
(terminal_frame_count): Rename to `tty_frame_count'.
(Fframe_display): Move to terminal.c, rename to `Fframe_terminal'.
(make_frame_without_minibuffer, make_initial_frame)
(make_terminal_frame, Fmodify_frame_parameters)
(do_switch_frame, Fdelete_frame, Fmouse_position)
(Fmouse_pixel_position, Fraise_frame, Flower_frame)
(Fredirect_frame_focus, set_term_frame_name, syms_of_frame):
Update for renames.
* src/xdisp.c (message2_nolog, message3_nolog, redisplay_internal)
(set_vertical_scroll_bar, redisplay_window, check_x_display_info)
(x_set_scroll_bar_foreground, x_set_scroll_bar_background)
(Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
(Fx_display_pixel_width, Fx_display_pixel_height)
(Fx_display_planes, Fx_display_color_cells)
(Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
(Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
(Fx_display_backing_store, Fx_display_visual_class)
(Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
Update for renames.
* xterm.c (handle_one_xevent): Initialize `f' to NULL.
(x_delete_device): Rename to `x_delete_terminal'.
(x_create_device): Rename to `x_create_terminal'.
(XTset_terminal_modes, XTreset_terminal_modes)
(XTread_socket, x_connection_closed, x_term_init)
(x_term_init, x_delete_display): Update for renames.
* src/dispnew.c (Fredraw_frame, Fsend_string_to_terminal)
(Fsend_string_to_terminal, init_display): Update for renames.
* src/keyboard.c (push_frame_kboard, pop_kboard, pop_kboard)
(kbd_buffer_get_event, read_avail_input, tty_read_avail_input)
(interrupt_signal, Fset_output_flow_control)
(Fset_input_meta_mode, Fset_quit_char, delete_kboard)
(syms_of_keyboard): Update for renames.
* src/alloc.c (mark_devices): Update declaration.
(Fgarbage_collect): Update for renames.
* src/coding.c (Fset_terminal_coding_system_internal)
(Fterminal_coding_system4)
(Fset_keyboard_coding_system_internal)
(Fkeyboard_coding_system): Update for renames.
* src/data.c (Fterminal_local_value, Fset_terminal_local_value):
Update for renames.
* src/minibuf.c (read_minibuf): Update for renames.
* src/sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
* xselect.c (x_handle_selection_clear): Update for renames.
* lisp/files.el (save-buffers-kill-display): Rename to `save-buffers-kill-terminal'.
(save-buffers-kill-terminal, ctl-x-map): Update for renames.
* frame.el (make-frame): Rename 'device frame parameter to 'terminal. Update.
(frames-on-display-list, framep-on-display, suspend-frame): Update for renames.
(selected-display): Rename to `selected-terminal'.
* server.el (server-save-buffers-kill-display): Rename to
`server-save-buffers-kill-terminal'.
(server-delete-client, server-handle-delete-frame)
(server-handle-suspend-tty, server-process-filter)
(server-switch-buffer): Update for renames.
* startup.el (normal-splash-screen, normal-splash-screen): Update for renames.
* talk.el (talk): Update for renames.
* termdev.el (terminal-id): Update for renames.
* xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
(turn-off-xterm-mouse-tracking-on-terminal)
(xterm-mouse-handle-delete-frame): Update for renames.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-471
2005-12-29 18:20:26 +00:00
|
|
|
(when (and xterm-mouse-mode (eq t (terminal-live-p terminal)))
|
2007-10-18 19:06:44 +00:00
|
|
|
(unless (terminal-parameter terminal 'xterm-mouse-mode)
|
|
|
|
;; Simulate selecting a terminal by selecting one of its frames ;-(
|
|
|
|
(with-selected-frame (car (frames-on-display-list terminal))
|
|
|
|
(define-key input-decode-map "\e[M" 'xterm-mouse-translate))
|
|
|
|
(set-terminal-parameter terminal 'xterm-mouse-mode t))
|
2005-09-11 03:06:33 +00:00
|
|
|
(send-string-to-terminal "\e[?1000h" terminal)))
|
|
|
|
|
|
|
|
(defun turn-off-xterm-mouse-tracking-on-terminal (terminal)
|
|
|
|
"Disable xterm mouse tracking on TERMINAL."
|
2007-10-18 19:06:44 +00:00
|
|
|
;; Only send the disable command to those terminals to which we've already
|
|
|
|
;; sent the enable command.
|
|
|
|
(when (and (terminal-parameter terminal 'xterm-mouse-mode)
|
|
|
|
(eq t (terminal-live-p terminal)))
|
|
|
|
;; We could remove the key-binding and unset the `xterm-mouse-mode'
|
|
|
|
;; terminal parameter, but it seems less harmful to send this escape
|
|
|
|
;; command too many times (or to catch an unintended key sequence), than
|
|
|
|
;; to send it too few times (or to fail to let xterm-mouse events
|
|
|
|
;; pass by untranslated).
|
2005-09-11 03:06:33 +00:00
|
|
|
(send-string-to-terminal "\e[?1000l" terminal)))
|
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
(provide 'xt-mouse)
|
|
|
|
|
2007-05-25 14:34:35 +00:00
|
|
|
;; arch-tag: 84962d4e-fae9-4c13-a9d7-ef4925a4ac03
|
1995-10-09 17:08:20 +00:00
|
|
|
;;; xt-mouse.el ends here
|