X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_bkgrnd.3x.html;h=e4b0143d42a66b138ddd5402a0219b61471a63ea;hb=8e397cccba0aad135cb9a8a353756f4273a7cdf6;hp=6bd5bf40213844d198e3e84ebc1fa9d311ed1bea;hpb=c6cfd97b8beaf0f6deafbf8aac7281cf6aa7f012;p=ncurses.git diff --git a/doc/html/man/curs_bkgrnd.3x.html b/doc/html/man/curs_bkgrnd.3x.html index 6bd5bf40..e4b0143d 100644 --- a/doc/html/man/curs_bkgrnd.3x.html +++ b/doc/html/man/curs_bkgrnd.3x.html @@ -1,6 +1,6 @@ @@ -38,23 +38,20 @@ -

curs_bkgrnd 3x

-
+

curs_bkgrnd 3x

 curs_bkgrnd(3x)                                         curs_bkgrnd(3x)
 
 
 
 
-
-

NAME

+

NAME

        bkgrnd,  wbkgrnd,  bkgrndset, wbkgrndset, getbkgrnd, wget-
        bkgrnd - curses  window  complex  background  manipulation
        routines
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <curses.h>
 
        int bkgrnd( const cchar_t *wch);
@@ -65,8 +62,9 @@
        int wgetbkgrnd(WINDOW *win, cchar_t *wch);
 
 
-
-

DESCRIPTION

+

DESCRIPTION

+
+

bkgrndset

        The bkgrndset and wbkgrndset routines manipulate the back-
        ground of the named window.  The window  background  is  a
        cchar_t consisting of any combination of attributes (i.e.,
@@ -83,37 +81,43 @@
        attribute part of  the  background  is  displayed  as  the
        graphic rendition of the character put on the screen.
 
+
+

bkgrnd

        The  bkgrnd and wbkgrnd functions set the background prop-
        erty of the current or specified  window  and  then  apply
        this setting to every character position in that window:
 
-              The  rendition  of every character on the screen is
-              changed to the new background rendition.
+       o   The  rendition  of  every  character  on the screen is
+           changed to the new background rendition.
+
+       o   Wherever the former background character  appears,  it
+           is changed to the new background character.
 
-              Wherever the former background  character  appears,
-              it is changed to the new background character.
 
+

getbkgrnd

        The  getbkgrnd function returns the given window's current
-       background character/attribute pair via the wch pointer.
+       background character/attribute pair via the  wch  pointer.
+       If  the given window pointer is null, the character is not
+       updated (but no error returned).
 
 
-
-

NOTES

+

NOTES

        Note that bkgrnd, bkgrndset, and getbkgrnd may be macros.
 
 
-
-

RETURN VALUE

+

RETURN VALUE

        The bkgrndset and wbkgrndset  routines  do  not  return  a
        value.
 
        Upon successful completion, the other functions return OK.
-       Otherwise, they return ERR.   A  null  window  pointer  is
-       treated as an error.
+       Otherwise, they return ERR:
 
+       o   A null window pointer is treated as an error.
 
-
-

SEE ALSO

+       o   A null character pointer is treated as an error.
+
+
+

SEE ALSO

        curses(3x), curs_bkgd(3x)
 
 
@@ -124,7 +128,13 @@