X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_pad.3x.html;h=b5aee87daada29993cdb3fdf47bd2511ad196649;hp=329a63c3610465889d73d4105f3135b6cfcc7014;hb=6a530b46563470c2ca73579d1994a0c8e275dd98;hpb=32f9f5f12cd9159261f9db228461049e8c770404 diff --git a/doc/html/man/curs_pad.3x.html b/doc/html/man/curs_pad.3x.html index 329a63c3..b5aee87d 100644 --- a/doc/html/man/curs_pad.3x.html +++ b/doc/html/man/curs_pad.3x.html @@ -1,6 +1,6 @@ @@ -55,19 +55,22 @@

SYNOPSIS

        #include <curses.h>
 
-       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);
+       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);
 
 
 

DESCRIPTION

+
+
+

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
@@ -83,6 +86,9 @@
        of the pad to be displayed and the location on the  screen
        to be used for the display.
 
+
+
+

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
@@ -93,6 +99,9 @@
        ten be necessary to call touchwin or touchline on orig be-
        fore calling prefresh.
 
+
+
+

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
@@ -108,6 +117,9 @@
        respective  structures.  Negative values of pminrow, pmin-
        col, sminrow, or smincol are treated as if they were zero.
 
+
+
+

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-
@@ -119,6 +131,9 @@
        last location of the pad on the screen is reused  for  the
        arguments to prefresh.
 
+
+
+

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
@@ -137,22 +152,21 @@
        X/Open  does not define any error conditions.  In this im-
        plementation
 
-              prefresh and pnoutrefresh
-                   return an error if the window pointer is null,
-                   or if the window is not really a pad or if the
-                   area to refresh extends off-screen or  if  the
-                   minimum coordinates are greater than the maxi-
-                   mum.
+          prefresh and pnoutrefresh
+               return an error if the window pointer is null,  or
+               if  the  window is not really a pad or if the area
+               to refresh extends off-screen or  if  the  minimum
+               coordinates are greater than the maximum.
 
-              pechochar
-                   returns an error if the window is not really a
-                   pad,  and the associated call to wechochar re-
-                   turns an error.
+          pechochar
+               returns  an  error  if  the window is not really a
+               pad, and the associated call to wechochar  returns
+               an error.
 
-              pecho_wchar
-                   returns an error if the window is not really a
-                   pad,  and  the  associated call to wecho_wchar
-                   returns an error.
+          pecho_wchar
+               returns  an  error  if  the window is not really a
+               pad, and the associated call  to  wecho_wchar  re-
+               turns an error.
 
 
 
@@ -162,7 +176,7 @@

PORTABILITY

-       The XSI Curses standard, Issue  4  describes  these  func-
+       The  XSI  Curses  standard,  Issue 4 describes these func-
        tions.
 
 
@@ -179,7 +193,15 @@