|
curs_bkgd(3) -- Routines for manipulating the background in a Curses window
|
The bkgdset and wbkgdset routines manipulate the background of the named window. Background is defined as chtype and consists of any combination of attributes and a character. The attribute part of th... |
curs_bkgrnd(3) -- Set or get background character and rendition by using a complex character
|
By using the information in wch, the bkgrndset and wbkgrndset functions set the background rendition and manipulate the window rendition of the current or specified window. These functions turn off th... |
curs_border(3) -- Create Curses borders, and horizontal and vertical lines
|
The border, wborder, and box routines draw a border around the edges of the window. Each of the following arguments contains both a character and attributes for a particular part of the border: Left s... |
curs_border_set(3) -- Draw borders or lines by using complex characters and renditions
|
The border_set and wborder_set functions draw a border around the edges of the current or specified window. These functions do not advance the cursor position, do not perform special character process... |
curs_chgat(3) -- Change renditions of characters in a Curses window
|
These functions change the renditions of the next n characters in the current or specified window (or of the remaining characters on the line if n is -1), starting at the current or specified cursor p... |
curs_clear(3) -- Clear all or part of a Curses window
|
The erase and werase routines copy blanks to every position in the window. The clear and wclear routines are similar to erase and werase but also call clearok. The result is that the screen is cleared... |
curs_color(3) -- Curses
|
The Curses library includes routines that manipulate color-on-color alphanumeric terminals. To use these routines, applications must call start_color, usually right after initscr. Colors are always us... |
curs_delch(3) -- Delete the character under the cursor in a Curses window
|
These routines do the following: Delete the character under the cursor in the current or specified window Move all characters that are to the right of the cursor and on the same line to the left one p... |
curs_deleteln(3) -- Delete or insert lines in a Curses window
|
The deleteln and wdeleteln routines do the following: Delete the line under the cursor in the current or specified window Move all lines below the current line up one line Clear the bottom line of the... |
curs_getcchar(3) -- Get a wide character string and rendition from a cchar_t or set a cchar_t from a wide-character stri...
|
The getcchar function gets a wide-character string and rendition from a cchar_t argument. When wch is not a null pointer, the getcchar function does the following: Extracts information from a cchar_t ... |
curs_getch(3) -- Get (or push back) characters from a Curses terminal keyboard
|
The getch, wgetch, mvgetch, and mvwgetch routines read a character from the terminal associated with the Curses window. In no-delay mode, if no input is waiting, these routines return the value ERR. I... |
curs_getstr(3) -- Get character strings from a Curses terminal keyboard
|
The effect of getstr is as though a series of calls to getch were made, until a newline or carriage return is received. The resulting value is placed in the area pointed to by the character pointer st... |
curs_getwch(3) -- Get (or push back) wchar_t characters from a Curses terminal keyboard
|
The getwch, wgetwch, mvgetwch, and mvwgetwch routines read an EUC character from the terminal associated with the Curses window, transform the character into a wchar_t character, and return the wchar_... |