mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Tammo Block <tammo.block@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jslaby@suse.com>
Subject: [PATCH v1 3/6] vt/vt: Enable mode change via escape sequence
Date: Tue, 30 Jun 2020 09:11:04 +0200	[thread overview]
Message-ID: <eecb16842e26e1fe7ca6a4e70ead40b69efe4d0b.1593499846.git.tammo.block@gmail.com> (raw)
In-Reply-To: <cover.1593499846.git.tammo.block@gmail.com>

This enables userspace to enable one of the mouse protocols and choose
one of the new event types by escape sequences.

They are not a bitmasks, but mutually exclusive.

And don't forget to reset protocol value also if resetting vc.

Signed-off-by: Tammo Block <tammo.block@gmail.com>
---
 drivers/tty/vt/vt.c | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index 673177d4e859..e2324d8e4e74 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -1896,13 +1896,25 @@ static void set_mode(struct vc_data *vc, int on_off)
 					clr_kbd(vc, decarm);
 				break;
 			case 9:
-				vc->vc_report_mouse = on_off ? 1 : 0;
+				vc->vc_report_mouse = on_off * TIOCL_REPORTBTNPRESS;
 				break;
 			case 25:		/* Cursor on/off */
 				vc->vc_deccm = on_off;
 				break;
 			case 1000:
-				vc->vc_report_mouse = on_off ? 2 : 0;
+				vc->vc_report_mouse = on_off * TIOCL_REPORTRELEASE;
+				break;
+			case 1002:
+				vc->vc_report_mouse = on_off * TIOCL_REPORTDRAG;
+				break;
+			case 1003:
+				vc->vc_report_mouse = on_off * TIOCL_REPORTANYMOVE;
+				break;
+			case 1006:		/* SRG protocol */
+				vc->vc_protocol_mouse = on_off * 1;
+				break;
+			case 1015:		/* URXVT protocol */
+				vc->vc_protocol_mouse = on_off * 2;
 				break;
 			}
 		} else {
@@ -2067,6 +2079,7 @@ static void reset_terminal(struct vc_data *vc, int do_clear)
 	vc->state.charset	= 0;
 	vc->vc_need_wrap	= 0;
 	vc->vc_report_mouse	= 0;
+	vc->vc_protocol_mouse	= 0;
 	vc->vc_utf              = default_utf8;
 	vc->vc_utf_count	= 0;
 
-- 
2.27.0


  parent reply	other threads:[~2020-06-30  7:11 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-30  7:09 [PATCH v1 0/6] vt: Add SRG mouse reporting features Tammo Block
2020-06-30  7:10 ` [PATCH v1 1/6] tiocl.h: Change/Add defines for mouse report Tammo Block
2020-06-30  7:55   ` Jiri Slaby
2020-06-30  7:10 ` [PATCH v1 2/6] console_struct.h: Two members " Tammo Block
2020-06-30  7:11 ` Tammo Block [this message]
2020-06-30  7:11 ` [PATCH v1 4/6] vt/vt: Add SRG mouse reporting protocol Tammo Block
2020-06-30  7:59   ` Jiri Slaby
2020-06-30  7:11 ` [PATCH v1 5/6] vt/vt: Add URXVT " Tammo Block
2020-06-30  7:12 ` [PATCH v1 6/6] Documentation: Describe console mouse reporting Tammo Block
2020-06-30  8:16   ` Jiri Slaby
2020-06-30 16:14   ` Randy Dunlap

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=eecb16842e26e1fe7ca6a4e70ead40b69efe4d0b.1593499846.git.tammo.block@gmail.com \
    --to=tammo.block@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jslaby@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome