DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

bkgd(CURSES)


bkgd -- background attribute manipulation

Synopsis

cc [options] file -lcurses
#include <curses.h>

int bkgd(chtype ch);

void bkgdset(chtype ch);

chtype getbkgd(WINDOW *win);

int wbkgd(WINDOW *win, chtype ch);

void wbkgdset(WINDOW *win, chtype ch);

Description

The bkgdset(CURSES) and wbkgdset(CURSES) functions turn off the previous background attributes, logical OR the requested attributes into the window rendition, and set the background property of the current or specified window based on the information in ch. If ch refers to a multi-column character, the results are undefined.

The bkgd(CURSES) and wbkgd(CURSES) functions turn off the previous background attributes, logical OR the requested attributes into the window rendition, and set the background property of the current or specified window and then apply this setting to every character position in that window:

The getbkgd(CURSES) function extracts the specified window's background character and rendition.

Return value

Upon successful completion, bkgd(CURSES) and wbkgd(CURSES) return OK. Otherwise, they return ERR.

The bkgdset(CURSES) and wbkgdset(CURSES) functions do not return a value.

Upon successful completion, getbkgd(CURSES) returns the specified window's background character and rendition. Otherwise, it returns (chtype)ERR.

Errors

No errors are defined.

Usage

These functions are only guaranteed to operate reliably on character sets in which each character fits into a single byte, whose attributes can be expressed using only constants with the A_ prefix.

Standards Conformance

The Single UNIX Specification, Version 2; The Open Group.

References

``Rendition'', curses(F)
© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 - 01 June 2005