'\" te .\" Copyright 1989 AT&T .\" Portions Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved. .TH curs_bkgd 3CURSES "31 Dec 1996" "SunOS 5.11" "Curses Library Functions" .SH NAME curs_bkgd, bkgd, bkgdset, wbkgdset, wbkgd \- curses window background manipulation routines .SH SYNOPSIS .LP .nf \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lcurses\fR [ \fIlibrary\fR ... ] #include \fBint\fR \fBbkgd\fR(\fBchtype\fR \fIch\fR); .fi .LP .nf \fBvoid\fR \fBbkgdset\fR(\fBchtype\fR \fIch\fR); .fi .LP .nf \fBvoid\fR \fBwbkgdset\fR(\fBWINDOW *\fR\fIwin\fR, \fBchtype\fR \fIch\fR); .fi .LP .nf \fBint\fR \fBwbkgd\fR(\fBWINDOW *\fR\fIwin\fR, \fBchtype\fR \fIch\fR); .fi .SH DESCRIPTION .sp .LP The \fBbkgdsets()\fR and \fBwbkgdset()\fR routines manipulate the background of the named window. Background is a \fBchtype\fR consisting of any combination of attributes and a character. The attribute part of the background is combined (ORed) with all non-blank characters that are written into the window with \fBwaddch()\fR. Both the character and attribute parts of the background are combined with the blank characters. The background becomes a property of the character and moves with the character through any scrolling and insert/delete line/character operations. To the extent possible on a particular terminal, the attribute part of the background is displayed as the graphic rendition of the character put on the screen. .sp .LP The \fBbkgd()\fR and \fBwbkgd()\fR routines combine the new background with every position in the window. Background is any combination of attributes and a character. Only the attribute part is used to set the background of non-blank characters, while both character and attributes are used for blank positions. To the extent possible on a particular terminal, the attribute part of the background is displayed as the graphic rendition of the character put on the screen. .SH RETURN VALUES .sp .LP \fBbkgd()\fR and \fBwbkgd()\fR return the integer \fBOK\fR, or a non-negative integer, if \fBimmedok()\fR is set. See \fBcurs_outopts\fR(3CURSES). .SH ATTRIBUTES .sp .LP See \fBattributes\fR(5) for descriptions of the following attributes: .sp .sp .TS tab() box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPEATTRIBUTE VALUE _ MT-LevelUnsafe .TE .SH SEE ALSO .sp .LP \fBcurs_addch\fR(3CURSES), \fBcurs_outopts\fR(3CURSES), \fBcurses\fR(3CURSES), \fBattributes\fR(5) .SH NOTES .sp .LP The header <\fBcurses.h\fR> automatically includes the headers <\fBstdio.h\fR> and <\fBunctrl.h\fR>. .sp .LP Note that \fBbkgdset()\fR and \fBbkgd()\fR may be macros.