Manual Pages for UNIX Darwin command on man default_colors
MyWebUniversity

Manual Pages for UNIX Darwin command on man default_colors

defaultcolors(3X) defaultcolors(3X)

NAME

uusseeddeeffaauullttccoolloorrss, aassssuummeeddeeffaauullttccoolloorrss - use terminal's default col-

ors

SYNOPSIS

##iinncclluuddee <>

iinntt uusseeddeeffaauullttccoolloorrss((vvooiidd));; iinntt aassssuummeeddeeffaauullttccoolloorrss((iinntt ffgg,, iinntt bbgg));;

DESCRIPTION

The usedefaultcolors() and assumedefaultcolors() functions are extensions to the curses library. They are used with terminals that support ISO 6429 color, or equivalent. These terminals allow the application to reset color to an unspecified default value (e.g., with SGR 39 or SGR 49). Applications that paint a colored background over the whole screen do not take advantage of SGR 39 and SGR 49. Some applications are designed to work with the default background, using colors only for text. For example, there are several implementations of the llss program which use colors to denote different file types or permissions. These "color ls" programs do not necessarily modify the background color,

typically using only the setaf terminfo capability to set the fore-

ground color. Full-screen applications that use default colors can

achieve similar visual effects. The first function, usedefaultcolors() tells the curses library to assign terminal default foreground/background colors to color number

-1. So initpair(x,COLORRED,-1) will initialize pair x as red on

default background and initpair(x,-1,COLORBLUE) will initialize pair

x as default foreground on blue. The other, assumedefaultcolors() is a refinement which tells which colors to paint for color pair 0. This function recognizes a special

color number -1, which denotes the default terminal color.

The following are equivalent: usedefaultcolors();

assumedefaultcolors(-1,-1);

These are ncurses extensions. For other curses implementations, color

number -1 does not mean anything, just as for ncurses before a success-

ful call of usedefaultcolors() or assumedefaultcolors(). Other curses implementations do not allow an application to modify color pair 0. They assume that the background is COLORBLACK, but do not ensure that the color pair 0 is painted to match the assumption. If your application does not use either usedefaultcolors() or assumedefaultcolors() ncurses will paint a white foreground (text) with black background for color pair 0. RREETTUURRNN VVAALLUUEE These functions return the integer EERRRR upon failure and OOKK on success. They will fail if either the terminal does not support the origpair or origcolors capability. If the initializepair capability is found, this causes an error as well. NNOOTTEESS

Associated with this extension, the iinniittppaaiirr(3X) function accepts neg-

ative arguments to specify default foreground or background colors. The usedefaultcolors() function was added to support ded. This is a

full-screen application which uses curses to manage only part of the

screen. The bottom portion of the screen, which is of adjustable size, is left uncolored to display the results from shell commands. The top portion of the screen colors filenames using a scheme like the "color ls" programs. Attempting to manage the background color of the screen for this application would give unsatisfactory results for a variety of reasons. This extension was devised after noting that color xterm (and

similar programs) provides a background color which does not necessar-

ily correspond to any of the ANSI colors. While a special terminfo entry could be constructed using nine colors, there was no mechanism provided within curses to account for the related origpair and backcolorerase capabilities. The assumedefaultcolors() function was added to solve a different problem: support for applications which would use environment variables and other configuration to bypass curses' notion of the terminal's default colors, setting specific values. PPOORRTTAABBIILLIITTYY These routines are specific to ncurses. They were not supported on Version 7, BSD or System V implementations. It is recommended that any code depending on them be conditioned using NCURSESVERSION.

SEE ALSO

ccuurrssccoolloorr(3X), ddeedd(1). AUTHOR Thomas Dickey (from an analysis of the requirements for color xterm for XFree86 3.1.2C, February 1996). defaultcolors(3X)




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™