home *** CD-ROM | disk | FTP | other *** search
- NAME
- wattrset() wattron() wattroff() wstandout() wstandend()
- attrset() attron() attroff()
- standout() standend() - set and clear various attributes
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- void wattrset(win,attrs)
- WINDOW *win;
- int attrs;
-
- void wattron(win,attrs)
- WINDOW *win;
- int attrs;
-
- void wattroff(win,attrs)
- WINDOW *win;
- int attrs;
-
- void wstandout(win)
- WINDOW *win;
-
- void wstandend(win)
- WINDOW *win;
-
- void attrset(attrs)
- int attrs;
-
- void attron(attrs)
- int attrs;
-
- void attroff(attrs)
- int attrs;
-
- void standout()
-
- void standend()
-
- DESCRIPTION
- wattrset() sets the attributes as specified in window 'win'.
-
- wattron() sets the specified attribute(s) in window 'win'.
- wattroff() clears the specified attribute(s) in window 'win'.
-
- wstandout() starts standout mode in window 'win'.
- wstandend() clears all special attributes in window 'win'.
-
- attrset() sets the attributes as specified in stdscr.
-
- attron() sets the specified attribute(s) in stdscr.
- attroff() clears the specified attribute(s) in stdscr.
-
- standout() starts standout mode in stdscr.
- standend() clears all special attributes in stdscr.
-
- EXAMPLES
-
- SEE ALSO
-
- BUGS
-