X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_attr.3x.html;h=2cad02023458a43a5156417840ecb1cd339a7700;hp=42e15c799d8fd659eacbdbc24a4326bd430a25a6;hb=6208c89f98f1cf9fe0980bd8e791846ce007a13d;hpb=e3d8d5a5a9425b40e09df86a597c3e971dced9d1 diff --git a/doc/html/man/curs_attr.3x.html b/doc/html/man/curs_attr.3x.html index 42e15c79..2cad0202 100644 --- a/doc/html/man/curs_attr.3x.html +++ b/doc/html/man/curs_attr.3x.html @@ -27,7 +27,7 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: curs_attr.3x,v 1.43 2015/12/05 18:46:04 tom Exp @ + * @Id: curs_attr.3x,v 1.44 2015/12/13 21:54:05 tom Exp @ --> @@ -46,8 +46,7 @@ - -

NAME

+

NAME

        attroff, wattroff, attron, wattron, attrset, wattrset,
        color_set, wcolor_set, standend, wstandend, standout,
        wstandout, attr_get, wattr_get, attr_off, wattr_off,
@@ -56,8 +55,7 @@
        window attribute control routines
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <curses.h>
        int attroff(int attrs);
        int wattroff(WINDOW *win, int attrs);
@@ -93,8 +91,7 @@
        PAIR_NUMBER(attrs);
 
 
-
-

DESCRIPTION

+

DESCRIPTION

        These  routines  manipulate  the current attributes of the
        named window.  The current attributes of a window apply to
        all characters that are written into the window with wadd-
@@ -106,8 +103,7 @@
        on the screen.
 
 
-
-

attrset

+

attrset

        The  routine  attrset  sets  the current attributes of the
        given window to attrs.  The routine attroff turns off  the
        named  attributes  without turning any other attributes on
@@ -123,8 +119,7 @@
        used for erasing and clearing.
 
 
-
-

attr_set

+

attr_set

        The attrset routine is actually a legacy feature predating
        SVr4 curses but kept in X/Open Curses for the same  reason
        that  SVr4 curses kept it: compatibility.  The routine at-
@@ -135,16 +130,14 @@
        ments of type attr_t rather than int.
 
 
-
-

color_set

+

color_set

        The routine color_set sets the current color of the  given
        window  to the foreground/background combination described
        by the color_pair_number.  The parameter opts is  reserved
        for future use, applications must supply a null pointer.
 
 
-
-

attr_get

+

attr_get

        The  routine  wattr_get  returns the current attribute and
        color pair for the given window; attr_get returns the cur-
        rent attribute and color pair for stdscr.
@@ -154,8 +147,7 @@
        curs_legacy(3x)).
 
 
-
-

chgat

+

chgat

        The routine chgat changes the attributes of a given number
        of characters starting at the current cursor  location  of
        stdscr.   It  does not update the cursor and does not per-
@@ -170,8 +162,7 @@
        (leave it NULL).
 
 
-
-

Attributes

+

Attributes

        The following video attributes, defined in <curses.h>, can
        be passed to the routines attron, attroff, and attrset, or
        OR'd with the characters passed to  addch  (see  curs_add-
@@ -220,8 +211,7 @@
        claims (falsely) that these routines always return 1.
 
 
-
-

NOTES

+

NOTES

        Note that attroff,  wattroff,  attron,  wattron,  attrset,
        wattrset, standend and standout may be macros.
 
@@ -233,8 +223,7 @@
        support more than 256 color pairs.
 
 
-
-

PORTABILITY

+

PORTABILITY

        These functions are supported in the XSI Curses  standard,
        Issue  4.   The  standard  defined  the dedicated type for
        highlights, attr_t, which is not defined in  SVr4  curses.
@@ -289,8 +278,7 @@
        (i.e., via the sgr1 capability).
 
 
-
-

RETURN VALUE

+

RETURN VALUE

        All routines return the integer OK on success, or  ERR  on
        failure.
 
@@ -307,8 +295,7 @@
        outside the window, or if the window pointer is null.
 
 
-
-

SEE ALSO

+

SEE ALSO

        curses(3x), curs_addch(3x), curs_addstr(3x),
        curs_bkgd(3x), curs_printw(3x), curs_variables(3x)