leaveok Subroutine
Purpose
Controls physical cursor placement after a call to the refresh subroutine.
Library
Curses Library (libcurses.a)
Syntax
Description
The leaveok subroutine controls cursor placement after a call to the refresh (refresh or wrefresh Subroutine) subroutine. If the Flag parameter is set to FALSE, curses leaves the physical cursor in the same location as logical cursor when the window is refreshed.
If the Flag parameter is set to TRUE, curses leaves the cursor as is and does not move the physical cursor when the window is refreshed. This option is useful for applications that do not use the cursor, because it reduces physical cursor motions.
By default leaveok is FALSE, and the physical cursor is moved to the same position as the logical cursor after a refresh.
Parameters
Item | Description |
---|---|
Flag | Specifies whether to leave the physical cursor alone after a refresh (TRUE) or to move the physical cursor to the logical cursor after a refresh (FALSE). |
Window | Identifies the window to set the Flag parameter for. |
Return Values
Item | Description |
---|---|
OK | Indicates the subroutine completed. The leaveok subroutine always returns this value. |
Examples
- To move the physical cursor to the same location as the logical
cursor after refreshing the user-defined window my_window,
enter:
WINDOW *my_window; leaveok(my_window, FALSE);
- To leave the physical cursor alone after refreshing the user-defined
window my_window, enter:
WINDOW *my_window; leaveok(my_window, TRUE);