|
wclrtobot(3) -- clear all or part of a curses window
|
The erase and werase routines copy blanks to every position in the window, clearing the screen. The clear and wclear routines are like erase and werase, but they also call clearok, so that the screen ... |
wclrtoeol(3) -- clear all or part of a curses window
|
The erase and werase routines copy blanks to every position in the window, clearing the screen. The clear and wclear routines are like erase and werase, but they also call clearok, so that the screen ... |
wcolor_set(3) -- curses character and window attribute control routines
|
These routines manipulate the current attributes of the named window. The current attributes of a window apply to all characters that are written into the window with wad- dch, waddstr and wprintw. At... |
wcursyncup(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... |
wdelch(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 ... |
wdeleteln(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... |
wechochar(3) -- add a character (with attributes) to a curses window, then advance the cursor
|
The addch, waddch, mvaddch and mvwaddch routines put the character ch into the given window at its current window position, which is then advanced. They are analogous to putchar in stdio(3). If the ad... |
wenclose(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... |
werase(3) -- clear all or part of a curses window
|
The erase and werase routines copy blanks to every position in the window, clearing the screen. The clear and wclear routines are like erase and werase, but they also call clearok, so that the screen ... |
wgetch(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... |
wgetnstr(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 ... |
wgetstr(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 ... |
whline(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... |