home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / prefs / printergfx.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  1.5 KB  |  70 lines

  1. {$if not def PREFS_PRINTERGFX_H} CONST PREFS_PRINTERGFX_H=TRUE;
  2.  
  3. { ********************************************************************
  4.   ** KickPascal-Include-Datei "prefs/printergfx.h" zu Kickstart 3.0 **
  5.   ******************************************************************** }
  6.  
  7. {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
  8.  
  9. CONST
  10.  ID_PGFX = $50474658; { "PGFX" }
  11.  
  12. TYPE
  13.  p_PrinterGfxPrefs=^PrinterGfxPrefs;
  14.  PrinterGfxPrefs = RECORD
  15.   pg_Reserved      : array[0..3] of Long;
  16.   pg_Aspect        : Word;
  17.   pg_Shade         : Word;
  18.   pg_Image         : Word;
  19.   pg_Threshold     : Integer;
  20.   pg_ColorCorrect  : Byte;
  21.   pg_Dimensions    : Byte;
  22.   pg_Dithering     : Byte;
  23.   pg_GraphicsFlags : Word;
  24.   pg_PrintDensity  : Byte;
  25.   pg_PrintMaxWidth : Word;
  26.   pg_PrintMaxHeight: Word;
  27.   pg_PrintXOffset  : Byte;
  28.   pg_PrintYOffset  : Byte;
  29.  end;
  30.  
  31. CONST
  32.  PA_HORIZONTAL  = 0;
  33.  PA_VERTICAL    = 1;
  34.  
  35.  PS_BW          = 0;
  36.  PS_GREYSCALE   = 1;
  37.  PS_COLOR       = 2;
  38.  PS_GREY_SCALE2 = 3;
  39.  
  40.  PI_POSITIVE    = 0;
  41.  PI_NEGATIVE    = 1;
  42.  
  43.  PCCB_RED       = 1;
  44.  PCCB_GREEN     = 2; { hier scheinen die C-Includes nicht zu stimmem }
  45.  PCCB_BLUE      = 3;
  46.  
  47.  PCCF_RED       = 1;
  48.  PCCF_GREEN     = 2;
  49.  PCCF_BLUE      = 4;
  50.  
  51.  PD_IGNORE      = 0;
  52.  PD_BOUNDED     = 1;
  53.  PD_ABSOLUTE    = 2;
  54.  PD_PIXEL       = 3;
  55.  PD_MULTIPLY    = 4;
  56.  
  57.  PD_ORDERED     = 0;
  58.  PD_HALFTONE    = 1;
  59.  PD_FLOYD       = 2;
  60.  
  61.  PGFB_CENTER_IMAGE      = 0;
  62.  PGFB_INTEGER_SCALING   = 1;
  63.  PGFB_ANTI_ALIAS        = 2;
  64.  
  65.  PGFF_CENTER_IMAGE      = 1;
  66.  PGFF_INTEGER_SCALING   = 2;
  67.  PGFF_ANTI_ALIAS        = 4;
  68.  
  69. {$endif}
  70.