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
29 #include "wine/wingdi16.h"
32 #include "wine/list.h"
41 const GLYPHNAME
*name
;
45 float llx
, lly
, urx
, ury
;
48 typedef struct _tagAFMLIGS
{
51 struct _tagAFMLIGS
*next
;
55 int C
; /* character */
58 const GLYPHNAME
*N
; /* name */
60 const AFMLIGS
*L
; /* Ligatures */
64 INT C
; /* AFM encoding (or -1) */
65 LONG UV
; /* Unicode value */
66 FLOAT WX
; /* Advance width */
67 const GLYPHNAME
*N
; /* Glyph name */
71 USHORT usUnitsPerEm
; /* head:unitsPerEm */
72 SHORT sAscender
; /* hhea:Ascender */
73 SHORT sDescender
; /* hhea:Descender */
74 SHORT sLineGap
; /* hhea:LineGap */
75 SHORT sAvgCharWidth
; /* OS/2:xAvgCharWidth */
76 SHORT sTypoAscender
; /* OS/2:sTypoAscender */
77 SHORT sTypoDescender
; /* OS/2:sTypoDescender */
78 SHORT sTypoLineGap
; /* OS/2:sTypeLineGap */
79 USHORT usWinAscent
; /* OS/2:usWinAscent */
80 USHORT usWinDescent
; /* OS/2:usWinDescent */
83 typedef struct _tagAFM
{
87 LPCSTR EncodingScheme
;
88 LONG Weight
; /* FW_NORMAL etc. */
91 float UnderlinePosition
;
92 float UnderlineThickness
;
96 WINMETRICS WinMetrics
;
98 const AFMMETRICS
*Metrics
;
101 /* Note no 'next' in AFM. Use AFMLISTENTRY as a container. This allow more than
102 one list to exist without having to reallocate the entire AFM structure. We
103 keep a global list of all afms (PSDRV_AFMFontList) plus a list of available
104 fonts for each DC (dc->physDev->Fonts) */
106 typedef struct _tagAFMLISTENTRY
{
108 struct _tagAFMLISTENTRY
*next
;
111 typedef struct _tagFONTFAMILY
{
112 char *FamilyName
; /* family name */
113 AFMLISTENTRY
*afmlist
; /* list of afms for this family */
114 struct _tagFONTFAMILY
*next
; /* next family */
117 extern FONTFAMILY
*PSDRV_AFMFontList
;
118 extern const AFM
*const PSDRV_BuiltinAFMs
[]; /* last element is NULL */
120 typedef struct _tagFONTNAME
{
122 struct _tagFONTNAME
*next
;
126 float llx
, lly
, urx
, ury
;
135 typedef struct _tagPAGESIZE
{
139 char *InvocationString
;
140 IMAGEABLEAREA
*ImageableArea
;
141 PAPERDIMENSION
*PaperDimension
;
142 WORD WinPage
; /*eg DMPAPER_A4. Doesn't really belong here */
146 /* For BANDINFO Escape */
147 typedef struct _BANDINFOSTRUCT
152 } BANDINFOSTRUCT
, *PBANDINFOSTRUCT
;
154 typedef struct _tagOPTIONENTRY
{
155 char *Name
; /* eg "True" */
156 char *FullName
; /* eg "Installed" */
157 char *InvocationString
; /* Often NULL */
158 struct _tagOPTIONENTRY
*next
;
161 typedef struct _tagOPTION
{ /* Treat bool as a special case of pickone */
162 char *OptionName
; /* eg "*Option1" */
163 char *FullName
; /* eg "Envelope Feeder" */
164 char *DefaultOption
; /* eg "False" */
165 OPTIONENTRY
*Options
;
166 struct _tagOPTION
*next
;
169 typedef struct _tagCONSTRAINT
{
174 struct _tagCONSTRAINT
*next
;
177 typedef struct _tagINPUTSLOT
{
179 const char *FullName
;
180 char *InvocationString
;
181 WORD WinBin
; /* eg DMBIN_LOWER */
182 struct _tagINPUTSLOT
*next
;
185 typedef enum _RASTERIZEROPTION
186 {RO_None
, RO_Accept68K
, RO_Type42
, RO_TrueImage
} RASTERIZEROPTION
;
188 typedef struct _tagDUPLEX
{
191 char *InvocationString
;
192 WORD WinDuplex
; /* eg DMDUP_SIMPLEX */
193 struct _tagDUPLEX
*next
;
196 /* Many Mac OS X based ppd files don't include a *ColorDevice line, so
197 we use a tristate here rather than a boolean. Code that
198 cares is expected to treat these as if they were colour. */
208 COLORDEVICE ColorDevice
;
209 int DefaultResolution
;
210 signed int LandscapeOrientation
;
212 char *JCLToPSInterpreter
;
215 FONTNAME
*InstalledFonts
; /* ptr to a list of FontNames */
216 struct list PageSizes
;
217 PAGESIZE
*DefaultPageSize
;
218 OPTION
*InstalledOptions
;
219 CONSTRAINT
*Constraints
;
220 INPUTSLOT
*InputSlots
;
221 RASTERIZEROPTION TTRasterizer
;
223 DUPLEX
*DefaultDuplex
;
228 struct _tagdocprivate
{
231 struct _tagdrvprivate
{
232 UINT numInstalledOptions
; /* Options at end of struct */
237 numInstalledOptions of OPTIONs
243 typedef struct _tagPI
{
246 PSDRV_DEVMODEA
*Devmode
;
248 PPRINTER_ENUM_VALUESA FontSubTable
;
249 DWORD FontSubTableSize
;
262 /* def's for PSCOLOR.type */
263 #define PSCOLOR_GRAY 0
264 #define PSCOLOR_RGB 1
280 typedef struct tagTYPE42 TYPE42
;
282 typedef struct tagTYPE1 TYPE1
;
288 typedef struct _tagDOWNLOAD
{
289 enum downloadtype type
;
295 struct _tagDOWNLOAD
*next
;
303 enum fontloc fontloc
;
311 BOOL set
; /* Have we done a setfont yet */
313 /* These are needed by PSDRV_ExtTextOut */
315 int underlineThickness
;
316 int underlinePosition
;
317 int strikeoutThickness
;
318 int strikeoutPosition
;
339 LPSTR output
; /* Output file/port */
340 LPSTR DocName
; /* Document Name */
341 BOOL banding
; /* Have we received a NEXTBAND */
342 BOOL OutOfPage
; /* Page header not sent yet */
344 BOOL quiet
; /* Don't actually output anything */
345 BOOL in_passthrough
; /* In PASSTHROUGH mode */
346 BOOL had_passthrough_rect
; /* See the comment in PSDRV_Rectangle */
351 PSFONT font
; /* Current PS font */
352 DOWNLOAD
*downloaded_fonts
;
356 PSCOLOR inkColor
; /* Last colour set */
358 PSDRV_DEVMODEA
*Devmode
;
360 SIZE PageSize
; /* Physical page size in device units */
361 RECT ImageableArea
; /* Imageable area in device units */
362 /* NB both PageSize and ImageableArea
363 are not rotated in landscape mode,
364 so PageSize.cx is generally
366 int horzRes
; /* device caps */
378 PSDRV_DEVMODEA
*dlgdm
;
383 * Every glyph name in the Adobe Glyph List and the 35 core PostScript fonts
386 extern const INT PSDRV_AGLGlyphNamesSize
;
387 extern GLYPHNAME PSDRV_AGLGlyphNames
[];
391 * The AGL encoding vector
394 extern const INT PSDRV_AGLbyNameSize
; /* sorted by name - */
395 extern const UNICODEGLYPH PSDRV_AGLbyName
[]; /* duplicates omitted */
397 extern const INT PSDRV_AGLbyUVSize
; /* sorted by UV - */
398 extern const UNICODEGLYPH PSDRV_AGLbyUV
[]; /* duplicates included */
401 extern INT16 WINAPI
PSDRV_ExtDeviceMode16(HWND16 hwnd
, HANDLE16 hDriver
,
402 LPDEVMODEA lpdmOutput
, LPSTR lpszDevice
, LPSTR lpszPort
,
403 LPDEVMODEA lpdmInput
, LPSTR lpszProfile
, WORD fwMode
);
405 extern HINSTANCE PSDRV_hInstance
;
406 extern HANDLE PSDRV_Heap
;
407 extern char *PSDRV_ANSIVector
[256];
409 extern void PSDRV_MergeDevmodes(PSDRV_DEVMODEA
*dm1
, PSDRV_DEVMODEA
*dm2
,
411 extern BOOL
PSDRV_GetFontMetrics(void);
412 extern PPD
*PSDRV_ParsePPD(char *fname
);
413 extern PRINTERINFO
*PSDRV_FindPrinterInfo(LPCSTR name
);
414 extern const AFM
*PSDRV_FindAFMinList(FONTFAMILY
*head
, LPCSTR name
);
415 extern BOOL
PSDRV_AddAFMtoList(FONTFAMILY
**head
, const AFM
*afm
,
417 extern void PSDRV_FreeAFMList( FONTFAMILY
*head
);
419 extern INT
PSDRV_XWStoDS( PSDRV_PDEVICE
*physDev
, INT width
);
420 extern INT
PSDRV_YWStoDS( PSDRV_PDEVICE
*physDev
, INT height
);
422 extern BOOL
PSDRV_Brush(PSDRV_PDEVICE
*physDev
, BOOL EO
);
423 extern BOOL
PSDRV_SetFont( PSDRV_PDEVICE
*physDev
);
424 extern BOOL
PSDRV_SetPen( PSDRV_PDEVICE
*physDev
);
426 extern void PSDRV_SetClip(PSDRV_PDEVICE
* phyDev
);
427 extern void PSDRV_ResetClip(PSDRV_PDEVICE
* phyDev
);
429 extern BOOL
PSDRV_CmpColor(PSCOLOR
*col1
, PSCOLOR
*col2
);
430 extern BOOL
PSDRV_CopyColor(PSCOLOR
*col1
, PSCOLOR
*col2
);
431 extern void PSDRV_CreateColor( PSDRV_PDEVICE
*physDev
, PSCOLOR
*pscolor
,
433 extern char PSDRV_UnicodeToANSI(int u
);
435 extern INT
PSDRV_WriteHeader( PSDRV_PDEVICE
*physDev
, LPCSTR title
);
436 extern INT
PSDRV_WriteFooter( PSDRV_PDEVICE
*physDev
);
437 extern INT
PSDRV_WriteNewPage( PSDRV_PDEVICE
*physDev
);
438 extern INT
PSDRV_WriteEndPage( PSDRV_PDEVICE
*physDev
);
439 extern BOOL
PSDRV_WriteMoveTo(PSDRV_PDEVICE
*physDev
, INT x
, INT y
);
440 extern BOOL
PSDRV_WriteLineTo(PSDRV_PDEVICE
*physDev
, INT x
, INT y
);
441 extern BOOL
PSDRV_WriteStroke(PSDRV_PDEVICE
*physDev
);
442 extern BOOL
PSDRV_WriteRectangle(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT width
,
444 extern BOOL
PSDRV_WriteRRectangle(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT width
,
446 extern BOOL
PSDRV_WriteSetFont(PSDRV_PDEVICE
*physDev
, const char *name
, INT size
,
448 extern BOOL
PSDRV_WriteGlyphShow(PSDRV_PDEVICE
*physDev
, LPCSTR g_name
);
449 extern BOOL
PSDRV_WriteSetPen(PSDRV_PDEVICE
*physDev
);
450 extern BOOL
PSDRV_WriteArc(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT w
, INT h
,
451 double ang1
, double ang2
);
452 extern BOOL
PSDRV_WriteSetColor(PSDRV_PDEVICE
*physDev
, PSCOLOR
*color
);
453 extern BOOL
PSDRV_WriteSetBrush(PSDRV_PDEVICE
*physDev
);
454 extern BOOL
PSDRV_WriteFill(PSDRV_PDEVICE
*physDev
);
455 extern BOOL
PSDRV_WriteEOFill(PSDRV_PDEVICE
*physDev
);
456 extern BOOL
PSDRV_WriteGSave(PSDRV_PDEVICE
*physDev
);
457 extern BOOL
PSDRV_WriteGRestore(PSDRV_PDEVICE
*physDev
);
458 extern BOOL
PSDRV_WriteNewPath(PSDRV_PDEVICE
*physDev
);
459 extern BOOL
PSDRV_WriteClosePath(PSDRV_PDEVICE
*physDev
);
460 extern BOOL
PSDRV_WriteInitClip(PSDRV_PDEVICE
*physDev
);
461 extern BOOL
PSDRV_WriteClip(PSDRV_PDEVICE
*physDev
);
462 extern BOOL
PSDRV_WriteRectClip(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT w
, INT h
);
463 extern BOOL
PSDRV_WriteRectClip2(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
);
464 extern BOOL
PSDRV_WriteEOClip(PSDRV_PDEVICE
*physDev
);
465 extern BOOL
PSDRV_WriteHatch(PSDRV_PDEVICE
*physDev
);
466 extern BOOL
PSDRV_WriteRotate(PSDRV_PDEVICE
*physDev
, float ang
);
467 extern BOOL
PSDRV_WriteIndexColorSpaceBegin(PSDRV_PDEVICE
*physDev
, int size
);
468 extern BOOL
PSDRV_WriteIndexColorSpaceEnd(PSDRV_PDEVICE
*physDev
);
469 extern BOOL
PSDRV_WriteRGB(PSDRV_PDEVICE
*physDev
, COLORREF
*map
, int number
);
470 extern BOOL
PSDRV_WriteImage(PSDRV_PDEVICE
*physDev
, WORD depth
, INT xDst
, INT yDst
,
471 INT widthDst
, INT heightDst
, INT widthSrc
,
472 INT heightSrc
, BOOL mask
);
473 extern BOOL
PSDRV_WriteBytes(PSDRV_PDEVICE
*physDev
, const BYTE
*bytes
, DWORD number
);
474 extern BOOL
PSDRV_WriteData(PSDRV_PDEVICE
*physDev
, const BYTE
*byte
, DWORD number
);
475 extern DWORD
PSDRV_WriteSpool(PSDRV_PDEVICE
*physDev
, LPCSTR lpData
, DWORD cch
);
476 extern BOOL
PSDRV_WritePatternDict(PSDRV_PDEVICE
*physDev
, BITMAP
*bm
, BYTE
*bits
);
477 extern BOOL
PSDRV_WriteDIBPatternDict(PSDRV_PDEVICE
*physDev
, BITMAPINFO
*bmi
, UINT usage
);
478 extern BOOL
PSDRV_WriteArrayPut(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
, INT nIndex
, LONG lCoord
);
479 extern BOOL
PSDRV_WriteArrayDef(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
, INT nSize
);
481 extern INT CDECL
PSDRV_StartPage( PSDRV_PDEVICE
*physDev
);
483 INT
PSDRV_GlyphListInit(void);
484 const GLYPHNAME
*PSDRV_GlyphName(LPCSTR szName
);
485 VOID
PSDRV_IndexGlyphList(void);
486 BOOL
PSDRV_GetTrueTypeMetrics(void);
487 BOOL
PSDRV_GetType1Metrics(void);
488 const AFMMETRICS
*PSDRV_UVMetrics(LONG UV
, const AFM
*afm
);
489 SHORT
PSDRV_CalcAvgCharWidth(const AFM
*afm
);
491 extern BOOL
PSDRV_SelectBuiltinFont(PSDRV_PDEVICE
*physDev
, HFONT hfont
,
492 LOGFONTW
*plf
, LPSTR FaceName
);
493 extern BOOL
PSDRV_WriteSetBuiltinFont(PSDRV_PDEVICE
*physDev
);
494 extern BOOL
PSDRV_WriteBuiltinGlyphShow(PSDRV_PDEVICE
*physDev
, LPCWSTR str
, INT count
);
496 extern BOOL
PSDRV_SelectDownloadFont(PSDRV_PDEVICE
*physDev
);
497 extern BOOL
PSDRV_WriteSetDownloadFont(PSDRV_PDEVICE
*physDev
);
498 extern BOOL
PSDRV_WriteDownloadGlyphShow(PSDRV_PDEVICE
*physDev
, WORD
*glpyhs
,
500 extern BOOL
PSDRV_EmptyDownloadList(PSDRV_PDEVICE
*physDev
, BOOL write_undef
);
502 #define MAX_G_NAME 31 /* max length of PS glyph name */
503 extern void get_glyph_name(HDC hdc
, WORD index
, char *name
);
505 extern TYPE1
*T1_download_header(PSDRV_PDEVICE
*physDev
, char *ps_name
,
506 RECT
*bbox
, UINT emsize
);
507 extern BOOL
T1_download_glyph(PSDRV_PDEVICE
*physDev
, DOWNLOAD
*pdl
,
508 DWORD index
, char *glyph_name
);
509 extern void T1_free(TYPE1
*t1
);
511 extern TYPE42
*T42_download_header(PSDRV_PDEVICE
*physDev
, char *ps_name
,
512 RECT
*bbox
, UINT emsize
);
513 extern BOOL
T42_download_glyph(PSDRV_PDEVICE
*physDev
, DOWNLOAD
*pdl
,
514 DWORD index
, char *glyph_name
);
515 extern void T42_free(TYPE42
*t42
);
517 extern DWORD
RLE_encode(BYTE
*in_buf
, DWORD len
, BYTE
*out_buf
);
518 extern DWORD
ASCII85_encode(BYTE
*in_buf
, DWORD len
, BYTE
*out_buf
);
520 #define push_lc_numeric(x) do { \
521 const char *tmplocale = setlocale(LC_NUMERIC,NULL); \
522 setlocale(LC_NUMERIC,x);
524 #define pop_lc_numeric() \
525 setlocale(LC_NUMERIC,tmplocale); \