|
mvdelch(3) -- delete character under the cursor in a curses window
|
These routines delete the character under the cursor; all characters to the right of the cursor on the same line are moved to the left one position and the last character on the line is filled with a ... |
mvderwin(3) -- create curses windows
|
Calling newwin creates and returns a pointer to a new window with the given number of lines and columns. The upper left-hand corner of the window is at line begin_y, column begin_x. If either nlines o... |
mvgetch(3) -- get (or push back) characters from curses terminal keyboard
|
The getch, wgetch, mvgetch and mvwgetch, routines read a character from the window. In no-delay mode, if no input is waiting, the value ERR is returned. In delay mode, the program waits until the syst... |
mvgetnstr(3) -- accept character strings from curses terminal keyboard
|
The function getstr is equivalent to a series of calls to getch, until a newline or carriage return is received (the terminating character is not included in the returned string). The resulting value ... |
mvgetstr(3) -- accept character strings from curses terminal keyboard
|
The function getstr is equivalent to a series of calls to getch, until a newline or carriage return is received (the terminating character is not included in the returned string). The resulting value ... |
mvhline(3) -- create curses borders, horizontal and vertical lines
|
The border, wborder and box routines draw a box around the edges of a window. The argument ls is a character and attributes used for the left side of the border, rs - right side, ts - top side, bs - b... |
mvinch(3) -- get a character and 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 OR'ed into the value returned. Constant... |
mvinchnstr(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 ... |
mvinchstr(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 ... |
mvinnstr(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... |
mvinsch(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... |
mvinsnstr(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... |
mvinsstr(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... |