#include <ncursesw.h>
Inheritance diagram for NCursesPad:
Public Member Functions | |
NCursesPad (int lines, int cols) | |
int | echochar (const chtype ch) |
int | refresh () |
int | noutrefresh () |
int | refresh (int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol) |
int | noutrefresh (int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol) |
|
|
|
Put the attributed character onto the pad and immediately do a prefresh(). Reimplemented from NCursesWindow. |
|
Does the same like refresh() but without calling doupdate(). |
|
Propagate the changes in this window to the virtual screen. This is redefined in NCursesPanel. Reimplemented from NCursesWindow. |
|
The coordinates sminrow,smincol,smaxrow,smaxcol describe a rectangle on the screen. refresh copies a rectangle of this size beginning with top left corner pminrow,pmincol onto the screen and calls doupdate(). |
|
For Pad's we reimplement refresh() and noutrefresh() to do nothing. You should call the versions with the argument list that are specific for Pad's. Reimplemented from NCursesWindow. |