4 /****************************************************************/
5 /* Idlok() is used to set flag for using the terminal insert/ */
6 /* Delete line capabilities. This is not relevant for the PC */
7 /* Version of curses, and thus nothing is done. */
8 /****************************************************************/
15 /****************************************************************/
16 /* Clearok() marks window 'win' to cause screen clearing and */
17 /* Redraw the next time a refresh is done. */
18 /****************************************************************/
19 void clearok(win
, flag
)
24 _cursvar
.tmpwin
->_clear
= flag
;
29 /****************************************************************/
30 /* Leaveok() marks window 'win' to allow the update routines */
31 /* To leave the hardware cursor where it happens to be at the */
32 /* End of update. Usually used in combination with cursoff(). */
33 /****************************************************************/
35 void leaveok(win
, flag
)
42 /****************************************************************/
43 /* Scrollok() marks window 'win' to allow the scrolling region */
44 /* Of it to actually scroll. */
45 /****************************************************************/
46 void scrollok(win
, flag
)
53 /****************************************************************/
54 /* Nodelay() marks the window to make character input non- */
55 /* Waiting, i.e. if there is no character to get, -1 will be */
57 /****************************************************************/
58 void nodelay(win
, flag
)
65 /****************************************************************/
66 /* Keypad() marks window 'win' to use the special keypad mode. */
67 /****************************************************************/
68 void keypad(win
, flag
)
75 /****************************************************************/
76 /* Meta() allows use of any alternate character set allowed by */
77 /* The terminal. We always allow this on the PC, so this one */
79 /****************************************************************/