WINDOW *newpad(int nlines, int ncols);
WINDOW *subpad(WINDOW *orig, int nlines, int ncols,
int begin_y, int begin_x);
int prefresh(WINDOW *pad, int pminrow, int pmincol,
int sminrow, int smincol, int smaxrow, int smaxcol);
int pnoutrefresh(WINDOW *pad, int pminrow, int pmincol,
int sminrow, int smincol, int smaxrow, int smaxcol);
int pechochar(WINDOW *pad, chtype ch);
int pecho_wchar(WINDOW *pad, const cchar_t *wch);
It is not legal to call wrefresh with a pad as an argument; the routines prefresh or pnoutrefresh should be called instead. Note that these routines require additional parameters to specify the part of the pad to be displayed and the location on the screen to be used for the display.
The subpad routine creates and returns a pointer to a subwindow within a pad with the given number of lines, nlines, and columns, ncols. Unlike subwin, which uses screen coordinates, the window is at position (begin_x, begin_y) on the pad. The window is made in the middle of the window orig, so that changes made to one window affect both windows. During the use of this routine, it will often be necessary to call touchwin or touchline on orig before calling prefresh.
The prefresh and pnoutrefresh routines are analogous to
wrefresh and wnoutrefresh except that they relate to pads instead
of windows.
The additional parameters are needed to indicate what part of the
pad and screen are involved.
.IP • 4
The pminrow and pmincol parameters specify the upper
left-hand corner of the rectangle to be displayed in the pad.
.IP • 4
The sminrow,
smincol, smaxrow, and smaxcol
parameters specify the edges of the
rectangle to be displayed on the screen.
The lower right-hand corner of the rectangle to be displayed in the pad is calculated from the screen coordinates, since the rectangles must be the same size. Both rectangles must be entirely contained within their respective structures. Negative values of pminrow, pmincol, sminrow, or smincol are treated as if they were zero.
The pechochar routine is functionally equivalent to a call to addch followed by a call to refresh(3X), a call to waddch followed by a call to wrefresh, or a call to waddch followed by a call to prefresh. The knowledge that only a single character is being output is taken into consideration and, for non-control characters, a considerable performance gain might be seen by using these routines instead of their equivalents. In the case of pechochar, the last location of the pad on the screen is reused for the arguments to prefresh.
The pecho_wchar function is the analogous wide-character form of pechochar. It outputs one character to a pad and immediately refreshes the pad. It does this by a call to wadd_wch followed by a call to prefresh.
Routines that return pointers return NULL on error, and set errno to ENOMEM.
X/Open does not define any error conditions. In this implementation
SVr2 curses (1986) provided the newpad and related functions, documenting them in a single line each. SVr3 (1987) provided more extensive documentation.
The documentation does not explain the term pad.
However, the Apollo Aegis workstation operating system
supported a graphical pad feature:
.IP • 4
These graphical pads could be much larger than the computer's display.
.IP • 4
The read-only output from a command could be scrolled back to inspect,
and select text from the pad.
The two uses may be related.
The XSI Curses standard, Issue 4 describes these functions,
without significant change from the SVr3 documentation.
It describes no error conditions.
The behavior of subpad if the parent window is not
a pad is undocumented,
and is not checked by the vendor Unix implementations:
.IP • 4
SVr4 curses sets a flag in the WINDOW structure in newpad
which tells if the window is a pad.
This implementation
.IP • 4
sets a flag in the WINDOW structure for newpad and subpad,
.IP • 4
allows a subwin or derwin call to succeed having a pad parent by
forcing the subwindow to be a pad,
.IP • 4
checks in both wnoutrefresh and pnoutrefresh to ensure
that pads and windows are handled distinctly, and
.IP • 4
ensures that dupwin and getwin treat
pads versus windows consistently.