X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=terminal.h;h=2ed9e6ef5e74900e999285f4799063a7fb4c4cee;hb=2718165f013bde5811ec37022fb5bfbdbb984895;hp=5c9658b8ce93b8d50be7474cd7c3cecaf2dc377f;hpb=21b04f5e00e21b4ffbb790d23c26e25b7f977ba2;p=PuTTY.git diff --git a/terminal.h b/terminal.h index 5c9658b8..2ed9e6ef 100644 --- a/terminal.h +++ b/terminal.h @@ -152,6 +152,8 @@ struct terminal_tag { int big_cursor; int xterm_mouse; /* send mouse messages to host */ + int xterm_extended_mouse; + int urxvt_extended_mouse; int mouse_is_down; /* used while tracking mouse buttons */ int bracketed_paste; @@ -170,7 +172,7 @@ struct terminal_tag { #define ARGS_MAX 32 /* max # of esc sequence arguments */ #define ARG_DEFAULT 0 /* if an arg isn't specified */ #define def(a,d) ( (a) == ARG_DEFAULT ? (d) : (a) ) - int esc_args[ARGS_MAX]; + unsigned esc_args[ARGS_MAX]; int esc_nargs; int esc_query; #define ANSI(x,y) ((x)+((y)<<8)) @@ -220,8 +222,7 @@ struct terminal_tag { int attr_mask; wchar_t *paste_buffer; - int paste_len, paste_pos, paste_hold; - long last_paste; + int paste_len, paste_pos; void (*resize_fn)(void *, int, int); void *resize_ctx; @@ -314,6 +315,7 @@ struct terminal_tag { int no_remote_charset; int no_remote_resize; int no_remote_wintitle; + int no_remote_clearscroll; int rawcnp; int rect_select; int remote_qtitle_action;