curs_variables.3x - Man Page

curses data types, constants, and global variables

Synopsis

#include <curses.h>

/* data types */
typedef /* ... */ bool;
typedef /* ... */ chtype;
typedef /* ... */ cchar_t;
typedef /* ... */ attr_t;
typedef /* ... */ SCREEN;
typedef /* ... */ WINDOW;

/* constants */
const bool TRUE;
const bool FALSE;

const /* ... */ ERR;
const /* ... */ OK;

/* variables */
int COLORS;
int COLOR_PAIRS;
int COLS;
int LINES;
WINDOW * curscr;
WINDOW * stdscr;

/* extensions */
int ESCDELAY;
int TABSIZE;
WINDOW * newscr;

Description

This page summarizes data types, constants, and variables provided by the curses library. Locate further discussion in curses(3X).

Depending on ncurses's build-time configuration, the variables may instead be macros (see curs_threads(3X) and curs_opaque(3X)) that provide read-only access to the library's state. In either case, applications should treat them as read-only to avoid confusing the library.

Constants

True, False

The curses library defines TRUE and FALSE to represent the values of the Boolean data type.

Err, Ok

curses and terminfo routines frequently return these constant integral values indicating failure and success, respectively.

Predefined Types

bool

X/Open Issue 4 curses (1996) preceded the ISO C99 and ISO C++98 standards, each of which also defined a Boolean data type. The curses library requires an integral type bool.

ncurses' configure script attempts to discover the data type used by the system's C and C++ compilers, to reuse for the curses bool.

chtype

The chtype integral type combines a (“narrow”, 8-bit) character with attributes encoding the character's rendition, such as the styling of its typeface and/or foreground and background colors. See, for example, addch(3X), attron(3X), and inch(3X).

cchar_t, attr_t

chtype is too small for the standard C library's wide-character type, wchar_t. cchar_t is a type that can accommodate an attr_t and enough wide characters to store what Unicode terms a grapheme cluster (a “user-perceived character” [UAX #29], which may nevertheless require several character encoding units to represent). attr_t is an integral type storing “wide” attributes that apply to cchar_ts. See, for example, add_wch(3X), attr_on(3X), and in_wch(3X).

Screen

curses manages a terminal device with this structure type; see initscr(3X).

Window

curses represents rectangular portions of the terminal screen with the WINDOW structure type; see subsection “Overview” of ncurses(3X).

Variables

curscr, stdscr, newscr

The library records updates to the terminal screen in a window named curscr. This object is referred to as the “physical screen” in curs_refresh(3X) and curs_outopts(3X).

ncurses collects pending updates to the terminal screen in a window named newscr. This object is referred to as the “virtual screen” in the curs_kernel(3X), curs_refresh(3X), and curs_outopts(3X). When the screen is refreshed, curses determines a minimal set of updates using the terminal's capabilities to make curscr look like newscr.

Once curses is initialized, it creates a window named stdscr. It is the same size as the terminal screen and is the default window used by routines that do not take a parameter identifying one. Many curses functions use this window.

Colors

Once curses is initialized, COLORS contains the number of colors supported by the terminal; see curs_color(3X).

Color_pairs

Once curses is initialized, COLOR_PAIRS contains the number of color pairs supported by the terminal; see curs_color(3X).

Cols, Lines

Once curses is initialized, COLS and LINES contain the screen's width and height in character cells, respectively; that is, the number of columns and lines.

Escdelay

For curses to distinguish an escape character corresponding to a user's press of an “Escape” key on the input device from one included in a control sequence used by a cursor movement or function key, the library waits to see if another key event occurs after the escape character. ESCDELAY stores this interval in milliseconds.

Tabsize

The curses library converts a tab character to this number of spaces as it adds a tab to a window; see curs_addch(3X).

Notes

Either initscr(3X) or newterm(3X) initializes curses.

If ncurses is configured to provide separate curses and terminfo libraries, most of these variables reside in the curses library.

Portability

The X/Open Curses standard documents all of the foregoing types and symbols except for newscr, Tabsize, and Escdelay.

X/Open Curses describes curscr only as “an internal data structure”; SVr4 gave more details, noting its use “for certain low-level operations like clearing and redrawing a screen containing garbage”. Neither specified its interaction with the rest of the interface beyond use as an argument to clearok(3X) and wrefresh(3X).

newscr is a feature of SVr4 curses. When refreshing the screen, it is used as a working area for combining the standard window stdscr with any others the application may have created with newwin(3X). When the update of newscr is complete, curses modifies curscr to match newscr.

Tabsize is a feature of SVr4 curses.

Escdelay is a feature of AIX curses.

ncurses has long used Escdelay with units of milliseconds, making it impossible to be completely compatible with AIX. Consequently, most users have decided either to override the value, or to rely upon its default.

See Also

curses(3X), curs_color(3X), curs_opaque(3X), curs_terminfo(3X), curs_threads(3X), term_variables(3X), terminfo(5)

[UAX #29] “Unicode Standard Annex #29: Unicode Text Segmentation”; <https://unicode.org/reports/tr29/>

Referenced By

The man pages attr_t.3x(3), bool.3x(3), cchar_t.3x(3), chtype.3x(3), COLOR_PAIRS.3x(3), COLORS.3x(3), COLS.3x(3), curscr.3x(3), ERR.3x(3), ESCDELAY.3x(3), FALSE.3x(3), LINES.3x(3), newscr.3x(3), OK.3x(3), SCREEN.3x(3), stdscr.3x(3), TABSIZE.3x(3), TRUE.3x(3) and WINDOW.3x(3) are aliases of curs_variables.3x(3).

2024-01-05 ncurses 6.4 Library calls