|
mvwin(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... |
mvwinch(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... |
|
mvwinchnstr(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 ... |
mvwinchstr(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 ... |
mvwinnstr(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... |
mvwinsch(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... |
mvwinsnstr(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... |
mvwinsstr(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... |
mvwinstr(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... |
mvwprintw(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 ... |
mvwscanw(3) -- convert formatted input from a curses window
|
The scanw, wscanw and mvscanw routines are analogous to scanf [see scanf(3)]. The effect of these routines is as though wgetstr were called on the window, and the resulting line used as input for ssca... |
mvwvline(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... |
napms(3) -- low-level curses routines
|
The following routines give low-level access to various curses capabilities. Theses routines typically are used inside library routines. The def_prog_mode and def_shell_mode routines save the current ... |
ncurses(3) -- CRT screen handling and optimization package
|
The curses library routines give the user a terminal-independent method of updating character screens with reasonable optimization. This implementation is ``new curses'' (ncurses) and is the approve... |
ndbm(3) -- database access methods
|
These functions provide a ndbm-compatible interface to the database access methods described in db(3). Each unique record in the database is a key/content pair, the components of which may be any arbi... |