Lines Matching full:screen
11 * There are minimum values that vi has to have to display a screen. The row
27 * The screen structure. To the extent possible, all screen information
32 /* INITIALIZED AT SCREEN CREATE. */
35 int id; /* Screen id #. */
39 SCR *nextdisp; /* Next display screen. */
40 SCR *ccl_parent; /* Colon command-line parent screen. */
41 EXF *ep; /* Screen's current EXF structure. */
50 /* Screen's: */
56 size_t coff; /* 0-N: screen col offset in display. */
57 size_t roff; /* 0-N: screen row offset in display. */
97 /* PARTIALLY OR COMPLETELY COPIED FROM PREVIOUS SCREEN. */
143 * Screen flags.
151 * Screen formatting flags, first major, then minor.
154 * Ex screen, i.e. cooked mode.
156 * Vi screen, i.e. raw mode.
158 * The editor had to write on the screen behind curses' back, and we can't
162 * rest of the screen because it's known to be wrong.
164 * The expected presentation of the lines on the screen have changed,
165 * requiring that the intended screen lines be recalculated. Implies
168 * The screen doesn't correctly represent the file; repaint it. Note,
172 * If the current line isn't already on the screen, center it.
174 * If the current line isn't already on the screen, put it at the to@.
176 #define SC_SCR_EX 0x00000004 /* Screen is in ex mode. */
177 #define SC_SCR_VI 0x00000008 /* Screen is in vi mode. */
185 /* Screen/file changes. */