Lines Matching defs:__window
100 struct __window { /* Window structure. */ struct
101 struct __window *nextp, *orig; /* Subwindows list and parent. */ argument
102 int begy, begx; /* Window home. */
103 int cury, curx; /* Current x, y coordinates. */
104 int maxy, maxx; /* Maximum values for curx, cury. */
105 int reqy, reqx; /* Size requested when created */
106 int ch_off; /* x offset for firstch/lastch. */
107 __LINE **alines; /* Array of pointers to the lines */
108 __LINE *lspace; /* line space (for cleanup) */
109 __LDATA *wspace; /* window space (for cleanup) */
127 unsigned int flags;
128 int delay; /* delay for getch() */
129 attr_t wattr; /* Character attributes */
130 wchar_t bch; /* Background character */
131 attr_t battr; /* Background attributes */
132 uint32_t wcols; /* Background column width */
133 int scr_t, scr_b; /* Scrolling region top, bottom */
134 SCREEN *screen; /* Screen for this window */
135 int pbegy, pbegx,
136 sbegy, sbegx,
160 struct __window *winp; /* The window. */ argument