⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 curs_color.3x

📁 ncurses 库 可能有用酒用 没用就算了 我觉得还可以用
💻 3X
字号:
.\"***************************************************************************.\" Copyright (c) 1998-2004,2005 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.3x,v 1.27 2005/05/15 16:55:36 tom Exp $.TH curs_color 3X "".na.hy 0.SH NAME\fBstart_color\fR,\fBinit_pair\fR,\fBinit_color\fR,\fBhas_colors\fR,\fBcan_change_color\fR,\fBcolor_content\fR,\fBpair_content\fR,\fBCOLOR_PAIR\fR - \fBcurses\fR color manipulation routines.ad.hy.SH SYNOPSIS\fB# include <curses.h>\fR.br\fBint start_color(void);\fR.br\fBint init_pair(short pair, short f, short b);\fR.br\fBint init_color(short color, short r, short g, short b);\fR.br\fBbool has_colors(void);\fR.br\fBbool can_change_color(void);\fR.br\fBint color_content(short color, short *r, short *g, short *b);\fR.br\fBint pair_content(short pair, short *f, short *b);\fR.br.SH DESCRIPTION.SS Overview\fBcurses\fR support color attributes on terminals with that capability.  Touse these routines \fBstart_color\fR must be called, usually right after\fBinitscr\fR.  Colors are always used in pairs (referred to as color-pairs).A color-pair consists of a foreground color (for characters) and a backgroundcolor (for the blank field on which the characters are displayed).  Aprogrammer initializes a color-pair with the routine \fBinit_pair\fR.  After ithas been initialized, \fBCOLOR_PAIR\fR(\fIn\fR), a macro defined in\fB<curses.h>\fR, can be used as a new video attribute..SPIf a terminal is capable of redefining colors, the programmer can use theroutine \fBinit_color\fR to change the definition of a color.  The routines\fBhas_colors\fR and \fBcan_change_color\fR return \fBTRUE\fR or \fBFALSE\fR,depending on whether the terminal has color capabilities and whether theprogrammer can change the colors.  The routine \fBcolor_content\fR allows aprogrammer to extract the amounts of red, green, and blue components in aninitialized color.  The routine \fBpair_content\fR allows a programmer to findout how a given color-pair is currently defined..SS Routine DescriptionsThe \fBstart_color\fR routine requires no arguments.  It must becalled if the programmer wants to use colors, and before any othercolor manipulation routine is called.  It is good practice to callthis routine right after \fBinitscr\fR.  \fBstart_color\fR initializeseight basic colors (black, red, green, yellow, blue, magenta, cyan,and white), and two global variables, \fBCOLORS\fR and\fBCOLOR_PAIRS\fR (respectively defining the maximum number of colorsand color-pairs the terminal can support).  It also restores thecolors on the terminal to the values they had when the terminal wasjust turned on..SPThe \fBinit_pair\fR routine changes the definition of a color-pair.  It takesthree arguments: the number of the color-pair to be changed, the foregroundcolor number, and the background color number.For portable applications:.TP 5-The value of the first argumentmust be between \fB1\fR and \fBCOLOR_PAIRS-1\fR..TP 5-The value of the second andthird arguments must be between 0 and \fBCOLORS\fR.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..PPIf the color-pair was previouslyinitialized, the screen is refreshed and all occurrences of that color-pairare changed to the new definition..SPAs an extension, ncurses allows you to set color pair 0 viathe \fBassume_default_colors\fR routine, or to specify the use ofdefault colors (color number \fB-1\fR) if you first invoke the\fBuse_default_colors\fR routine..SPThe \fBinit_color\fR routine changes the definition of a color.  It takes fourarguments: the number of the color to be changed followed by three RGB values(for the amounts of red, green, and blue components).  The value of the firstargument must be between \fB0\fR and \fBCOLORS\fR.  (See the section\fBColors\fR for the default color index.)  Each of the last three argumentsmust be a value between 0 and 1000.  When \fBinit_color\fR is used, alloccurrences of that color on the screen immediately change to the newdefinition..SPThe \fBhas_colors\fR routine requires no arguments.  It returns \fBTRUE\fR ifthe terminal can manipulate colors; otherwise, it returns \fBFALSE\fR.  Thisroutine facilitates writing terminal-independent programs.  For example, aprogrammer can use it to decide whether to use color or some other videoattribute..SPThe \fBcan_change_color\fR routine requires no arguments.  It returns\fBTRUE\fR if the terminal supports colors and can change their definitions;other, it returns \fBFALSE\fR.  This routine facilitates writingterminal-independent programs..SPThe \fBcolor_content\fR routine gives programmers a way to find the intensityof the red, green, and blue (RGB) components in a color.  It requires fourarguments: the color number, and three addresses of \fBshort\fRs for storingthe information about the amounts of red, green, and blue components in thegiven color.  The value of the first argument must be between 0 and\fBCOLORS\fR.  The values that are stored at the addresses pointed to by thelast three arguments are between 0 (no component) and 1000 (maximum amount ofcomponent)..SPThe \fBpair_content\fR routine allows programmers to find out what colors agiven color-pair consists of.  It requires three arguments: the color-pairnumber, and two addresses of \fBshort\fRs for storing the foreground and thebackground color numbers.  The value of the first argument must be between 1and \fBCOLOR_PAIRS-1\fR.  The values that are stored at the addresses pointedto by the second and third arguments are between 0 and \fBCOLORS\fR..SS ColorsIn \fB<curses.h>\fR the following macros are defined.  These are the defaultcolors.  \fBcurses\fR also assumes that \fBCOLOR_BLACK\fR is the defaultbackground color for all terminals..SP.nf      \fBCOLOR_BLACK\fR      \fBCOLOR_RED\fR      \fBCOLOR_GREEN\fR      \fBCOLOR_YELLOW\fR      \fBCOLOR_BLUE\fR      \fBCOLOR_MAGENTA\fR      \fBCOLOR_CYAN\fR      \fBCOLOR_WHITE\fR.fi.SH RETURN VALUEThe routines \fBcan_change_color()\fR and \fBhas_colors()\fR return \fBTRUE\fRor \fBFALSE\fR..SPAll other routines return the integer \fBERR\fR upon failure and an \fBOK\fR(SVr4 specifies only "an integer value other than \fBERR\fR") upon successfulcompletion..PPX/Open defines no error conditions.This implementation will return \fBERR\fR on attempts touse 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_PAIR-1.Color values used in \fBinit_color\fP must be in the range 0 to 1000.An error is returned from all functionsif the terminal has not been initialized.An error is returned from secondary functions such as \fBinit_pair\fPif \fBstart_color\fP was not called..RS.TP 5\fBinit_color\fPreturns an error if the terminal does not supportthis feature, e.g., if the \fIinitialize_color\fP capability is absentfrom the terminal description..TP 5\fBstart_color\fPreturns an errorIf the color table cannot be allocated..RE.SH NOTESIn the \fIncurses\fR implementation, there is a separate color activation flag,color palette, color pairs table, and associated COLORS and COLOR_PAIRS countsfor each screen; the \fBstart_color\fR function only affects the currentscreen.  The SVr4/XSI interface is not really designed with this in mind, andhistorical implementations may use a single shared color palette..SPNote that setting an implicit background color via a color pair affects onlycharacter cells that a character write operation explicitly touches.  To changethe background color used when parts of a window are blanked by erasing orscrolling operations, see \fBcurs_bkgd\fR(3X)..SPSeveral caveats apply on 386 and 486 machines with VGA-compatible graphics:.TP 5-COLOR_YELLOW is actually brown.  To get yellow, use COLOR_YELLOW combined withthe \fBA_BOLD\fR attribute..TP 5-The A_BLINK attribute should in theory cause the background to go bright.  Thisoften fails to work, and even some cards for which it mostly works (such as theParadise and compatibles) do the wrong thing when you try to set a bright"yellow" background (you get a blinking yellow foreground instead)..TP 5-Color RGB values are not settable..SH PORTABILITYThis implementation satisfies XSI Curses's minimum maximumsfor \fBCOLORS\fR and \fBCOLOR_PAIRS\fR..PPThe \fBinit_pair\fP routine accepts negative values of foregroundand background color to support the \fBuse_default_colors\fP extension,but only if that routine has been first invoked..PPThe assumption that \fBCOLOR_BLACK\fR is the defaultbackground color for all terminals can be modified using the\fBassume_default_colors\fP extension..PPThis implementation checks the pointers,e.g., for the values returned by\fBcolor_content\fP and \fBpair_content\fP,and will treat those as optional parameters when null..SH SEE ALSO\fBcurses\fR(3X),\fBcurs_initscr\fR(3X),\fBcurs_attr\fR(3X),\fBdefault_colors\fR(3X).\"#.\"# The following sets edit modes for GNU EMACS.\"# Local Variables:.\"# mode:nroff.\"# fill-column:79.\"# End:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -