2 * PostScript driver definitions
4 * Copyright 1998 Huw D M Davies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_PSDRV_H
22 #define __WINE_PSDRV_H
31 #include "wine/list.h"
40 const GLYPHNAME *name;
44 float llx, lly, urx, ury;
47 typedef struct _tagAFMLIGS {
50 struct _tagAFMLIGS *next;
54 int C; /* character */
57 const GLYPHNAME *N; /* name */
59 const AFMLIGS *L; /* Ligatures */
63 INT C; /* AFM encoding (or -1) */
64 LONG UV; /* Unicode value */
65 FLOAT WX; /* Advance width */
66 const GLYPHNAME *N; /* Glyph name */
70 USHORT usUnitsPerEm; /* head:unitsPerEm */
71 SHORT sAscender; /* hhea:Ascender */
72 SHORT sDescender; /* hhea:Descender */
73 SHORT sLineGap; /* hhea:LineGap */
74 SHORT sAvgCharWidth; /* OS/2:xAvgCharWidth */
75 SHORT sTypoAscender; /* OS/2:sTypoAscender */
76 SHORT sTypoDescender; /* OS/2:sTypoDescender */
77 SHORT sTypoLineGap; /* OS/2:sTypeLineGap */
78 USHORT usWinAscent; /* OS/2:usWinAscent */
79 USHORT usWinDescent; /* OS/2:usWinDescent */
82 typedef struct _tagAFM {
86 LPCSTR EncodingScheme;
87 LONG Weight; /* FW_NORMAL etc. */
90 float UnderlinePosition;
91 float UnderlineThickness;
95 WINMETRICS WinMetrics;
97 const AFMMETRICS *Metrics;
100 /* Note no 'next' in AFM. Use AFMLISTENTRY as a container. This allow more than
101 one list to exist without having to reallocate the entire AFM structure. We
102 keep a global list of all afms (PSDRV_AFMFontList) plus a list of available
103 fonts for each DC (dc->physDev->Fonts) */
105 typedef struct _tagAFMLISTENTRY {
107 struct _tagAFMLISTENTRY *next;
110 typedef struct _tagFONTFAMILY {
111 char *FamilyName; /* family name */
112 AFMLISTENTRY *afmlist; /* list of afms for this family */
113 struct _tagFONTFAMILY *next; /* next family */
116 extern FONTFAMILY *PSDRV_AFMFontList;
117 extern const AFM *const PSDRV_BuiltinAFMs[]; /* last element is NULL */
119 typedef struct _tagFONTNAME {
121 struct _tagFONTNAME *next;
125 float llx, lly, urx, ury;
134 typedef struct _tagPAGESIZE {
138 char *InvocationString;
139 IMAGEABLEAREA *ImageableArea;
140 PAPERDIMENSION *PaperDimension;
141 WORD WinPage; /*eg DMPAPER_A4. Doesn't really belong here */
145 /* For BANDINFO Escape */
146 typedef struct _BANDINFOSTRUCT
151 } BANDINFOSTRUCT, *PBANDINFOSTRUCT;
153 typedef struct _tagOPTIONENTRY {
154 char *Name; /* eg "True" */
155 char *FullName; /* eg "Installed" */
156 char *InvocationString; /* Often NULL */
157 struct _tagOPTIONENTRY *next;
160 typedef struct _tagOPTION { /* Treat bool as a special case of pickone */
161 char *OptionName; /* eg "*Option1" */
162 char *FullName; /* eg "Envelope Feeder" */
163 char *DefaultOption; /* eg "False" */
164 OPTIONENTRY *Options;
165 struct _tagOPTION *next;
168 typedef struct _tagCONSTRAINT {
173 struct _tagCONSTRAINT *next;
176 typedef struct _tagINPUTSLOT {
178 const char *FullName;
179 char *InvocationString;
180 WORD WinBin; /* eg DMBIN_LOWER */
181 struct _tagINPUTSLOT *next;
184 typedef enum _RASTERIZEROPTION
185 {RO_None, RO_Accept68K, RO_Type42, RO_TrueImage} RASTERIZEROPTION;
187 typedef struct _tagDUPLEX {
190 char *InvocationString;
191 WORD WinDuplex; /* eg DMDUP_SIMPLEX */
192 struct _tagDUPLEX *next;
195 /* Many Mac OS X based ppd files don't include a *ColorDevice line, so
196 we use a tristate here rather than a boolean. Code that
197 cares is expected to treat these as if they were colour. */
207 COLORDEVICE ColorDevice;
208 int DefaultResolution;
209 signed int LandscapeOrientation;
211 char *JCLToPSInterpreter;
214 FONTNAME *InstalledFonts; /* ptr to a list of FontNames */
215 struct list PageSizes;
216 PAGESIZE *DefaultPageSize;
217 OPTION *InstalledOptions;
218 CONSTRAINT *Constraints;
219 INPUTSLOT *InputSlots;
220 RASTERIZEROPTION TTRasterizer;
222 DUPLEX *DefaultDuplex;
227 struct _tagdocprivate {
230 struct _tagdrvprivate {
231 UINT numInstalledOptions; /* Options at end of struct */
236 numInstalledOptions of OPTIONs
242 typedef struct _tagPI {
245 PSDRV_DEVMODEA *Devmode;
247 PPRINTER_ENUM_VALUESA FontSubTable;
248 DWORD FontSubTableSize;
261 /* def's for PSCOLOR.type */
262 #define PSCOLOR_GRAY 0
263 #define PSCOLOR_RGB 1
279 typedef struct tagTYPE42 TYPE42;
281 typedef struct tagTYPE1 TYPE1;
287 typedef struct _tagDOWNLOAD {
288 enum downloadtype type;
294 struct _tagDOWNLOAD *next;
302 enum fontloc fontloc;
310 BOOL set; /* Have we done a setfont yet */
312 /* These are needed by PSDRV_ExtTextOut */
314 int underlineThickness;
315 int underlinePosition;
316 int strikeoutThickness;
317 int strikeoutPosition;
337 DWORD id; /* Job id */
338 LPSTR output; /* Output file/port */
339 LPSTR DocName; /* Document Name */
340 BOOL banding; /* Have we received a NEXTBAND */
341 BOOL OutOfPage; /* Page header not sent yet */
343 BOOL quiet; /* Don't actually output anything */
344 BOOL in_passthrough; /* In PASSTHROUGH mode */
345 BOOL had_passthrough_rect; /* See the comment in PSDRV_Rectangle */
350 PSFONT font; /* Current PS font */
351 DOWNLOAD *downloaded_fonts;
355 PSCOLOR inkColor; /* Last colour set */
357 PSDRV_DEVMODEA *Devmode;
359 SIZE PageSize; /* Physical page size in device units */
360 RECT ImageableArea; /* Imageable area in device units */
361 /* NB both PageSize and ImageableArea
362 are not rotated in landscape mode,
363 so PageSize.cx is generally
365 int horzRes; /* device caps */
377 PSDRV_DEVMODEA *dlgdm;
382 * Every glyph name in the Adobe Glyph List and the 35 core PostScript fonts
385 extern const INT PSDRV_AGLGlyphNamesSize;
386 extern GLYPHNAME PSDRV_AGLGlyphNames[];
390 * The AGL encoding vector
393 extern const INT PSDRV_AGLbyNameSize; /* sorted by name - */
394 extern const UNICODEGLYPH PSDRV_AGLbyName[]; /* duplicates omitted */
396 extern const INT PSDRV_AGLbyUVSize; /* sorted by UV - */
397 extern const UNICODEGLYPH PSDRV_AGLbyUV[]; /* duplicates included */
399 extern HINSTANCE PSDRV_hInstance;
400 extern HANDLE PSDRV_Heap;
401 extern char *PSDRV_ANSIVector[256];
403 extern void PSDRV_MergeDevmodes(PSDRV_DEVMODEA *dm1, PSDRV_DEVMODEA *dm2,
405 extern BOOL PSDRV_GetFontMetrics(void);
406 extern PPD *PSDRV_ParsePPD(char *fname);
407 extern PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name);
408 extern const AFM *PSDRV_FindAFMinList(FONTFAMILY *head, LPCSTR name);
409 extern BOOL PSDRV_AddAFMtoList(FONTFAMILY **head, const AFM *afm,
411 extern void PSDRV_FreeAFMList( FONTFAMILY *head );
413 extern INT PSDRV_XWStoDS( PSDRV_PDEVICE *physDev, INT width );
414 extern INT PSDRV_YWStoDS( PSDRV_PDEVICE *physDev, INT height );
416 extern BOOL PSDRV_Brush(PSDRV_PDEVICE *physDev, BOOL EO);
417 extern BOOL PSDRV_SetFont( PSDRV_PDEVICE *physDev );
418 extern BOOL PSDRV_SetPen( PSDRV_PDEVICE *physDev );
420 extern void PSDRV_SetClip(PSDRV_PDEVICE* phyDev);
421 extern void PSDRV_ResetClip(PSDRV_PDEVICE* phyDev);
423 extern BOOL PSDRV_CopyColor(PSCOLOR *col1, PSCOLOR *col2);
424 extern void PSDRV_CreateColor( PSDRV_PDEVICE *physDev, PSCOLOR *pscolor,
426 extern char PSDRV_UnicodeToANSI(int u);
428 extern INT PSDRV_WriteHeader( PSDRV_PDEVICE *physDev, LPCSTR title );
429 extern INT PSDRV_WriteFooter( PSDRV_PDEVICE *physDev );
430 extern INT PSDRV_WriteNewPage( PSDRV_PDEVICE *physDev );
431 extern INT PSDRV_WriteEndPage( PSDRV_PDEVICE *physDev );
432 extern BOOL PSDRV_WriteMoveTo(PSDRV_PDEVICE *physDev, INT x, INT y);
433 extern BOOL PSDRV_WriteLineTo(PSDRV_PDEVICE *physDev, INT x, INT y);
434 extern BOOL PSDRV_WriteStroke(PSDRV_PDEVICE *physDev);
435 extern BOOL PSDRV_WriteRectangle(PSDRV_PDEVICE *physDev, INT x, INT y, INT width,
437 extern BOOL PSDRV_WriteRRectangle(PSDRV_PDEVICE *physDev, INT x, INT y, INT width,
439 extern BOOL PSDRV_WriteSetFont(PSDRV_PDEVICE *physDev, const char *name, INT size,
441 extern BOOL PSDRV_WriteGlyphShow(PSDRV_PDEVICE *physDev, LPCSTR g_name);
442 extern BOOL PSDRV_WriteSetPen(PSDRV_PDEVICE *physDev);
443 extern BOOL PSDRV_WriteArc(PSDRV_PDEVICE *physDev, INT x, INT y, INT w, INT h,
444 double ang1, double ang2);
445 extern BOOL PSDRV_WriteSetColor(PSDRV_PDEVICE *physDev, PSCOLOR *color);
446 extern BOOL PSDRV_WriteSetBrush(PSDRV_PDEVICE *physDev);
447 extern BOOL PSDRV_WriteFill(PSDRV_PDEVICE *physDev);
448 extern BOOL PSDRV_WriteEOFill(PSDRV_PDEVICE *physDev);
449 extern BOOL PSDRV_WriteGSave(PSDRV_PDEVICE *physDev);
450 extern BOOL PSDRV_WriteGRestore(PSDRV_PDEVICE *physDev);
451 extern BOOL PSDRV_WriteNewPath(PSDRV_PDEVICE *physDev);
452 extern BOOL PSDRV_WriteClosePath(PSDRV_PDEVICE *physDev);
453 extern BOOL PSDRV_WriteClip(PSDRV_PDEVICE *physDev);
454 extern BOOL PSDRV_WriteRectClip(PSDRV_PDEVICE *physDev, INT x, INT y, INT w, INT h);
455 extern BOOL PSDRV_WriteRectClip2(PSDRV_PDEVICE *physDev, CHAR *pszArrayName);
456 extern BOOL PSDRV_WriteEOClip(PSDRV_PDEVICE *physDev);
457 extern BOOL PSDRV_WriteHatch(PSDRV_PDEVICE *physDev);
458 extern BOOL PSDRV_WriteRotate(PSDRV_PDEVICE *physDev, float ang);
459 extern BOOL PSDRV_WriteIndexColorSpaceBegin(PSDRV_PDEVICE *physDev, int size);
460 extern BOOL PSDRV_WriteIndexColorSpaceEnd(PSDRV_PDEVICE *physDev);
461 extern BOOL PSDRV_WriteRGB(PSDRV_PDEVICE *physDev, COLORREF *map, int number);
462 extern BOOL PSDRV_WriteImage(PSDRV_PDEVICE *physDev, WORD depth, INT xDst, INT yDst,
463 INT widthDst, INT heightDst, INT widthSrc,
464 INT heightSrc, BOOL mask);
465 extern BOOL PSDRV_WriteBytes(PSDRV_PDEVICE *physDev, const BYTE *bytes, DWORD number);
466 extern BOOL PSDRV_WriteData(PSDRV_PDEVICE *physDev, const BYTE *byte, DWORD number);
467 extern DWORD PSDRV_WriteSpool(PSDRV_PDEVICE *physDev, LPCSTR lpData, DWORD cch);
468 extern BOOL PSDRV_WritePatternDict(PSDRV_PDEVICE *physDev, BITMAP *bm, BYTE *bits);
469 extern BOOL PSDRV_WriteDIBPatternDict(PSDRV_PDEVICE *physDev, BITMAPINFO *bmi, UINT usage);
470 extern BOOL PSDRV_WriteArrayPut(PSDRV_PDEVICE *physDev, CHAR *pszArrayName, INT nIndex, LONG lCoord);
471 extern BOOL PSDRV_WriteArrayDef(PSDRV_PDEVICE *physDev, CHAR *pszArrayName, INT nSize);
473 extern INT CDECL PSDRV_StartPage( PSDRV_PDEVICE *physDev );
475 INT PSDRV_GlyphListInit(void);
476 const GLYPHNAME *PSDRV_GlyphName(LPCSTR szName);
477 VOID PSDRV_IndexGlyphList(void);
478 BOOL PSDRV_GetTrueTypeMetrics(void);
479 BOOL PSDRV_GetType1Metrics(void);
480 const AFMMETRICS *PSDRV_UVMetrics(LONG UV, const AFM *afm);
481 SHORT PSDRV_CalcAvgCharWidth(const AFM *afm);
483 extern BOOL PSDRV_SelectBuiltinFont(PSDRV_PDEVICE *physDev, HFONT hfont,
484 LOGFONTW *plf, LPSTR FaceName);
485 extern BOOL PSDRV_WriteSetBuiltinFont(PSDRV_PDEVICE *physDev);
486 extern BOOL PSDRV_WriteBuiltinGlyphShow(PSDRV_PDEVICE *physDev, LPCWSTR str, INT count);
488 extern BOOL PSDRV_SelectDownloadFont(PSDRV_PDEVICE *physDev);
489 extern BOOL PSDRV_WriteSetDownloadFont(PSDRV_PDEVICE *physDev);
490 extern BOOL PSDRV_WriteDownloadGlyphShow(PSDRV_PDEVICE *physDev, WORD *glpyhs,
492 extern BOOL PSDRV_EmptyDownloadList(PSDRV_PDEVICE *physDev, BOOL write_undef);
494 extern DWORD write_spool( PSDRV_PDEVICE *physDev, const void *data, DWORD num );
496 #define MAX_G_NAME 31 /* max length of PS glyph name */
497 extern void get_glyph_name(HDC hdc, WORD index, char *name);
499 extern TYPE1 *T1_download_header(PSDRV_PDEVICE *physDev, char *ps_name,
500 RECT *bbox, UINT emsize);
501 extern BOOL T1_download_glyph(PSDRV_PDEVICE *physDev, DOWNLOAD *pdl,
502 DWORD index, char *glyph_name);
503 extern void T1_free(TYPE1 *t1);
505 extern TYPE42 *T42_download_header(PSDRV_PDEVICE *physDev, char *ps_name,
506 RECT *bbox, UINT emsize);
507 extern BOOL T42_download_glyph(PSDRV_PDEVICE *physDev, DOWNLOAD *pdl,
508 DWORD index, char *glyph_name);
509 extern void T42_free(TYPE42 *t42);
511 extern DWORD RLE_encode(BYTE *in_buf, DWORD len, BYTE *out_buf);
512 extern DWORD ASCII85_encode(BYTE *in_buf, DWORD len, BYTE *out_buf);
514 #define push_lc_numeric(x) do { \
515 const char *tmplocale = setlocale(LC_NUMERIC,NULL); \
516 setlocale(LC_NUMERIC,x);
518 #define pop_lc_numeric() \
519 setlocale(LC_NUMERIC,tmplocale); \