|
curs_inwstr(3) -- Get a string of wchar_t characters from a Curses window
|
These routines return a string of wchar_t characters in str, starting at the current or specified cursor position in the current or specified window and ending at the right margin of the window. The f... |
curs_in_wch(3) -- Input a complex character and rendition from a Curses window
|
These functions extract the complex character and rendition from the current or specified position in the current or specified window into the object pointed to by wcval. |
curs_in_wchstr(3) -- Input an array of complex characters and renditions from a Curses window
|
These functions extract characters from the current or specified window, starting at the current or specified position and ending at the end of the line, and place them in the array pointed to by wchs... |
curs_kernel(3) -- Low-level Curses routines
|
These routines give low-level access to various Curses functionality. They are typically used inside library routines. The def_prog_mode and def_shell_mode routines save the current terminal modes as ... |
curs_move(3) -- Move the Curses window cursor
|
These routines move the cursor associated with the Curses window to line y and column x. They do not move the physical cursor of the terminal until refresh is called. The specified position is relativ... |
curs_outopts(3) -- Routines for controlling output options for a Curses terminal
|
These routines set options that deal with output within Curses. Unless stated otherwise, all options are initially FALSE. It is not necessary to turn these options off before calling endwin. The clear... |
curs_overlay(3) -- Overlap and manipulate overlapped Curses windows
|
The overlay and overwrite routines overlay srcwin on top of dstwin. The scrwin and dstwin parameters do not have to be the same size; Curses copies only the text in the region where the two windows ov... |
curs_pad(3) -- Routines that 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 a pad is not necessarily as... |
curs_printw(3) -- Print formatted output in Curses windows
|
The printw, wprintw, mvprintw, and mvwprintw routines are analogous to printf family of routines (see printf(3)). In effect, the printw routines output the string that would be output by printf as tho... |
curs_refresh(3) -- Refresh Curses windows and lines
|
Applications must call the refresh and wrefresh routines (or the wnoutrefresh and doupdate routines) to get any output on the terminal. Other Curses routines only manipulate data structures. The wrefr... |
curs_scanw(3) -- Convert formatted input from a Curses window
|
The scanw, wscanw, and mvscanw routines correspond to scanf (see fscanf(3)). The effect of these routines is as though wgetstr were called on the window, and the resulting line were used as input for ... |
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 or write a Curses screen from or to a file
|
The scr_dump routine writes the current contents of the virtual screen to filename. The scr_restore routine sets the virtual screen to the contents of filename, which must have been written using scr_... |