X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/6473492058e854537bb061277bd9eb5c319bf11a..ebb7ac45d108c634ee714c584e0dd197a0ff3716:/terminal.h diff --git a/terminal.h b/terminal.h index 72c8f877..28f06c0c 100644 --- a/terminal.h +++ b/terminal.h @@ -20,6 +20,15 @@ typedef struct { int y, x; } pos; +#ifdef OPTIMISE_SCROLL +struct scrollregion { + struct scrollregion *next; + int topline; /* Top line of scroll region. */ + int botline; /* Bottom line of scroll region. */ + int lines; /* Number of lines to scroll by - +ve is forwards. */ +}; +#endif /* OPTIMISE_SCROLL */ + struct terminal_tag { int compatibility_level; @@ -47,6 +56,10 @@ struct terminal_tag { term->cpos = lineptr(term->curs.y) + term->curs.x; \ } while(0) +#ifdef OPTIMISE_SCROLL + struct scrollregion *scrollhead, *scrolltail; +#endif /* OPTIMISE_SCROLL */ + unsigned long curr_attr, save_attr; unsigned long erase_char; @@ -171,6 +184,8 @@ struct terminal_tag { void *logctx; + struct unicode_data *ucsdata; + /* * We maintain a full _copy_ of a Config structure here, not * merely a pointer to it. That way, when we're passed a new @@ -181,6 +196,6 @@ struct terminal_tag { Config cfg; }; -#define in_utf(term) ((term)->utf || line_codepage==CP_UTF8) +#define in_utf(term) ((term)->utf || (term)->ucsdata->line_codepage==CP_UTF8) #endif