|
wdeleteln(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... |
wechochar(3) -- Add a character (with attributes) to a Curses window and advance the cursor
|
The addch, waddch, mvaddch, and mvwaddch routines put the character ch into the window at the current cursor position of the window and advance the position of the window cursor. Their function is sim... |
wechowchar(3) -- Add a wchar_t character (with attributes) to a Curses window and advance cursor
|
The addwch, waddwch, mvaddwch, and mvwaddwch routines put the character wch, holding a wchar_t character, into the window at the current cursor position of the window and advance the position of the w... |
wecho_wchar(3) -- Add a complex character and rendition to a Curses window and advance the cursor
|
The add_wch, wadd_wch, mvadd_wch, and mvwadd_wch functions put the complex character wch into the window at the current or specified cursor position, of the current or specified window, and advance th... |
werase(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... |
wgetbkgrnd(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... |
wgetch(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... |
wgetnstr(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... |
wgetnwstr(3) -- Get wchar_t character strings from a Curses terminal keyboard
|
The effect of getwstr is as though a series of calls to getwch were made, until a newline and carriage return is received. The resulting value is placed in the area pointed to by the wchar_t pointer w... |
wgetn_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... |
wgetstr(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... |
wgetwch(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_... |
wgetwstr(3) -- Get wchar_t character strings from a Curses terminal keyboard
|
The effect of getwstr is as though a series of calls to getwch were made, until a newline and carriage return is received. The resulting value is placed in the area pointed to by the wchar_t pointer w... |