home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / ATT_GLOB.H next >
Encoding:
C/C++ Source or Header  |  1987-04-01  |  3.5 KB  |  81 lines

  1. /* att_glob.h --  contains default definitions and declarations of logical
  2.           attribute tables for use in Windows for C.  Nests in
  3.           wfc_glob.h.  The #defines for logical attributes are in
  4.           def_att.h, which is nested in wfc.h
  5.  
  6.     ************* Copyright 1985 by Vermont Creative Software **************
  7.  
  8. DATE:      April 2, 1987
  9. VERSION:  v4.12
  10.  
  11. IMPLEMENTING LOGICAL OR PHYSICAL ATTRIBUTES
  12.  
  13.     Logical attributes will be implemented if ATT_LOGIC is defined.  This is the
  14.     default condition set in wfc.h.
  15.  
  16.     To use physical attributes, #undef ATT_LOGIC here or in an include file
  17.     that precedes this one.  Alternatively, the #define ATT_LOGIC statement in
  18.     wfc.h could be commented out.  Generally, the include file for a specific
  19.     application would set ATT_LOGIC.
  20.  
  21. THE LOGICAL-ATTRIBUTE TABLE
  22.  
  23.     The physical attributes associated with each logical attribute are specified
  24.     in a logical-attribute table (two dimensional array), datt_tbl[][].  There
  25.     is a row for each logical attribute; the number of rows in the table equals
  26.     LATTQ.  The number of columns equals PATTQ, the number of physical
  27.     attributes for each logical attribute.  LATTQ and PATTQ are #defined in
  28.     def_att.h
  29.  
  30.     The system, as supplied has two physical attributes for each logical
  31.     attribute:    a monochrome attribute, and a color attribute; thus PATTQ is set
  32.     to two in att_def.h.  You can add more physical attributes by increasing the
  33.     value of PATTQ and adding more columns to the logical attribute table.
  34.  
  35. */
  36.  
  37. #ifdef ATT_LOGIC            /*LOGICAL ATTRIBUTES in use          */
  38. int _lattsw = 1;
  39. char latt[LATTQ];            /*array of logical attributes          */
  40.  
  41. char  datt_tbl [LATTQ] [PATTQ] =
  42. {
  43.    {NORMAL,               c_att(WHITE, BLACK)},           /*LDOS     */
  44.    {NORMAL,               c_att(WHITE, BLUE)},           /*LNORMAL  */
  45.    {REVERSE,               c_att(BLUE, WHITE)},           /*LREVERSE */
  46.    {NORMAL + HIGH_INT,           c_att(WHITE + LIGHT, BLUE)},       /*LHIGHLITE*/
  47.    {NORMAL + HIGH_INT + BLINK, c_att(RED + BLINK, BLACK)},       /*LURGENT  */
  48.    {NORMAL + HIGH_INT,           c_att(BLUE, WHITE)},           /*LHELP    */
  49.    {REVERSE,               c_att(RED, BLACK)},           /*LERROR   */
  50.    {NORMAL + HIGH_INT,           c_att(WHITE + LIGHT, BLUE)},       /*LMESSAGE */
  51.    {NORMAL + HIGH_INT,           c_att(CYAN, BLUE)},           /*LFIELDI  */
  52.    {REVERSE,               c_att(BLACK, CYAN)},           /*LFIELDA  */
  53.    {NORMAL + HIGH_INT,           c_att(BLACK, GREEN)},           /*LCHOICEI */
  54.    {REVERSE,               c_att(GREEN, BLACK)},           /*LCHOICEA */
  55.    {REVERSE,               c_att(BLUE, WHITE)},           /*LMARK    */
  56.    {0,                   c_att(BLUE, BLUE)},           /*LNODISPLA*/
  57.    {REVERSE,               c_att(BLACK, BLUE)},           /*LBLACK   */
  58.    {REVERSE,               c_att(BLUE, WHITE)},           /*LBLUE    */
  59.    {NORMAL,               c_att(GREEN, BLUE)},           /*LGREEN   */
  60.    {NORMAL,               c_att(CYAN, BLUE)},           /*LCYAN    */
  61.    {REVERSE,               c_att(RED, BLUE)},           /*LRED     */
  62.    {REVERSE,               c_att(MAGENTA, BLUE)},           /*LMAGENTA */
  63.    {NORMAL,               c_att(BROWN, BLUE)},           /*LBROWN   */
  64.    {NORMAL,               c_att(WHITE, BLUE)},           /*LWHITE   */
  65.    {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0},               /*RESERVED */
  66.    {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}               /*RESERVED */
  67.  
  68. };
  69. int _attrowq = LATTQ;            /*number of rows in attribute table   */
  70.  
  71. #else                    /*PHYSICAL ATTRIBUTES in use          */
  72.  
  73. int _lattsw = 0;
  74. char latt[1];                /*array of logical attributes          */
  75. char datt_tbl [1][PATTQ];
  76. int _attrowq = 1;
  77.  
  78. #endif
  79.  
  80. int _attcolq = PATTQ;            /*number of columns in attribute table*/
  81.