home *** CD-ROM | disk | FTP | other *** search
- {$if not def PREFS_PRINTERGFX_H} CONST PREFS_PRINTERGFX_H=TRUE;
-
- { ********************************************************************
- ** KickPascal-Include-Datei "prefs/printergfx.h" zu Kickstart 3.0 **
- ******************************************************************** }
-
- {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
-
- CONST
- ID_PGFX = $50474658; { "PGFX" }
-
- TYPE
- p_PrinterGfxPrefs=^PrinterGfxPrefs;
- PrinterGfxPrefs = RECORD
- pg_Reserved : array[0..3] of Long;
- pg_Aspect : Word;
- pg_Shade : Word;
- pg_Image : Word;
- pg_Threshold : Integer;
- pg_ColorCorrect : Byte;
- pg_Dimensions : Byte;
- pg_Dithering : Byte;
- pg_GraphicsFlags : Word;
- pg_PrintDensity : Byte;
- pg_PrintMaxWidth : Word;
- pg_PrintMaxHeight: Word;
- pg_PrintXOffset : Byte;
- pg_PrintYOffset : Byte;
- end;
-
- CONST
- PA_HORIZONTAL = 0;
- PA_VERTICAL = 1;
-
- PS_BW = 0;
- PS_GREYSCALE = 1;
- PS_COLOR = 2;
- PS_GREY_SCALE2 = 3;
-
- PI_POSITIVE = 0;
- PI_NEGATIVE = 1;
-
- PCCB_RED = 1;
- PCCB_GREEN = 2; { hier scheinen die C-Includes nicht zu stimmem }
- PCCB_BLUE = 3;
-
- PCCF_RED = 1;
- PCCF_GREEN = 2;
- PCCF_BLUE = 4;
-
- PD_IGNORE = 0;
- PD_BOUNDED = 1;
- PD_ABSOLUTE = 2;
- PD_PIXEL = 3;
- PD_MULTIPLY = 4;
-
- PD_ORDERED = 0;
- PD_HALFTONE = 1;
- PD_FLOYD = 2;
-
- PGFB_CENTER_IMAGE = 0;
- PGFB_INTEGER_SCALING = 1;
- PGFB_ANTI_ALIAS = 2;
-
- PGFF_CENTER_IMAGE = 1;
- PGFF_INTEGER_SCALING = 2;
- PGFF_ANTI_ALIAS = 4;
-
- {$endif}
-