home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / prefs / font.h next >
Encoding:
Text File  |  1994-07-25  |  810 b   |  32 lines

  1. {$if not def PREFS_FONT_H} CONST PREFS_FONT_H=TRUE;
  2.  
  3. { **************************************************************
  4.   ** KickPascal-Include-Datei "prefs/font.h" zu Kickstart 3.0 **
  5.   ************************************************************** }
  6.  
  7. {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
  8. {$if not def GRAPHICS_TEXT_H;incl "graphics/text.h";endif}
  9.  
  10. CONST
  11.   ID_FONT      = $464f4e54; { "FONT" }
  12.   FONTNAMESIZE = 128;
  13.  
  14.   FP_WBFONT    = 0;
  15.   FP_SYSFONT   = 1;
  16.   FP_SCREENFONT= 2;
  17.   
  18. TYPE 
  19.   p_FontPrefs = ^FontPrefs;
  20.   FontPrefs = RECORD
  21.    fp_Reserved  : array[0..2] of Long;
  22.    fp_Reserved2 : Word;
  23.    fp_Type      : Word;
  24.    fp_FrontPen  : Byte;
  25.    fp_BackPen   : Byte;
  26.    fp_DrawMode  : Byte;
  27.    fp_TextAttr  : TextAttr;
  28.    fp_Name      : String[FONTNAMESIZE];
  29.   end;
  30.  
  31. {$endif}
  32.