vendor/NCURSES: Remove version tag.
[dragonfly.git] / contrib / ncurses / doc / html / man / default_colors.3x.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
2 <!-- 
3   ****************************************************************************
4   * Copyright (c) 1998-2002,2003 Free Software Foundation, Inc.              *
5   *                                                                          *
6   * Permission is hereby granted, free of charge, to any person obtaining a  *
7   * copy of this software and associated documentation files (the            *
8   * "Software"), to deal in the Software without restriction, including      *
9   * without limitation the rights to use, copy, modify, merge, publish,      *
10   * distribute, distribute with modifications, sublicense, and/or sell       *
11   * copies of the Software, and to permit persons to whom the Software is    *
12   * furnished to do so, subject to the following conditions:                 *
13   *                                                                          *
14   * The above copyright notice and this permission notice shall be included  *
15   * in all copies or substantial portions of the Software.                   *
16   *                                                                          *
17   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
18   * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
19   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
20   * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
21   * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
22   * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
23   * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
24   *                                                                          *
25   * Except as contained in this notice, the name(s) of the above copyright   *
26   * holders shall not be used in advertising or otherwise to promote the     *
27   * sale, use or other dealings in this Software without prior written       *
28   * authorization.                                                           *
29   ****************************************************************************
30   * Author: Thomas E. Dickey 1997,1999,2000
31   * @Id: default_colors.3x,v 1.17 2003/10/25 20:41:08 tom Exp @
32 -->
33 <HTML>
34 <HEAD>
35 <TITLE>default_colors 3x</TITLE>
36 <link rev=made href="mailto:bug-ncurses@gnu.org">
37 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
38 </HEAD>
39 <BODY>
40 <H1>default_colors 3x</H1>
41 <HR>
42 <PRE>
43 <!-- Manpage converted by man2html 3.0.1 -->
44 <STRONG><A HREF="default_colors.3x.html">default_colors(3x)</A></STRONG>                             <STRONG><A HREF="default_colors.3x.html">default_colors(3x)</A></STRONG>
45
46
47
48
49 </PRE>
50 <H2>NAME</H2><PRE>
51        <STRONG>use_default_colors</STRONG>, <STRONG>assume_default_colors</STRONG> - use terminal's
52        default colors
53
54
55 </PRE>
56 <H2>SYNOPSIS</H2><PRE>
57        <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
58
59        <STRONG>int</STRONG> <STRONG>use_default_colors(void);</STRONG>
60        <STRONG>int</STRONG> <STRONG>assume_default_colors(int</STRONG> <STRONG>fg,</STRONG> <STRONG>int</STRONG> <STRONG>bg);</STRONG>
61
62
63 </PRE>
64 <H2>DESCRIPTION</H2><PRE>
65        The <EM>use</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors()</EM> and <EM>assume</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors()</EM> func-
66        tions are extensions to the curses library.  They are used
67        with terminals that support ISO 6429 color, or equivalent.
68        These terminals allow the application to reset color to an
69        unspecified default value (e.g., with SGR 39 or SGR 49).
70
71        Applications that paint  a  colored  background  over  the
72        whole  screen  do not take advantage of SGR 39 and SGR 49.
73        Some applications are designed to work  with  the  default
74        background,  using  colors  only  for  text.  For example,
75        there are several implementations of the <STRONG>ls</STRONG> program  which
76        use  colors to denote different file types or permissions.
77        These "color ls" programs do not  necessarily  modify  the
78        background  color, typically using only the <EM>setaf</EM> terminfo
79        capability  to  set  the  foreground  color.   Full-screen
80        applications  that  use default colors can achieve similar
81        visual effects.
82
83        The first function, <EM>use</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors()</EM> tells the  curses
84        library  to  assign terminal default foreground/background
85        colors to color number  -1.  So  init_pair(x,COLOR_RED,-1)
86        will  initialize  pair  x as red on default background and
87        init_pair(x,-1,COLOR_BLUE)  will  initialize  pair  x   as
88        default foreground on blue.
89
90        The  other,  <EM>assume</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors()</EM> is a refinement which
91        tells which colors to paint for color pair 0.  This  func-
92        tion  recognizes  a special color number -1, which denotes
93        the default terminal color.
94
95        The following are equivalent:
96               <EM>use</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors();</EM>
97               <EM>assume</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors(-1,-1);</EM>
98
99        These are ncurses extensions.  For other curses  implemen-
100        tations,  color  number -1 does not mean anything, just as
101        for ncurses before a successful call  of  <EM>use</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>col-</EM>
102        <EM>ors()</EM> or <EM>assume</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors()</EM>.
103
104        Other  curses  implementations do not allow an application
105        to modify color pair 0.  They assume that  the  background
106        is COLOR_BLACK, but do not ensure that the color pair 0 is
107        painted to match the assumption.  If your application does
108        not use either <EM>use</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>colors()</EM> or <EM>assume</EM><STRONG>_</STRONG><EM>default</EM><STRONG>_</STRONG><EM>col-</EM>
109        <EM>ors()</EM> ncurses will paint a white  foreground  (text)  with
110        black background for color pair 0.
111
112
113 </PRE>
114 <H2>RETURN VALUE</H2><PRE>
115        These functions return the integer <STRONG>ERR</STRONG> upon failure and <STRONG>OK</STRONG>
116        on success.  They will fail if either  the  terminal  does
117        not  support  the <EM>orig</EM><STRONG>_</STRONG><EM>pair</EM> or <EM>orig</EM><STRONG>_</STRONG><EM>colors</EM> capability.  If
118        the <EM>initialize</EM><STRONG>_</STRONG><EM>pair</EM> capability is found,  this  causes  an
119        error as well.
120
121
122 </PRE>
123 <H2>NOTES</H2><PRE>
124        Associated with this extension, the <STRONG><A HREF="init_pair.3x.html">init_pair(3x)</A></STRONG> function
125        accepts negative arguments to specify  default  foreground
126        or background colors.
127
128
129 </PRE>
130 <H2>PORTABILITY</H2><PRE>
131        These  routines  are  specific  to ncurses.  They were not
132        supported on Version 7, BSD or System  V  implementations.
133        It  is recommended that any code depending on them be con-
134        ditioned using NCURSES_VERSION.
135
136
137 </PRE>
138 <H2>SEE ALSO</H2><PRE>
139        <STRONG><A HREF="curs_color.3x.html">curs_color(3x)</A></STRONG>, <STRONG><A HREF="ded.1.html">ded(1)</A></STRONG>.
140
141
142 </PRE>
143 <H2>AUTHOR</H2><PRE>
144        Thomas Dickey (from an analysis of  the  requirements  for
145        color xterm for XFree86 3.1.2C, February 1996).
146
147
148
149                                                <STRONG><A HREF="default_colors.3x.html">default_colors(3x)</A></STRONG>
150 </PRE>
151 <HR>
152 <ADDRESS>
153 Man(1) output converted with
154 <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
155 </ADDRESS>
156 </BODY>
157 </HTML>