home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 488.lha / TCL_alpha2 / tcl.lzh / tcl / includes / tcla / fonts.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  413 b   |  22 lines

  1. #ifndef FONTS_H
  2. #define FONTS_H
  3. #ifndef GRAPHICS_GFXBASE_H
  4. #include <graphics/gfxbase.h>
  5. #endif
  6. #ifndef GRAPHICS_TEXT_H
  7. #include <graphics/text.h>
  8. #endif
  9.  
  10. #define FONTWIDTH (GfxBase->DefaultFont->tf_XSize)
  11. #define FONTHEIGHT (GfxBase->DefaultFont->tf_YSize)
  12. #define FONTBASELINE (GfxBase->DefaultFont->tf_Baseline)
  13.  
  14. struct FontListEntry
  15. {
  16.     struct Node node;
  17.     struct TextAttr f;
  18.     struct TextFont *font;
  19. };
  20.  
  21. #endif
  22.