summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2011-09-03 14:05:25 +0200
committerAxel Beckert <abe@deuxchevaux.org>2011-09-03 14:05:25 +0200
commit9d943c7539f59f42ba8f8052497dc541fe5f0167 (patch)
treec8725127bf7a68d3d7fe57adca45c204b25adf21 /window.h
parent0e9a09d7718f02726b12924f7ddb05a992202aa3 (diff)
downloadscreen-9d943c7539f59f42ba8f8052497dc541fe5f0167.tar.gz
Imported Upstream version 4.0.2upstream/4.0.2
Diffstat (limited to 'window.h')
-rw-r--r--window.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/window.h b/window.h
index 8bc9170..2616894 100644
--- a/window.h
+++ b/window.h
@@ -135,6 +135,7 @@ struct win
struct pseudowin *w_pwin; /* ptr to pseudo */
#endif
struct display *w_pdisplay; /* display for printer relay */
+ struct display *w_lastdisp; /* where the last input was made */
int w_number; /* window number */
struct event w_readev;
struct event w_writeev;
@@ -168,6 +169,9 @@ struct win
#ifdef FONT
char w_FontL; /* character font GL */
char w_FontR; /* character font GR */
+# ifdef ENCODINGS
+ char w_FontE; /* character font GR locked */
+# endif
int w_Charset; /* charset number GL */
int w_CharsetR; /* charset number GR */
int w_charsets[4]; /* Font = charsets[Charset] */
@@ -245,6 +249,10 @@ struct win
char w_tty[MAXSTR];
+ int w_zauto;
+#ifdef ZMODEM
+ struct display *w_zdisplay;
+#endif
#ifdef BUILTIN_TELNET
struct sockaddr_in w_telsa;
char w_telbuf[IOSIZE];
@@ -256,6 +264,15 @@ struct win
int w_telsubidx;
struct event w_telconnev;
#endif
+ struct mline *w_alt_mlines;
+ int w_alt_width;
+ int w_alt_height;
+ int w_alt_histheight;
+ int w_alt_x, w_alt_y;
+#ifdef COPY_PASTE
+ struct mline *w_alt_hlines;
+ int w_alt_histidx;
+#endif
};