home *** CD-ROM | disk | FTP | other *** search
- {$if not def PREFS_PRINTERPS_H} CONST PREFS_PRINTERPS_H=TRUE;
-
- { *******************************************************************
- ** KickPascal-Include-Datei "prefs/printerps.h" zu Kickstart 3.0 **
- ******************************************************************* }
-
- {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
-
- CONST
- ID_PSPD = $50535044; { "PSPD" }
-
- TYPE
- p_PrinterPSPrefs=^PrinterPSPrefs;
- PrinterPSPrefs = RECORD
- ps_Reserved : array[0..3] of Long;
- ps_DriverMode : Byte;
- ps_PaperFormat : Byte;
- ps_Reserved1 : array[0..1] of Byte;
- ps_Copies : LongInt;
- ps_PaperWidth : LongInt;
- ps_PaperHeight : LongInt;
- ps_HorizontalDPI : LongInt;
- ps_VerticalDPI : LongInt;
-
- ps_Font : Byte;
- ps_Pitch : Byte;
- ps_Orientation : Byte;
- ps_Tab : Byte;
- ps_Reserved2 : array[0..7] of Byte;
-
- ps_LeftMargin : LongInt;
- ps_RightMargin : LongInt;
- ps_TopMargin : LongInt;
- ps_BottomMargin : LongInt;
- ps_FontPointSize : LongInt;
- ps_Leading : LongInt;
- ps_Reserved3 : array[0..7] of Byte;
-
- ps_LeftEdge : LongInt;
- ps_TopEdge : LongInt;
- ps_Width : LongInt;
- ps_Height : LongInt;
- ps_Image : Byte;
- ps_Shading : Byte;
- ps_Dithering : Byte;
- ps_Transparency : Byte;
- ps_Reserved4 : array[0..7] of Byte;
-
- ps_Aspect : Byte;
- ps_ScalingType : Byte;
- ps_ScalingMath : Byte;
- ps_Centering : Byte;
- ps_Reserved5 : array[0..7] of Byte;
- end;
-
- CONST
- DM_POSTSCRIPT = 0;
- DM_PASSTHROUGH = 1;
-
- PF_USLETTER = 0;
- PF_USLEGAL = 1;
- PF_A4 = 2;
- PF_CUSTOM = 3;
-
- FONT_COURIER = 0;
- FONT_TIMES = 1;
- FONT_HELVETICA = 2;
- FONT_HELV_NARROW = 3;
- FONT_AVANTGARDE = 4;
- FONT_BOOKMAN = 5;
- FONT_NEWCENT = 6;
- FONT_PALATINO = 7;
- FONT_ZAPFCHANCERY = 8;
-
- PITCH_NORMAL = 0;
- PITCH_COMPRESSED = 1;
- PITCH_EXPANDED = 2;
-
- ORIENT_PORTRAIT = 0;
- ORIENT_LANDSCAPE = 1;
-
- TAB_4 = 0;
- TAB_8 = 1;
- TAB_QUART = 2;
- TAB_HALF = 3;
- TAB_INCH = 4;
-
- IM_POSITIVE = 0;
- IM_NEGATIVE = 1;
-
- SHAD_BW = 0;
- SHAD_GREYSCALE = 1;
- SHAD_COLOR = 2;
-
- DITH_DEFAULT = 0;
- DITH_DOTTY = 1;
- DITH_VERT = 2;
- DITH_HORIZ = 3;
- DITH_DIAG = 4;
-
- TRANS_NONE = 0;
- TRANS_WHITE = 1;
- TRANS_COLOR0 = 2;
-
- ASP_HORIZ = 0;
- ASP_VERT = 1;
-
- ST_ASPECT_ASIS = 0;
- ST_ASPECT_WIDE = 1;
- ST_ASPECT_TALL = 2;
- ST_ASPECT_BOTH = 3;
- ST_FITS_WIDE = 4;
- ST_FITS_TALL = 5;
- ST_FITS_BOTH = 6;
-
- SM_INTEGER = 0;
- SM_FRACTIONAL = 1;
-
- CENT_NONE = 0;
- CENT_HORIZ = 1;
- CENT_VERT = 2;
- CENT_BOTH = 3;
-
- {$endif}
-