home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / cursesp.zip / BOXES.C < prev    next >
C/C++ Source or Header  |  1991-12-02  |  5KB  |  125 lines

  1. /****************************************************************/
  2. /* Box() routines of the PCcurses package                       */
  3. /*                                                              */
  4. /****************************************************************/
  5. /* This version of curses is based on ncurses, a curses version */
  6. /* originally written by Pavel Curtis at Cornell University.    */
  7. /* I have made substantial changes to make it run on IBM PC's,  */
  8. /* and therefore consider myself free to make it public domain. */
  9. /*              Bjorn Larsson (...mcvax!enea!infovax!bl)        */
  10. /****************************************************************/
  11. /* 1.0: Release:                                        870515  */
  12. /* 1.2: Max limits off by 1. Fixed thanks to S. Creps:  881002  */
  13. /* 1.3: MSC '-W3', Turbo'C' '-w -w-pro' checks. Support         */
  14. /*      for border(), wborder() functions:              881005  */
  15. /****************************************************************/
  16.  
  17. #include <curses.h>
  18. #include <curspriv.h>
  19.  
  20. char _curses_boxes_rcsid[] = "@(#)boxes.c v1.3 - 881005";
  21.  
  22. /****************************************************************/
  23. /* wbox(win,ymin,xmin,ymax,xmax,v,h) draws a box in window      */
  24. /* 'win', enclosing the area xmin-xmax and ymin-xmax. If        */
  25. /* xmax and/or ymax is 0, the window max value is used. 'v' and */
  26. /* 'h' are the vertical and horizontal characters to use. If    */
  27. /* 'v' and 'h' are PC grapics lines, wbox will make the corners */
  28. /* in a pretty way.                                             */
  29. /****************************************************************/
  30.  
  31. int     wbox(WINDOW *win, int ymin, int xmin, int ymax, 
  32.          int xmax, int v, int h)
  33.   {
  34.   static int     l, r, t, b, tl, tr, bl,br;     /* border chars */
  35.   int            i;
  36.  
  37.   if (ymax == 0)
  38.     ymax = win->_maxy - 1;
  39.   if (xmax == 0)
  40.     xmax = win->_maxx - 1;
  41.  
  42.   if (ymin >= win->_maxy || ymax > win->_maxy ||
  43.       xmin >= win->_maxx || xmax > win->_maxx ||
  44.       ymin >= ymax || xmin >= xmax
  45.      )
  46.      return(ERR);
  47.  
  48.   l = r = v & 0xff;                     /* get rid of sign-extended int */
  49.   t = b = h & 0xff;
  50.   tl = tr = bl = br = v;                /* default same as vertical */
  51.  
  52.   if (l == 0xba)                        /* vertical double bars */
  53.     {
  54.     if (t == 0xcd)                      /* horizontal too? */
  55.       {tl=0xc9;tr=0xbb;bl=0xc8;br=0xbc;}/* use double bar corners */
  56.     else
  57.       {tl=0xd6;tr=0xb7;bl=0xd3;br=0xbd;}/* use hor-s vert-d corners */
  58.     } /* if */
  59.  
  60.   if (l == 0xb3)                        /* vertical single bars */
  61.     {
  62.     if (t == 0xcd)                      
  63.       {tl=0xd5;tr=0xb8;bl=0xd4;br=0xbe;}/* horizontal double bars */
  64.     else                                
  65.       {tl=0xda;tr=0xbf;bl=0xc0;br=0xd9;}/* use hor-s vert-s bars */
  66.     } /* if */
  67.  
  68.   if (win->_borderchars[0])             /* border() settings override parms */
  69.     l = win->_borderchars[0];
  70.   if (win->_borderchars[3])
  71.     r = win->_borderchars[1];
  72.   if (win->_borderchars[3])
  73.     t = win->_borderchars[2];
  74.   if (win->_borderchars[3])
  75.     b = win->_borderchars[3];
  76.   if (win->_borderchars[4])
  77.     tl = win->_borderchars[4];
  78.   if (win->_borderchars[5])
  79.     tr = win->_borderchars[5];
  80.   if (win->_borderchars[6])
  81.     bl = win->_borderchars[6];
  82.   if (win->_borderchars[7])
  83.     br = win->_borderchars[7];
  84.  
  85.   for (i = xmin+1;i <= xmax-1;i++)
  86.     {
  87.     win->_line[ymin][i] = t | win->_attrs;
  88.     win->_line[ymax][i] = b | win->_attrs;
  89.     }
  90.   for (i = ymin+1;i <= ymax-1;i++)
  91.     {
  92.     win->_line[i][xmin] = l | win->_attrs;
  93.     win->_line[i][xmax] = r | win->_attrs;
  94.     }
  95.   win->_line[ymin][xmin] = tl | win->_attrs;
  96.   win->_line[ymin][xmax] = tr | win->_attrs;
  97.   win->_line[ymax][xmin] = bl | win->_attrs;
  98.   win->_line[ymax][xmax] = br | win->_attrs;
  99.  
  100.   for (i=ymin; i <= ymax ; i++)
  101.     {
  102.     if (win->_minchng[i] == _NO_CHANGE)
  103.       {
  104.       win->_minchng[i] = xmin;
  105.       win->_maxchng[i] = xmax;
  106.       } /* if */
  107.     else
  108.       {
  109.       win->_minchng[i] = min(win->_minchng[i], xmin);
  110.       win->_maxchng[i] = max(win->_maxchng[i], xmax);
  111.       } /* else */
  112.     } /* for */
  113.   return(OK);
  114.   } /* box */
  115.  
  116. /****************************************************************/
  117. /* box(win,v,h) draws a box around window window 'win'. 'v' and */
  118. /* 'h' are the vertical and horizontal characters to use.       */
  119. /****************************************************************/
  120.  
  121. void    box(WINDOW *win, int v, int h)
  122.   {
  123.   wbox(win,0,0,0,0,v,h);
  124.   } /* box */
  125.