|
curs_pad(3) -- create and display curses pads
|
The newpad routine creates and returns a pointer to a new pad data structure with the given number of lines, nlines, and columns, ncols. A pad is like a window, except that it is not restricted by the... |
curs_print(3) -- ship binary data to printer
|
This function uses the mc5p or mc4 and mc5 capabilities, if they are present, to ship given data to a printer attached to the terminal. Note that the mcprint code has no way to do flow control with th... |
curs_printw(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 ... |
curs_refresh(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... |
curs_scanw(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... |
curs_scroll(3) -- scroll a curses window
|
The scroll routine scrolls the window up one line. This involves moving the lines in the window data structure. As an optimization, if the scrolling region of the window is the entire screen, the phys... |
curs_scr_dump(3) -- read (write) a curses screen from (to) a file
|
The scr_dump routine dumps the current contents of the virtual screen to the file filename. The scr_restore routine sets the virtual screen to the contents of filename, which must have been written us... |
curs_set(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 ... |
curs_slk(3) -- curses soft label routines
|
The slk* functions manipulate the set of soft function-key labels that exist on many terminals. For those terminals that do not have soft labels, curses takes over the bottom line of stdscr, reducing ... |
curs_termattrs(3) -- curses environment query routines
|
The baudrate routine returns the output speed of the terminal. The number returned is in bits per second, for example 9600, and is an integer. The erasechar routine returns the user's current erase c... |
curs_touch(3) -- curses refresh control routines
|
The touchwin and touchline routines throw away all optimization information about which parts of the window have been touched, by pretending that the entire window has been drawn on. This is sometimes... |
curs_util(3) -- miscellaneous curses utility routines
|
The unctrl macro expands to a character string which is a printable representation of the character c. Control characters are displayed in the ^X notation. Printing characters are displayed as is. The... |
curs_window(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... |