[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Advice on mouse handling
From: |
Thomas Dickey |
Subject: |
Re: Advice on mouse handling |
Date: |
Sat, 6 Jul 2019 16:57:51 -0400 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Fri, Jul 05, 2019 at 12:47:04PM -0500, Bryan Christ wrote:
> Thomas,
>
> I've read the xterm documentation you authored and have reviewed the code
> in lib_mouse.c in order to add VT200 mouse support to my emulator. The
> following code works well on the first mouse click, but subsequent mouse
> clicks don't seem to work at all. After putting some debug code inside the
> conditional, I can see that each click is indeed firing and the x and y
> coords are updating. I'm at a loss as to why writing that string to the
> underlying pty works fine once but not thereafter. The guest application
> is built on ncurses so it would seem that if the sequence was decoded once
> correctly it should be again subsequent times.
>
> case KEY_MOUSE:
> {
> if(has_mouse() == TRUE && vterm->mouse == VTERM_MOUSE_VT200)
> {
> if(getmouse(&mouse_event) == OK)
> {
> if(mouse_event.bstate & BUTTON1_CLICKED)
> {
> dynbuf = strdup_printf("\e[M%c%c%c\e[M%c%c%c",
> (char)(32 + 0 + 0),
> (char)(32 + mouse_event.x),
> (char)(32 + mouse_event.y),
> (char)(32 + 0 + 0x40),
> (char)(32 + mouse_event.x),
> (char)(32 + mouse_event.y));
> }
perhaps it's not flushed, or else what's reading it expects a regular
ANSI control (like a cursor-key) which ends with a character like 'D' or '~'.
> buffer = dynbuf;
> }
> }
> break;
>
> --
> Bryan
> <><
> _______________________________________________
> Bug-ncurses mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/bug-ncurses
--
Thomas E. Dickey <address@hidden>
https://invisible-island.net
ftp://ftp.invisible-island.net
signature.asc
Description: PGP signature
- Advice on mouse handling, Bryan Christ, 2019/07/05
- Re: Advice on mouse handling,
Thomas Dickey <=
- Re: Advice on mouse handling, Bryan Christ, 2019/07/08
- Re: Advice on mouse handling, Thomas Dickey, 2019/07/08
- Re: Advice on mouse handling, Bryan Christ, 2019/07/09
- Re: Advice on mouse handling, Thomas Dickey, 2019/07/10
- Re: Advice on mouse handling, Bryan Christ, 2019/07/10
- Re: Advice on mouse handling, Pavel Stehule, 2019/07/10
- Re: Advice on mouse handling, Bryan Christ, 2019/07/10
- Re: Advice on mouse handling, Pavel Stehule, 2019/07/10
- Re: Advice on mouse handling, Pavel Stehule, 2019/07/10
- Re: Advice on mouse handling, Bryan Christ, 2019/07/10