|
curs_get_wch(3) -- Get (or push back) a wide character from Curses terminal keyboard
|
The get_wch, wget_wch, mvget_wch, and mvwget_wch functions read a character from the terminal associated with the current or specified window. In no-delay mode, if no input is waiting, these functions... |
curs_get_wstr(3) -- Get an array of wide characters from a Curses terminal keyboard
|
The effect of get_wstr is as though a series of calls to get_wch were made, until a newline, end-of-line, or endof-file character is processed. An end-of-file character is represented by WEOF, as defi... |
curs_inch(3) -- Get a character and its attributes from a Curses window
|
These routines return the character, of type chtype, at the current position in the named window. If any attributes are set for that position, their values are combined (through an inclusive OR operat... |
curs_inchstr(3) -- Get a string of characters (and attributes) from a Curses window
|
These routines return a string of type chtype, starting at the current or specified cursor position in the current or specified window and ending at the right margin of the window. The four functions ... |
curs_initscr(3) -- Curses routines for screen initialization and manipulation
|
The initscr routine is almost always the first routine that applications call. (The exceptions are slk_init, filter, ripoffline, use_env and, for multiple-terminal applications, newterm). The initscr ... |
curs_inopts(3) -- Curses
|
The cbreak and nocbreak routines put the terminal into and out of cbreak mode, respectively. In this mode, characters typed by the user are immediately available to the program, and erase/kill charact... |
curs_insch(3) -- Insert a character before the character under the cursor in a Curses window
|
These routines insert the character ch before the character under the cursor. All characters to the right of the cursor are moved one space to the right, with the possibility of the rightmost characte... |
curs_insstr(3) -- Insert a string before the character under the cursor in a Curses window
|
These routines insert a character string (as many characters as will fit on the line) before the character under the cursor. All characters to the right of the cursor are moved to the right, with the ... |
curs_instr(3) -- Get a string of characters from a Curses window
|
These routines return the string of characters in str, starting at the current cursor position in the named window and ending at the right margin of the window. Attributes are stripped from the charac... |
curs_inswch(3) -- Insert a wchar_t character before the character under the cursor in a Curses window
|
These routines insert the character wch, which contains a wide character, before the character under the cursor. All characters to the right of the cursor are moved one space to the right, with the po... |
curs_inswstr(3) -- Insert a wchar_t string before the character under the cursor in a Curses window
|
These routines insert a wchar_t character string (as many wchar_t characters as will fit on the line) before the character under the cursor. All characters to the right of the cursor are moved to the ... |
curs_ins_wch(3) -- Insert a complex character and rendition before the character under the cursor in a Curses window
|
These functions insert the complex character wch, along with its rendition, in the current or specified window at the current or specified cursor position. These functions: Do not perform wrapping In ... |
curs_ins_wstr(3) -- Insert a wide-character string into a Curses window
|
These functions insert a wchar_t character string (as many wchar_t characters as will fit on the line) in the current or specified window immediately before the current or specified position. All char... |