home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lynx2.8.1dev.10.tar.gz / lynx2.8.1dev.10.tar / lynx2-8 / src / HTFont.h < prev    next >
C/C++ Source or Header  |  1997-09-17  |  544b  |  30 lines

  1. /*        The portable font concept (!?*)
  2. */
  3.  
  4. /*    Line mode browser version:
  5. */
  6. #ifndef HTFONT_H
  7. #define HTFONT_H
  8.  
  9. typedef long int HTMLFont;    /* For now */
  10.  
  11. #ifndef HT_NON_BREAK_SPACE
  12. #define HT_NON_BREAK_SPACE ((char)1)    /* For now */
  13. #endif /* !HT_NON_BREAK_SPACE */
  14. #ifndef HT_EM_SPACE
  15. #define HT_EM_SPACE ((char)2)         /* For now */
  16. #endif /* !HT_EM_SPACE */
  17.  
  18.  
  19. #define HT_FONT        0
  20. #define HT_CAPITALS    1
  21. #define HT_BOLD        2
  22. #define HT_UNDERLINE    4
  23. #define HT_INVERSE    8
  24. #define HT_DOUBLE    0x10
  25.  
  26. #define HT_BLACK    0
  27. #define HT_WHITE    1
  28.  
  29. #endif /* HTFONT_H */
  30.