home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 4 / wattron.m < prev    next >
Encoding:
Text File  |  1993-09-02  |  1.2 KB  |  63 lines

  1. NAME
  2.     wattrset() wattron() wattroff() wstandout() wstandend()
  3.     attrset() attron() attroff()
  4.     standout() standend() - set and clear various attributes
  5.  
  6. SYNOPSIS
  7.     #include <curses.h>  
  8.     #include <curspriv.h>  
  9.  
  10.     void wattrset(win,attrs)  
  11.     WINDOW *win;  
  12.     int attrs;  
  13.  
  14.     void wattron(win,attrs)
  15.     WINDOW *win;
  16.     int attrs;  
  17.  
  18.     void wattroff(win,attrs)
  19.     WINDOW *win;
  20.     int attrs;  
  21.  
  22.     void wstandout(win)  
  23.     WINDOW *win;
  24.  
  25.     void wstandend(win)
  26.     WINDOW *win;
  27.  
  28.     void attrset(attrs)  
  29.     int attrs;
  30.  
  31.     void attron(attrs)
  32.     int attrs;
  33.  
  34.     void attroff(attrs)
  35.     int attrs;
  36.  
  37.     void standout()
  38.  
  39.     void standend()
  40.  
  41. DESCRIPTION
  42.     wattrset() sets the attributes as specified in window 'win'.  
  43.  
  44.     wattron() sets the specified attribute(s) in window 'win'.  
  45.     wattroff() clears the specified attribute(s) in window 'win'.  
  46.  
  47.     wstandout() starts standout mode in window 'win'.  
  48.     wstandend() clears all special attributes in window 'win'.  
  49.  
  50.     attrset() sets the attributes as specified in stdscr.  
  51.  
  52.     attron() sets the specified attribute(s) in stdscr.  
  53.     attroff() clears the specified attribute(s) in stdscr.  
  54.  
  55.     standout() starts standout mode in stdscr.  
  56.     standend() clears all special attributes in stdscr.  
  57.  
  58. EXAMPLES
  59.  
  60. SEE ALSO
  61.  
  62. BUGS
  63.