DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

curs_addwch(S-osr5)


curs_addwch: addwch, waddwch, mvaddwch, mvwaddwch, echowchar, wechowchar -- add a wchar_t character (with attributes) to a curses window and advance cursor

Syntax

cc ... -lcurses

#include <curses.h>

int addwch(chtype wch); int waddwch(WINDOW *win, chtype wch); int mvaddwch(int y, int x, chtype wch); int mvwaddwch(WINDOW *win, int y, int x, chtype wch); int echowchar(chtype wch); int wechowchar(WINDOW *win, chtype wch);

Description

The addwch(S-osr5), waddwch(S-osr5), mvaddwch(S-osr5), and mvwaddwch(S-osr5) routines put the character wch, holding a wchar_t character, into the window at the current cursor position of the window and advance the position of the window cursor. Their function is like that of putwchar(S-osr5) in the C multibyte library. At the right margin, an automatic newline is done. At the bottom of the scrolling region, if scrollok(S-osr5) is enabled, the scrolling region is scrolled up one line.

If wch is a tab, newline, or backspace, the cursor is moved appropriately within the window. A newline also does a clrtoeol(S-osr5) before moving. Tabs are considered to be at every eighth column. If wch is another control character, it is drawn in the ^X notation. Calling winwch(S-osr5) after adding a control character does not return the control character, but instead returns the representation of the control character.

Video attributes can be combined with a wchar_t character by ORing them into the parameter. This results in these attributes also being set. (The intent here is that text, including attributes, can be copied from one place to another using inwch(S-osr5) and addwch( ).) (see standout(S-osr5), predefined video attribute constants, on the curs_attr(S-osr5) page).

The routines echowchar(S-osr5) and wechowchar(S-osr5) are functionally equivalent to a call to addwch( ) followed by a call to refresh(S-osr5), or a call to waddwch( ) followed by a call to wrefresh(S-osr5). The knowledge that only a single character is being output is taken into consideration and, for non-control characters, a considerable performance gain might be seen by using these routines instead of their equivalents.

Line graphics

You can use the following variables to add line drawing characters to the screen using routines of the addwch( ) family. When variables are defined for the terminal, the A_ALTCHARSET bit is turned on (see curs_attr(S-osr5)). Otherwise, the default character listed below is stored in the variable. The names chosen are consistent with VT100 nomenclature.

Name Default Glyph Description
ACS_ULCORNER + upper left-hand corner
ACS_LLCORNER + lower left-hand corner
ACS_URCORNER + upper right-hand corner
ACS_LRCORNER + lower right-hand corner
ACS_TTEE + top tee
ACS_RTEE + right tee
ACS_LTEE + left tee
ACS_BTEE + bottom tee
ACS_HLINE - horizontal line
ACS_VLINE | vertical line
ACS_PLUS + plus
ACS_S1 - scan line 1
ACS_S9 _ scan line 9
ACS_DIAMOND + diamond
ACS_CKBOARD : checker board (stipple)
ACS_DEGREE ' degree symbol
ACS_PLMINUS # plus/minus
ACS_BULLET o bullet
ACS_LARROW < arrow pointing left
ACS_RARROW > arrow pointing right
ACS_DARROW v arrow pointing down
ACS_UARROW [^] arrow pointing up
ACS_BOARD # board of squares
ACS_LANTERN # lantern symbol
ACS_BLOCK # solid square block

 +-------------+----------+---------------------------+
 |Name         | Default  |  Glyph Description        |
 +-------------+----------+---------------------------+
 |ACS_ULCORNER |    +     |  upper left-hand corner   |
 +-------------+----------+---------------------------+
 |ACS_LLCORNER |    +     |  lower left-hand corner   |
 +-------------+----------+---------------------------+
 |ACS_URCORNER |    +     |  upper right-hand corner  |
 +-------------+----------+---------------------------+
 |ACS_LRCORNER |    +     |  lower right-hand corner  |
 +-------------+----------+---------------------------+
 |ACS_TTEE     |    +     |  top tee                  |
 +-------------+----------+---------------------------+
 |ACS_RTEE     |    +     |  right tee                |
 +-------------+----------+---------------------------+
 |ACS_LTEE     |    +     |  left tee                 |
 +-------------+----------+---------------------------+
 |ACS_BTEE     |    +     |  bottom tee               |
 +-------------+----------+---------------------------+
 |ACS_HLINE    |    -     |  horizontal line          |
 +-------------+----------+---------------------------+
 |ACS_VLINE    |    |     |  vertical line            |
 +-------------+----------+---------------------------+
 |ACS_PLUS     |    +     |  plus                     |
 +-------------+----------+---------------------------+
 |ACS_S1       |    -     |  scan line 1              |
 +-------------+----------+---------------------------+
 |ACS_S9       |    _     |  scan line 9              |
 +-------------+----------+---------------------------+
 |ACS_DIAMOND  |    +     |  diamond                  |
 +-------------+----------+---------------------------+
 |ACS_CKBOARD  |    :     |  checker board (stipple)  |
 +-------------+----------+---------------------------+
 |ACS_DEGREE   |    '     |  degree symbol            |
 +-------------+----------+---------------------------+
 |ACS_PLMINUS  |    #     |  plus/minus               |
 +-------------+----------+---------------------------+
 |ACS_BULLET   |    o     |  bullet                   |
 +-------------+----------+---------------------------+
 |ACS_LARROW   |    <     |  arrow pointing left      |
 +-------------+----------+---------------------------+
 |ACS_RARROW   |    >     |  arrow pointing right     |
 +-------------+----------+---------------------------+
 |ACS_DARROW   |    v     |  arrow pointing down      |
 +-------------+----------+---------------------------+
 |ACS_UARROW   |    ^     |  arrow pointing up        |
 +-------------+----------+---------------------------+
 |ACS_BOARD    |    #     |  board of squares         |
 +-------------+----------+---------------------------+
 |ACS_LANTERN  |    #     |  lantern symbol           |
 +-------------+----------+---------------------------+
 |ACS_BLOCK    |    #     |  solid square block       |
 +-------------+----------+---------------------------+

Return values

All routines return the integer ERR on failure and an integer value other than ERR on successful completion, unless otherwise noted in the preceding routine descriptions.

Warning

The header file curses.h automatically includes the header files stdio.h and unctrl.h.

The following can be macros: addwch( ), mvaddwch( ), mvwaddwch( ), and echowchar( ).

Files


/usr/lib/libcurses.a
the library

See also

curses(S-osr5), curs_attr(S-osr5), curs_clear(S-osr5), curs_inch(S-osr5), curs_outopts(S-osr5), curs_refresh(S-osr5), putwc(S-osr5)

Standards conformance

addwch(S-osr5), waddwch(S-osr5), mvaddwch(S-osr5), mvwaddwch(S-osr5), echowchar(S-osr5), and wechowchar(S-osr5) are not part of any currently supported standard; they were developed by UNIX System Laboratories, Inc. and are maintained by The SCO Group.
© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005