|
winchstr(3) -- get a string of characters (and attributes) from a curses window
|
These routines return a NULL-terminated array of chtype quantities, starting at the current cursor position in the named window and ending at the right margin of the window. The four functions with n ... |
winnstr(3) -- get a string of characters from a curses window
|
These routines return a string of characters in str, extracted starting at the current cursor position in the named window. Attributes are stripped from the characters. The four functions with n as th... |
winsch(3) -- insert a character before 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... |
winsdelln(3) -- delete and insert lines in a curses window
|
The deleteln and wdeleteln routines delete the line under the cursor in the window; all lines below the current line are moved up one line. The bottom line of the window is cleared. The cursor positio... |
winsertln(3) -- delete and insert lines in a curses window
|
The deleteln and wdeleteln routines delete the line under the cursor in the window; all lines below the current line are moved up one line. The bottom line of the window is cleared. The cursor positio... |
winsnstr(3) -- insert string before 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 shifted right, with the possi... |
winsstr(3) -- insert string before 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 shifted right, with the possi... |
winstr(3) -- get a string of characters from a curses window
|
These routines return a string of characters in str, extracted starting at the current cursor position in the named window. Attributes are stripped from the characters. The four functions with n as th... |
wmouse_trafo(3) -- mouse interface through curses
|
These functions provide an interface to mouse events from curses(3). Mouse events are represented by KEY_MOUSE pseudo-key values in the wgetch input stream. To make mouse events visible, use the mouse... |
wmove(3) -- move curses window cursor
|
These routines move the cursor associated with the window to line y and column x. This routine does not move the physical cursor of the terminal until refresh is called. The position specified is rela... |
wnoutrefresh(3) -- refresh curses windows and lines
|
The refresh and wrefresh routines (or wnoutrefresh and doupdate) must be called to get actual output to the terminal, as other routines merely manipulate data structures. The routine wrefresh copies t... |
wprintw(3) -- print formatted output in curses windows
|
The printw, wprintw, mvprintw and mvwprintw routines are analogous to printf [see printf(3)]. In effect, the string that would be output by printf is output instead as though waddstr were used on the ... |
wredrawln(3) -- refresh curses windows and lines
|
The refresh and wrefresh routines (or wnoutrefresh and doupdate) must be called to get actual output to the terminal, as other routines merely manipulate data structures. The routine wrefresh copies t... |