libncurses: updated to 6.0
[tomato.git] / release / src / router / libncurses / doc / html / man / curs_bkgrnd.3x.html
blobc2b106344a5ac91a7c071aeb101c4a957c18a9a9
1 <!--
2 ****************************************************************************
3 * Copyright (c) 2002-2012,2015 Free Software Foundation, Inc. *
4 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************
29 * @Id: curs_bkgrnd.3x,v 1.6 2015/07/21 00:18:42 tom Exp @
30 -->
31 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
32 <HTML>
33 <HEAD>
34 <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
35 <meta name="generator" content="Manpage converted by man2html - see http://invisible-island.net/scripts/readme.html#others_scripts">
36 <TITLE>curs_bkgrnd 3x</TITLE>
37 <link rev=made href="mailto:bug-ncurses@gnu.org">
38 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
39 </HEAD>
40 <BODY>
41 <H1 class="no-header">curs_bkgrnd 3x</H1>
42 <PRE>
43 <STRONG><A HREF="curs_bkgrnd.3x.html">curs_bkgrnd(3x)</A></STRONG> <STRONG><A HREF="curs_bkgrnd.3x.html">curs_bkgrnd(3x)</A></STRONG>
48 </PRE>
49 <H2><a name="h2-NAME">NAME</a></H2><PRE>
50 <STRONG>bkgrnd</STRONG>, <STRONG>wbkgrnd</STRONG>, <STRONG>bkgrndset</STRONG>, <STRONG>wbkgrndset</STRONG>, <STRONG>getbkgrnd</STRONG>, <STRONG>wget-</STRONG>
51 <STRONG>bkgrnd</STRONG> - <STRONG>curses</STRONG> window complex background manipulation
52 routines
55 </PRE>
56 <H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE>
57 <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
59 <STRONG>int</STRONG> <STRONG>bkgrnd(</STRONG> <STRONG>const</STRONG> <STRONG>cchar_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
60 <STRONG>int</STRONG> <STRONG>wbkgrnd(</STRONG> <STRONG>WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>const</STRONG> <STRONG>cchar_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
61 <STRONG>void</STRONG> <STRONG>bkgrndset(const</STRONG> <STRONG>cchar_t</STRONG> <STRONG>*</STRONG><EM>wch</EM> <STRONG>);</STRONG>
62 <STRONG>void</STRONG> <STRONG>wbkgrndset(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>const</STRONG> <STRONG>cchar_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
63 <STRONG>int</STRONG> <STRONG>getbkgrnd(cchar_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
64 <STRONG>int</STRONG> <STRONG>wgetbkgrnd(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>cchar_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
67 </PRE>
68 <H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE>
70 </PRE>
71 <H3><a name="h3-bkgrndset">bkgrndset</a></H3><PRE>
72 The <STRONG>bkgrndset</STRONG> and <STRONG>wbkgrndset</STRONG> routines manipulate the back-
73 ground of the named window. The window background is a
74 <STRONG>cchar_t</STRONG> consisting of any combination of attributes (i.e.,
75 rendition) and a complex character. The attribute part of
76 the background is combined (OR'ed) with all non-blank
77 characters that are written into the window with <STRONG>waddch</STRONG>.
78 Both the character and attribute parts of the background
79 are combined with the blank characters. The background
80 becomes a property of the character and moves with the
81 character through any scrolling and insert/delete
82 line/character operations.
84 To the extent possible on a particular terminal, the
85 attribute part of the background is displayed as the
86 graphic rendition of the character put on the screen.
89 </PRE>
90 <H3><a name="h3-bkgrnd">bkgrnd</a></H3><PRE>
91 The <STRONG>bkgrnd</STRONG> and <STRONG>wbkgrnd</STRONG> functions set the background prop-
92 erty of the current or specified window and then apply
93 this setting to every character position in that window:
95 <STRONG>o</STRONG> The rendition of every character on the screen is
96 changed to the new background rendition.
98 <STRONG>o</STRONG> Wherever the former background character appears, it
99 is changed to the new background character.
102 </PRE>
103 <H3><a name="h3-getbkgrnd">getbkgrnd</a></H3><PRE>
104 The <STRONG>getbkgrnd</STRONG> function returns the given window's current
105 background character/attribute pair via the <STRONG>wch</STRONG> pointer.
108 </PRE>
109 <H2><a name="h2-NOTES">NOTES</a></H2><PRE>
110 Note that <STRONG>bkgrnd</STRONG>, <STRONG>bkgrndset</STRONG>, and <STRONG>getbkgrnd</STRONG> may be macros.
113 </PRE>
114 <H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE>
115 The <STRONG>bkgrndset</STRONG> and <STRONG>wbkgrndset</STRONG> routines do not return a
116 value.
118 Upon successful completion, the other functions return <STRONG>OK</STRONG>.
119 Otherwise, they return <STRONG>ERR</STRONG>. A null window pointer is
120 treated as an error.
123 </PRE>
124 <H2><a name="h2-SEE-ALSO">SEE ALSO</a></H2><PRE>
125 <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_bkgd.3x.html">curs_bkgd(3x)</A></STRONG>
129 <STRONG><A HREF="curs_bkgrnd.3x.html">curs_bkgrnd(3x)</A></STRONG>
130 </PRE>
131 <div class="nav">
132 <ul>
133 <li><a href="#h2-NAME">NAME</a></li>
134 <li><a href="#h2-SYNOPSIS">SYNOPSIS</a></li>
135 <li><a href="#h2-DESCRIPTION">DESCRIPTION</a>
136 <ul>
137 <li><a href="#h3-bkgrndset">bkgrndset</a></li>
138 <li><a href="#h3-bkgrnd">bkgrnd</a></li>
139 <li><a href="#h3-getbkgrnd">getbkgrnd</a></li>
140 </ul>
141 </li>
142 <li><a href="#h2-NOTES">NOTES</a></li>
143 <li><a href="#h2-RETURN-VALUE">RETURN VALUE</a></li>
144 <li><a href="#h2-SEE-ALSO">SEE ALSO</a></li>
145 </ul>
146 </div>
147 </BODY>
148 </HTML>