X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_pad.3x.html;h=250f8a93e0bfb8f02e418af974e780dd3151381f;hp=b5aee87daada29993cdb3fdf47bd2511ad196649;hb=2a32bee362db64f5a06b2124976b928ac3faa578;hpb=6a530b46563470c2ca73579d1994a0c8e275dd98 diff --git a/doc/html/man/curs_pad.3x.html b/doc/html/man/curs_pad.3x.html index b5aee87d..250f8a93 100644 --- a/doc/html/man/curs_pad.3x.html +++ b/doc/html/man/curs_pad.3x.html @@ -45,14 +45,12 @@ - -

NAME

+

NAME

        newpad, subpad, prefresh, pnoutrefresh, pechochar,
        pecho_wchar - create and display curses pads
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <curses.h>
 
        WINDOW *newpad(int nlines, int ncols);
@@ -66,11 +64,9 @@
        int pecho_wchar(WINDOW *pad, const cchar_t *wch);
 
 
-
-

DESCRIPTION

+

DESCRIPTION

 
-
-

newpad

+

newpad

        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
@@ -87,8 +83,7 @@
        to be used for the display.
 
 
-
-

subpad

+

subpad

        The subpad routine creates and returns a pointer to a sub-
        window within a  pad  with  the  given  number  of  lines,
        nlines,  and  columns,  ncols.   Unlike subwin, which uses
@@ -100,8 +95,7 @@
        fore calling prefresh.
 
 
-
-

prefresh, pnoutrefresh

+

prefresh, pnoutrefresh

        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
@@ -118,8 +112,7 @@
        col, sminrow, or smincol are treated as if they were zero.
 
 
-
-

pechochar

+

pechochar

        The pechochar routine is functionally equivalent to a call
        to  addch  followed by a call to refresh, a call to waddch
        followed by a call to wrefresh, or a call to  waddch  fol-
@@ -132,16 +125,14 @@
        arguments to prefresh.
 
 
-
-

pecho_wchar

+

pecho_wchar

        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.
 
 
-
-

RETURN VALUE

+

RETURN VALUE

        Routines that return an integer return  ERR  upon  failure
        and  OK  (SVr4 only specifies "an integer value other than
        ERR") upon successful completion.
@@ -169,19 +160,16 @@
                turns an error.
 
 
-
-

NOTES

+

NOTES

        Note that pechochar may be a macro.
 
 
-
-

PORTABILITY

+

PORTABILITY

        The  XSI  Curses  standard,  Issue 4 describes these func-
        tions.
 
 
-
-

SEE ALSO

+

SEE ALSO

        curses(3x),  curs_refresh(3x),  curs_touch(3x),  curs_add-
        ch(3x).