[hackers] [st] Implementing mouse focus and all events. || Christoph Lohmann

From: <git_AT_suckless.org>
Date: Sat, 01 Jun 2013 13:08:30 +0200

commit 405fd89ac1d333be79325417c973a07ccad67453
Author: Christoph Lohmann <20h_AT_r-36.net>
Date: Sat Jun 1 13:06:53 2013 +0200

    Implementing mouse focus and all events.

diff --git a/st.c b/st.c
index 3fcf543..321b58d 100644
--- a/st.c
+++ b/st.c
_AT_@ -118,6 +118,7 @@ enum term_mode {
         MODE_8BIT = 8192,
         MODE_BLINK = 16384,
         MODE_FBLINK = 32768,
+ MODE_FOCUS = 65536,
 };
 
 enum escape_state {
_AT_@ -1782,6 +1783,13 @@ tsetmode(bool priv, bool set, int *args, int narg) {
                                 MODBIT(term.mode, set, MODE_MOUSEMOTION);
                                 MODBIT(term.mode, 0, MODE_MOUSEBTN);
                                 break;
+ case 1003: /* 1003: enable all mouse reports */
+ MODBIT(term.mode, set, MODE_MOUSEMOTION);
+ MODBIT(term.mode, set, MODE_MOUSEBTN);
+ break;
+ case 1004:
+ MODBIT(term.mode, set, MODE_FOCUS);
+ break;
                         case 1006:
                                 MODBIT(term.mode, set, MODE_MOUSESGR);
                                 break;
_AT_@ -1807,6 +1815,9 @@ tsetmode(bool priv, bool set, int *args, int narg) {
                         case 1048:
                                 tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
                                 break;
+ case 9: /* X10 compatibility mode */
+ case 1001: /* mouse highlight mode; can hang the
+ terminal when implemented. */
                         default:
                                 fprintf(stderr,
                                         "erresc: unknown private set/reset mode %d
",
_AT_@ -3309,9 +3320,13 @@ focus(XEvent *ev) {
                 XSetICFocus(xw.xic);
                 xw.state |= WIN_FOCUSED;
                 xseturgency(0);
+ if(IS_SET(MODE_FOCUS))
+ ttywrite("", 3);
         } else {
                 XUnsetICFocus(xw.xic);
                 xw.state &= ~WIN_FOCUSED;
+ if(IS_SET(MODE_FOCUS))
+ ttywrite("", 3);
         }
 }
 
Received on Sat Jun 01 2013 - 13:08:30 CEST

This archive was generated by hypermail 2.3.0 : Sat Jun 01 2013 - 13:12:09 CEST