***************************************************************************
Copyright 2018-2022,2023 Thomas E. Dickey *
Copyright 1998-2016,2017 Free Software Foundation, Inc. *
*
Permission is hereby granted, free of charge, to any person obtaining a *
copy of this software and associated documentation files (the *
"Software"), to deal in the Software without restriction, including *
without limitation the rights to use, copy, modify, merge, publish, *
distribute, distribute with modifications, sublicense, and/or sell *
copies of the Software, and to permit persons to whom the Software is *
furnished to do so, subject to the following conditions: *
*
The above copyright notice and this permission notice shall be included *
in all copies or substantial portions of the Software. *
*
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
*
Except as contained in this notice, the name(s) of the above copyright *
holders shall not be used in advertising or otherwise to promote the *
sale, use or other dealings in this Software without prior written *
authorization. *
***************************************************************************
$Id: curs_color.3,v 1.11 2023/10/17 09:52:08 nicm Exp $
bool can_change_color(void); int init_pair(short pair, short f, short b);
int init_color(short color, short r, short g, short b);
/* extensions */
int init_extended_pair(int pair, int f, int b);
int init_extended_color(int color, int r, int g, int b); int color_content(short color, short *r, short *g, short *b);
int pair_content(short pair, short *f, short *b);
/* extensions */
int extended_color_content(int color, int *r, int *g, int *b);
int extended_pair_content(int pair, int *f, int *b); /* extensions */
void reset_color_pairs(void); int COLOR_PAIR(int n);
PAIR_NUMBER(attrs);
If a terminal is capable of redefining colors, the programmer can use the routine init_color to change the definition of a color. The routines has_colors and can_change_color return TRUE or FALSE, depending on whether the terminal has color capabilities and whether the programmer can change the colors. The routine color_content allows a programmer to extract the amounts of red, green, and blue components in an initialized color. The routine pair_content allows a programmer to find out how a given color-pair is currently defined.
Per-character and window attributes are usually set by a parameter containing video attributes including a color pair value. Some functions such as wattr_set use a separate parameter which is the color pair number.
The background character is a special case: it includes a character value, just as if it were passed to waddch.
The curses library does the actual work of combining these color pairs in an internal function called from waddch: .bP If the parameter passed to waddch is blank, and it uses the special color pair 0,
.bP curses next checks the window attribute. .bP If the window attribute does not use color pair 0, curses uses the color pair from the window attribute. .bP Otherwise, curses uses the background character.
Some curses functions such as wprintw call waddch. Those do not combine its parameter with a color pair. Consequently those calls use only the window attribute or the background character.
COLOR_BLACK COLOR_RED COLOR_GREEN COLOR_YELLOW COLOR_BLUE COLOR_MAGENTA COLOR_CYAN COLOR_WHITE
Some terminals support more than the eight (8) \*(``ANSI\*('' colors. There are no standard names for those additional colors.
These limits apply to color values and color pairs. Values outside these limits are not legal, and may result in a runtime error: .bP COLORS corresponds to the terminal database's max_colors capability, (see terminfo(\*n)). .bP color values are expected to be in the range 0 to COLORS-1, inclusive (including 0 and COLORS-1). .bP a special color value -1 is used in certain extended functions to denote the default color (see use_default_colors(3)). .bP COLOR_PAIRS corresponds to the terminal database's max_pairs capability, (see terminfo(\*n)). .bP legal color pair values are in the range 1 to COLOR_PAIRS-1, inclusive. .bP color pair 0 is special; it denotes \*(``no color\*(''.
Color pair 0 is assumed to be white on black, but is actually whatever the terminal implements before color is initialized. It cannot be modified by the application.If the color-pair was previously initialized, the screen is refreshed and all occurrences of that color-pair are changed to the new definition.
As an extension, ncurses allows you to set color pair 0 via the assume_default_colors(3) routine, or to specify the use of default colors (color number -1) if you first invoke the use_default_colors(3) routine.
When init_color is used, all occurrences of that color on the screen immediately change to the new definition.
All other routines return the integer ERR upon failure and an OK (SVr4 specifies only \*(``an integer value other than ERR\*('') upon successful completion.
X/Open defines no error conditions. SVr4 does document some error conditions which apply in general: .bP This implementation will return ERR on attempts to use color values outside the range 0 to COLORS-1 (except for the default colors extension), or use color pairs outside the range 0 to COLOR_PAIRS-1.
Color values used in init_color must be in the range 0 to 1000. An error is returned from all functions if the terminal has not been initialized. An error is returned from secondary functions such as init_pair if start_color was not called. .bP SVr4 does much the same, except that it returns ERR from pair_content if the pair was not initialized using init_pairs and it returns ERR from color_content if the terminal does not support changing colors. This implementation does not return ERR for either case.Specific functions make additional checks:
5 init_color returns an error if the terminal does not support this feature, e.g., if the initialize_color capability is absent from the terminal description.
5 start_color returns an error if the color table cannot be allocated.
Setting an implicit background color via a color pair affects only character cells that a character write operation explicitly touches. To change the background color used when parts of a window are blanked by erasing or scrolling operations, see curs_bkgd(3).
Several caveats apply on older x86 machines (e.g., i386, i486) with VGA-compatible graphics: .bP COLOR_YELLOW is actually brown. To get yellow, use COLOR_YELLOW combined with the A_BOLD attribute. .bP The A_BLINK attribute should in theory cause the background to go bright. This often fails to work, and even some cards for which it mostly works (such as the Paradise and compatibles) do the wrong thing when you try to set a bright \*(``yellow\*('' background (you get a blinking yellow foreground instead). .bP Color RGB values are not settable.
SVr4 made internal changes, e.g., moving the storage for the color state from SP (the SCREEN structure) to cur_term (the TERMINAL structure), but provided the same set of library functions.
SVr4 curses limits the number of color pairs to 64, reserving color pair zero (0) as the terminal's initial uncolored state. This limit arises because the color pair information is a bitfield in the chtype data type (denoted by A_COLOR).
Other implementations of curses had different limits: .bP PCCurses (1987-1990) provided for only eight (8) colors. .bP PDCurses (1992-present) inherited the 8-color limitation from PCCurses, but changed this to 256 in version 2.5 (2001), along with changing chtype from 16-bits to 32-bits. .bP X/Open Curses (1992-present) added a new structure cchar_t to store the character, attributes and color-pair values, allowing increased range of color-pairs. Both color-pairs and color-values used a signed short, limiting values to 15 bits. .bP ncurses (1992-present) uses eight bits for A_COLOR in chtype values.
Version 5.3 provided a wide-character interface (2002), but left color-pairs as part of the attributes-field. Since version 6 (2015), ncurses uses a separate int for color-pairs in the cchar_t values. When those color-pair values fit in 8 bits, ncurses allows color-pairs to be manipulated via the functions using chtype values. .bP NetBSD curses used 6 bits from 2000 (when colors were first supported) until 2004. At that point, NetBSD changed to use 10 bits. As of 2021, that size is unchanged. Like ncurses before version 6, the NetBSD color-pair information is stored in the attributes field of cchar_t, limiting the number of color-pairs by the size of the bitfield.The init_pair routine accepts negative values of foreground and background color to support the use_default_colors(3) extension, but only if that routine has been first invoked.
The assumption that COLOR_BLACK is the default background color for all terminals can be modified using the assume_default_colors(3) extension.
This implementation checks the pointers, e.g., for the values returned by color_content and pair_content, and will treat those as optional parameters when null.
X/Open Curses does not specify a limit for the number of colors and color pairs which a terminal can support. However, in its use of short for the parameters, it carries over SVr4's implementation detail for the compiled terminfo database, which uses signed 16-bit numbers. This implementation provides extended versions of those functions which use short parameters, allowing applications to use larger color- and pair-numbers.
The reset_color_pairs function is an extension of ncurses.