home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / harbb30g.zip / INCLUDE / box.ch < prev    next >
Text File  |  1999-09-15  |  3KB  |  64 lines

  1. /*
  2.  * $Id: box.ch,v 1.5 1999/09/15 14:03:36 vszel Exp $
  3.  */
  4.  
  5. /*
  6.  * Harbour Project source code:
  7.  * Header file for box drawing
  8.  *
  9.  * Copyright 1999 {list of individual authors and e-mail addresses}
  10.  * www - http://www.harbour-project.org
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version, with one exception:
  16.  *
  17.  * The exception is that if you link the Harbour Runtime Library (HRL)
  18.  * and/or the Harbour Virtual Machine (HVM) with other files to produce
  19.  * an executable, this does not by itself cause the resulting executable
  20.  * to be covered by the GNU General Public License. Your use of that
  21.  * executable is in no way restricted on account of linking the HRL
  22.  * and/or HVM code into it.
  23.  *
  24.  * This program is distributed in the hope that it will be useful,
  25.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  * GNU General Public License for more details.
  28.  *
  29.  * You should have received a copy of the GNU General Public License
  30.  * along with this program; if not, write to the Free Software
  31.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
  32.  * their web site at http://www.gnu.org/).
  33.  *
  34.  */
  35.  
  36. #ifndef _BOX_CH
  37. #define _BOX_CH
  38.  
  39. /* #defines for DISPBOX() */
  40.  
  41. /* Single-line */
  42. #define B_SINGLE        ( Chr(218) + Chr(196) + Chr(191) + Chr(179) + ;
  43.                           Chr(217) + Chr(196) + Chr(192) + Chr(179) )
  44.  
  45. /* Double-line */
  46. #define B_DOUBLE        ( Chr(201) + Chr(205) + Chr(187) + Chr(186) + ;
  47.                           Chr(188) + Chr(205) + Chr(200) + Chr(186) )
  48.  
  49. /* Single-line top, double-line sides */
  50. #define B_SINGLE_DOUBLE ( Chr(214) + Chr(196) + Chr(183) + Chr(186) + ;
  51.                           Chr(189) + Chr(196) + Chr(211) + Chr(186) )
  52.  
  53. /* Double-line top, single-line sides */
  54. #define B_DOUBLE_SINGLE ( Chr(213) + Chr(205) + Chr(184) + Chr(179) + ;
  55.                           Chr(190) + Chr(205) + Chr(212) + Chr(179) )
  56.  
  57. #define B_THIN          ( Chr(219) + Chr(223) + Chr(219) + Chr(219) + ;
  58.                           Chr(219) + Chr(220) + Chr(219) + Chr(219) )
  59.  
  60. #define B_FAT           ( Chr(219) + Chr(219) + Chr(219) + Chr(219) + ;
  61.                           Chr(219) + Chr(219) + Chr(219) + Chr(219) )
  62.  
  63. #endif /* _BOX_CH */
  64.