Description |
 |
The vidputs() and vidattr() routines are low-level
routines used outside of CURSES to deal directly with
the terminfo database. The use of appropriate CURSES routines is recommended for most situations.
The vidputs() routine enables and disables attributes for the
current terminal. The attributes shown in Table 4-8 “Constant Values for Highlighting Attributes” are defined in curses.h and can be combined with the bitwise OR operator.
Table 4-8 Constant Values for Highlighting Attributes
Constant | Description |
---|
A_ALTCHARSET | Alternate character set |
A_ATTRIBUTES | Attribute mask |
A_BLINK | Blinking |
A_BOLD | Bold |
A_CHARTEXT | Character mask |
A_COLOR | Color mask |
A_DIM | Dim |
A_INVIS | Invisible |
A_NORMAL | Disable attributes |
A_PROTECT | No display |
A_REVERSE | Reverse video |
A_STANDOUT | Highlights specific to terminal |
A_UNDERLINE | Underline |
COLOR_PAIR(n) | Color-pair number n |
PAIR_NUMBER(a) | Pair number for COLOR_PAIR(n) |
The characters are passed one at a time to the putc
routine, a routine similar to putchar().
The vidattr() routine is similar to vidputs() except characters are sent to stdout instead of a user-supplied output function.