blob: f17a3bb50089159c1b1334a4cf36dde9bd1537f9 [file] [log] [blame]
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +00001/*
Alexandre Julliard767e6f61998-08-09 12:47:43 +00002 * PostScript driver initialization functions
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +00003 *
4 * Copyright 1998 Huw D M Davies
Marcus Meissnerab8b7db2001-04-27 18:02:46 +00005 * Copyright 2001 Marcus Meissner
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +00006 *
7 */
Marcus Meissnerab8b7db2001-04-27 18:02:46 +00008
Jeff Garzikc3e1f721999-02-19 15:42:11 +00009#include <string.h>
Marcus Meissnerab8b7db2001-04-27 18:02:46 +000010#include <unistd.h>
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000011
Alexandre Julliarda0d77311998-09-13 16:32:00 +000012#include "gdi.h"
13#include "psdrv.h"
Alexandre Julliard61fece01999-06-26 19:09:08 +000014#include "debugtools.h"
Alexandre Julliarda0d77311998-09-13 16:32:00 +000015#include "heap.h"
16#include "winreg.h"
Alexandre Julliard59545601999-02-10 06:52:57 +000017#include "winspool.h"
Alexandre Julliarda0d77311998-09-13 16:32:00 +000018#include "winerror.h"
Huw D M Davies91547cb1999-07-24 10:11:05 +000019#include "options.h"
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000020
Marcus Meissnerab8b7db2001-04-27 18:02:46 +000021#ifdef HAVE_CUPS
22# include <cups/cups.h>
23#endif
24
Dimitrie O. Paun529da542000-11-27 23:54:25 +000025DEFAULT_DEBUG_CHANNEL(psdrv);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000026
Alexandre Julliarda3960291999-02-26 11:11:13 +000027static BOOL PSDRV_CreateDC( DC *dc, LPCSTR driver, LPCSTR device,
Huw D M Daviese39b6761999-05-17 16:20:51 +000028 LPCSTR output, const DEVMODEA* initData );
Alexandre Julliarda3960291999-02-26 11:11:13 +000029static BOOL PSDRV_DeleteDC( DC *dc );
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000030
31static const DC_FUNCTIONS PSDRV_Funcs =
32{
Huw D M Daviese39b6761999-05-17 16:20:51 +000033 NULL, /* pAbortDoc */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000034 NULL, /* pAbortPath */
35 NULL, /* pAngleArc */
Huw D M Davies14c99d01998-10-24 10:44:05 +000036 PSDRV_Arc, /* pArc */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000037 NULL, /* pArcTo */
38 NULL, /* pBeginPath */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000039 NULL, /* pBitBlt */
Huw D M Davies87f87bf1998-10-28 09:53:53 +000040 NULL, /* pBitmapBits */
Lionel Ulmerbedf40b2000-05-12 20:18:14 +000041 NULL, /* pChoosePixelFormat */
Huw D M Davies14c99d01998-10-24 10:44:05 +000042 PSDRV_Chord, /* pChord */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000043 NULL, /* pCloseFigure */
Huw D M Davies87f87bf1998-10-28 09:53:53 +000044 NULL, /* pCreateBitmap */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000045 PSDRV_CreateDC, /* pCreateDC */
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +000046 NULL, /* pCreateDIBSection */
47 NULL, /* pCreateDIBSection16 */
Huw D M Daviese39b6761999-05-17 16:20:51 +000048 PSDRV_DeleteDC, /* pDeleteDC */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000049 NULL, /* pDeleteObject */
Lionel Ulmerbedf40b2000-05-12 20:18:14 +000050 NULL, /* pDescribePixelFormat */
Huw D M Daviese39b6761999-05-17 16:20:51 +000051 PSDRV_DeviceCapabilities, /* pDeviceCapabilities */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000052 PSDRV_Ellipse, /* pEllipse */
Huw D M Davies81561501999-07-25 11:25:59 +000053 PSDRV_EndDoc, /* pEndDoc */
54 PSDRV_EndPage, /* pEndPage */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000055 NULL, /* pEndPath */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000056 PSDRV_EnumDeviceFonts, /* pEnumDeviceFonts */
57 PSDRV_Escape, /* pEscape */
58 NULL, /* pExcludeClipRect */
Huw D M Daviese39b6761999-05-17 16:20:51 +000059 PSDRV_ExtDeviceMode, /* pExtDeviceMode */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000060 NULL, /* pExtFloodFill */
61 PSDRV_ExtTextOut, /* pExtTextOut */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000062 NULL, /* pFillPath */
Huw D M Davies7603dea1999-04-25 09:24:23 +000063 NULL, /* pFillRgn */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000064 NULL, /* pFlattenPath */
Huw D M Davies7603dea1999-04-25 09:24:23 +000065 NULL, /* pFrameRgn */
Huw D M Davies14c99d01998-10-24 10:44:05 +000066 PSDRV_GetCharWidth, /* pGetCharWidth */
Alexandre Julliard07e42132000-03-19 21:19:21 +000067 NULL, /* pGetDCOrgEx */
Ove Kaaven27398d42001-03-20 01:55:18 +000068 NULL, /* pGetDeviceGammaRamp */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000069 NULL, /* pGetPixel */
Lionel Ulmerbedf40b2000-05-12 20:18:14 +000070 NULL, /* pGetPixelFormat */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000071 PSDRV_GetTextExtentPoint, /* pGetTextExtentPoint */
72 PSDRV_GetTextMetrics, /* pGetTextMetrics */
73 NULL, /* pIntersectClipRect */
Huw D M Davies7603dea1999-04-25 09:24:23 +000074 NULL, /* pInvertRgn */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000075 PSDRV_LineTo, /* pLineTo */
Patrik Stridvalld3534c32000-11-05 03:28:18 +000076 NULL, /* pMoveTo */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000077 NULL, /* pOffsetClipRgn */
78 NULL, /* pOffsetViewportOrg (optional) */
79 NULL, /* pOffsetWindowOrg (optional) */
80 NULL, /* pPaintRgn */
Huw D M Daviese28224f1999-07-10 10:21:03 +000081 PSDRV_PatBlt, /* pPatBlt */
Huw D M Davies14c99d01998-10-24 10:44:05 +000082 PSDRV_Pie, /* pPie */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000083 NULL, /* pPolyBezier */
84 NULL, /* pPolyBezierTo */
85 NULL, /* pPolyDraw */
Huw D M Davies14c99d01998-10-24 10:44:05 +000086 PSDRV_PolyPolygon, /* pPolyPolygon */
87 PSDRV_PolyPolyline, /* pPolyPolyline */
Alexandre Julliard767e6f61998-08-09 12:47:43 +000088 PSDRV_Polygon, /* pPolygon */
89 PSDRV_Polyline, /* pPolyline */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000090 NULL, /* pPolylineTo */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000091 NULL, /* pRealizePalette */
92 PSDRV_Rectangle, /* pRectangle */
93 NULL, /* pRestoreDC */
Huw D M Davies14c99d01998-10-24 10:44:05 +000094 PSDRV_RoundRect, /* pRoundRect */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000095 NULL, /* pSaveDC */
96 NULL, /* pScaleViewportExt (optional) */
97 NULL, /* pScaleWindowExt (optional) */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +000098 NULL, /* pSelectClipPath */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +000099 NULL, /* pSelectClipRgn */
100 PSDRV_SelectObject, /* pSelectObject */
101 NULL, /* pSelectPalette */
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000102 PSDRV_SetBkColor, /* pSetBkColor */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000103 NULL, /* pSetBkMode */
Stephane Lussier62efee21999-10-13 13:58:45 +0000104 PSDRV_SetDeviceClipping, /* pSetDeviceClipping */
Ove Kaaven27398d42001-03-20 01:55:18 +0000105 NULL, /* pSetDeviceGammaRamp */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000106 NULL, /* pSetDIBitsToDevice */
107 NULL, /* pSetMapMode (optional) */
108 NULL, /* pSetMapperFlags */
Huw D M Davies14c99d01998-10-24 10:44:05 +0000109 PSDRV_SetPixel, /* pSetPixel */
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000110 NULL, /* pSetPixelFormat */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000111 NULL, /* pSetPolyFillMode */
112 NULL, /* pSetROP2 */
113 NULL, /* pSetRelAbs */
114 NULL, /* pSetStretchBltMode */
115 NULL, /* pSetTextAlign */
116 NULL, /* pSetTextCharacterExtra */
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000117 PSDRV_SetTextColor, /* pSetTextColor */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000118 NULL, /* pSetTextJustification */
119 NULL, /* pSetViewportExt (optional) */
120 NULL, /* pSetViewportOrg (optional) */
121 NULL, /* pSetWindowExt (optional) */
122 NULL, /* pSetWindowOrg (optional) */
Huw D M Davies81561501999-07-25 11:25:59 +0000123 PSDRV_StartDoc, /* pStartDoc */
124 PSDRV_StartPage, /* pStartPage */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000125 NULL, /* pStretchBlt */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +0000126 PSDRV_StretchDIBits, /* pStretchDIBits */
127 NULL, /* pStrokeAndFillPath */
128 NULL, /* pStrokePath */
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000129 NULL, /* pSwapBuffers */
Huw D M Daviesf0f8da51999-12-05 23:54:02 +0000130 NULL /* pWidenPath */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000131};
132
133
134/* Default entries for devcaps */
135
136static DeviceCaps PSDRV_DevCaps = {
137/* version */ 0,
138/* technology */ DT_RASPRINTER,
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000139/* horzSize */ 210,
140/* vertSize */ 297,
141/* horzRes */ 4961,
142/* vertRes */ 7016,
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000143/* bitsPixel */ 1,
144/* planes */ 1,
145/* numBrushes */ -1,
146/* numPens */ 10,
147/* numMarkers */ 0,
148/* numFonts */ 39,
149/* numColors */ 2,
150/* pdeviceSize */ 0,
151/* curveCaps */ CC_CIRCLES | CC_PIE | CC_CHORD | CC_ELLIPSES |
152 CC_WIDE | CC_STYLED | CC_WIDESTYLED | CC_INTERIORS |
153 CC_ROUNDRECT,
154/* lineCaps */ LC_POLYLINE | LC_MARKER | LC_POLYMARKER | LC_WIDE |
155 LC_STYLED | LC_WIDESTYLED | LC_INTERIORS,
156/* polygoalnCaps */ PC_POLYGON | PC_RECTANGLE | PC_WINDPOLYGON |
157 PC_SCANLINE | PC_WIDE | PC_STYLED | PC_WIDESTYLED |
158 PC_INTERIORS,
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000159/* textCaps */ TC_CR_ANY, /* psdrv 0x59f7 */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000160/* clipCaps */ CP_RECTANGLE,
Huw D M Daviese39b6761999-05-17 16:20:51 +0000161/* rasterCaps */ RC_BITBLT | RC_BITMAP64 | RC_GDI20_OUTPUT |
162 RC_DIBTODEV | RC_STRETCHBLT |
163 RC_STRETCHDIB, /* psdrv 0x6e99 */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000164/* aspectX */ 600,
165/* aspectY */ 600,
166/* aspectXY */ 848,
167/* pad1 */ { 0 },
168/* logPixelsX */ 600,
169/* logPixelsY */ 600,
170/* pad2 */ { 0 },
171/* palette size */ 0,
172/* ..etc */ 0, 0 };
173
Huw D M Daviese39b6761999-05-17 16:20:51 +0000174static PSDRV_DEVMODEA DefaultDevmode =
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000175{
176 { /* dmPublic */
177/* dmDeviceName */ "Wine PostScript Driver",
178/* dmSpecVersion */ 0x30a,
179/* dmDriverVersion */ 0x001,
Huw D M Daviese39b6761999-05-17 16:20:51 +0000180/* dmSize */ sizeof(DEVMODEA),
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000181/* dmDriverExtra */ 0,
Luc Tourangeaueffc55e1999-07-18 18:34:45 +0000182/* dmFields */ DM_ORIENTATION | DM_PAPERSIZE | DM_SCALE |
183 DM_COPIES | DM_DEFAULTSOURCE | DM_COLOR |
184 DM_DUPLEX | DM_YRESOLUTION | DM_TTOPTION,
Huw D M Daviese39b6761999-05-17 16:20:51 +0000185 { /* u1 */
186 { /* s1 */
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000187/* dmOrientation */ DMORIENT_PORTRAIT,
188/* dmPaperSize */ DMPAPER_A4,
189/* dmPaperLength */ 2969,
Huw D M Daviese39b6761999-05-17 16:20:51 +0000190/* dmPaperWidth */ 2101
191 }
192 },
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000193/* dmScale */ 100, /* ?? */
194/* dmCopies */ 1,
195/* dmDefaultSource */ DMBIN_AUTO,
196/* dmPrintQuality */ 0,
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000197/* dmColor */ DMCOLOR_COLOR,
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000198/* dmDuplex */ 0,
199/* dmYResolution */ 0,
200/* dmTTOption */ DMTT_SUBDEV,
201/* dmCollate */ 0,
202/* dmFormName */ "",
203/* dmUnusedPadding */ 0,
204/* dmBitsPerPel */ 0,
205/* dmPelsWidth */ 0,
206/* dmPelsHeight */ 0,
207/* dmDisplayFlags */ 0,
Patrik Stridvalla9f6a9d2000-10-24 02:22:16 +0000208/* dmDisplayFrequency */ 0,
209/* dmICMMethod */ 0,
210/* dmICMIntent */ 0,
211/* dmMediaType */ 0,
212/* dmDitherType */ 0,
213/* dmReserved1 */ 0,
214/* dmReserved2 */ 0,
215/* dmPanningWidth */ 0,
216/* dmPanningHeight */ 0
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000217 },
218 { /* dmDocPrivate */
Patrik Stridvalla9f6a9d2000-10-24 02:22:16 +0000219 /* dummy */ 0
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000220 },
221 { /* dmDrvPrivate */
Patrik Stridvalla9f6a9d2000-10-24 02:22:16 +0000222 /* ppdfilename */ "default.ppd",
223 /* numInstalledOptions */ 0
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000224 }
225};
226
Alexandre Julliarda3960291999-02-26 11:11:13 +0000227HANDLE PSDRV_Heap = 0;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000228
Alexandre Julliarda3960291999-02-26 11:11:13 +0000229static HANDLE PSDRV_DefaultFont = 0;
230static LOGFONTA DefaultLogFont = {
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000231 100, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, ANSI_CHARSET, 0, 0,
232 DEFAULT_QUALITY, FIXED_PITCH | FF_MODERN, ""
233};
234
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000235/*********************************************************************
236 * PSDRV_Init
237 *
238 * Initializes font metrics and registers driver. Called from GDI_Init()
239 *
240 */
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000241BOOL WINAPI PSDRV_Init( HINSTANCE hinst, DWORD reason, LPVOID reserved )
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000242{
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000243 TRACE("(0x%4x, 0x%08lx, %p)\n", hinst, reason, reserved);
244
245 switch(reason) {
246 case DLL_PROCESS_ATTACH:
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000247 /* FIXME: return FALSE if we fail any of these steps */
248 PSDRV_Heap = HeapCreate(0, 0x10000, 0);
249 PSDRV_GetFontMetrics();
250 PSDRV_DefaultFont = CreateFontIndirectA(&DefaultLogFont);
Dmitry Timoshkovad970052000-08-26 20:27:28 +0000251 /* Register driver as "WINEPS", "WINEPS.DLL" and "WINEPS.DRV"
252 to allow an easy configuring for users */
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000253 DRIVER_RegisterDriver( "WINEPS", &PSDRV_Funcs );
Dmitry Timoshkovad970052000-08-26 20:27:28 +0000254 DRIVER_RegisterDriver( "WINEPS.DLL", &PSDRV_Funcs );
255 DRIVER_RegisterDriver( "WINEPS.DRV", &PSDRV_Funcs );
Alexandre Julliard06187462001-01-17 22:03:18 +0000256 break;
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000257 case DLL_PROCESS_DETACH:
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000258 DeleteObject( PSDRV_DefaultFont );
259 HeapDestroy( PSDRV_Heap );
260 DRIVER_UnregisterDriver( "WINEPS" );
Dmitry Timoshkovad970052000-08-26 20:27:28 +0000261 DRIVER_UnregisterDriver( "WINEPS.DLL" );
262 DRIVER_UnregisterDriver( "WINEPS.DRV" );
Alexandre Julliard06187462001-01-17 22:03:18 +0000263 break;
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000264 }
265
266 return TRUE;
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000267}
268
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +0000269
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000270/**********************************************************************
271 * PSDRV_CreateDC
272 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000273static BOOL PSDRV_CreateDC( DC *dc, LPCSTR driver, LPCSTR device,
Huw D M Daviese39b6761999-05-17 16:20:51 +0000274 LPCSTR output, const DEVMODEA* initData )
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000275{
276 PSDRV_PDEVICE *physDev;
Noel Borthwick86b686f1999-06-05 08:52:30 +0000277 PRINTERINFO *pi;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000278 DeviceCaps *devCaps;
Huw D M Daviesd4b933e2001-01-28 23:13:45 +0000279 PAGESIZE *page;
280 INT width = 0, height = 0;
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000281
Noel Borthwick86b686f1999-06-05 08:52:30 +0000282 /* If no device name was specified, retrieve the device name
283 * from the DEVMODE structure from the DC's physDev.
284 * (See CreateCompatibleDC) */
285 if ( !device && dc->physDev )
286 {
287 physDev = (PSDRV_PDEVICE *)dc->physDev;
288 device = physDev->Devmode->dmPublic.dmDeviceName;
289 }
290 pi = PSDRV_FindPrinterInfo(device);
291
Alexandre Julliard61fece01999-06-26 19:09:08 +0000292 TRACE("(%s %s %s %p)\n", driver, device, output, initData);
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000293
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000294 if(!pi) return FALSE;
295
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000296 if(!pi->Fonts) {
Alexandre Julliard61fece01999-06-26 19:09:08 +0000297 MESSAGE("To use WINEPS you need to install some AFM files.\n");
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000298 return FALSE;
299 }
300
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000301 physDev = (PSDRV_PDEVICE *)HeapAlloc( PSDRV_Heap, HEAP_ZERO_MEMORY,
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000302 sizeof(*physDev) );
303 if (!physDev) return FALSE;
304 dc->physDev = physDev;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000305
306 physDev->pi = pi;
307
Huw D M Daviese39b6761999-05-17 16:20:51 +0000308 physDev->Devmode = (PSDRV_DEVMODEA *)HeapAlloc( PSDRV_Heap, 0,
309 sizeof(PSDRV_DEVMODEA) );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000310 if(!physDev->Devmode) {
311 HeapFree( PSDRV_Heap, 0, physDev );
312 return FALSE;
313 }
314
Huw D M Daviese39b6761999-05-17 16:20:51 +0000315 memcpy( physDev->Devmode, pi->Devmode, sizeof(PSDRV_DEVMODEA) );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000316
317 if(initData) {
Huw D M Daviese39b6761999-05-17 16:20:51 +0000318 PSDRV_MergeDevmodes(physDev->Devmode, (PSDRV_DEVMODEA *)initData, pi);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000319 }
320
321
322 devCaps = HeapAlloc( PSDRV_Heap, 0, sizeof(PSDRV_DevCaps) );
323 memcpy(devCaps, &PSDRV_DevCaps, sizeof(PSDRV_DevCaps));
324
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000325 /* Are aspect[XY] and logPixels[XY] correct? */
326 /* Need to handle different res in x and y => fix ppd */
327 devCaps->aspectX = devCaps->logPixelsX =
328 physDev->pi->ppd->DefaultResolution;
329 devCaps->aspectY = devCaps->logPixelsY =
330 physDev->pi->ppd->DefaultResolution;
331 devCaps->aspectXY = (int)hypot( (double)devCaps->aspectX,
332 (double)devCaps->aspectY );
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000333
Huw D M Daviesd4b933e2001-01-28 23:13:45 +0000334
335 for(page = pi->ppd->PageSizes; page; page = page->next) {
336 if(page->WinPage == physDev->Devmode->dmPublic.u1.s1.dmPaperSize)
337 break;
338 }
339 if(!page) {
340 FIXME("Can't find page\n");
341 physDev->PageSize.left = 0;
342 physDev->PageSize.right = 0;
343 physDev->PageSize.bottom = 0;
344 physDev->PageSize.top = 0;
345 } else if(page->ImageableArea) { /* PageSize is in device units */
346 physDev->PageSize.left = page->ImageableArea->llx *
347 devCaps->logPixelsX / 72;
348 physDev->PageSize.right = page->ImageableArea->urx *
349 devCaps->logPixelsX / 72;
350 physDev->PageSize.bottom = page->ImageableArea->lly *
351 devCaps->logPixelsY / 72;
352 physDev->PageSize.top = page->ImageableArea->ury *
353 devCaps->logPixelsY / 72;
354 } else {
355 physDev->PageSize.left = physDev->PageSize.bottom = 0;
356 physDev->PageSize.right = page->PaperDimension->x *
357 devCaps->logPixelsX / 72;
358 physDev->PageSize.top = page->PaperDimension->y *
359 devCaps->logPixelsY / 72;
360 }
361 TRACE("PageSize = (%d,%d - %d,%d)\n", physDev->PageSize.left, physDev->PageSize.bottom, physDev->PageSize.right, physDev->PageSize.top);
362
363 /* these are in mm */
364 width = (physDev->PageSize.right - physDev->PageSize.left) * 25.4 /
365 devCaps->logPixelsX;
366 height = (physDev->PageSize.top - physDev->PageSize.bottom) * 25.4 /
367 devCaps->logPixelsY;
368
369 if(physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_PORTRAIT) {
370 devCaps->horzSize = width;
371 devCaps->vertSize = height;
372 } else {
373 devCaps->horzSize = height;
374 devCaps->vertSize = width;
375 }
376
377 devCaps->horzRes = devCaps->logPixelsX * devCaps->horzSize / 25.4;
378 devCaps->vertRes = devCaps->logPixelsY * devCaps->vertSize / 25.4;
379
380 TRACE("devcaps: horzSize = %dmm, vertSize = %dmm, "
381 "horzRes = %d, vertRes = %d\n",
382 devCaps->horzSize, devCaps->vertSize,
383 devCaps->horzRes, devCaps->vertRes);
384
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000385 if(physDev->pi->ppd->ColorDevice) {
386 devCaps->bitsPixel = 8;
387 devCaps->numColors = 256;
388 /* FIXME are these values OK? */
389 }
390
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000391 /* etc */
392
Alexandre Julliard2239abb2000-11-05 02:05:07 +0000393 dc->devCaps = devCaps;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000394
Alexandre Julliard2239abb2000-11-05 02:05:07 +0000395 dc->hVisRgn = CreateRectRgn(0, 0, dc->devCaps->horzRes,
396 dc->devCaps->vertRes);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000397
Alexandre Julliard2239abb2000-11-05 02:05:07 +0000398 dc->hFont = PSDRV_DefaultFont;
Huw D M Davies91547cb1999-07-24 10:11:05 +0000399 physDev->job.output = output ?
400 HEAP_strdupA( PSDRV_Heap, 0, output ) :
401 HEAP_strdupA( PSDRV_Heap, 0, "LPT1:" ); /* HACK */
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000402 physDev->job.hJob = 0;
403 return TRUE;
404}
405
406
407/**********************************************************************
408 * PSDRV_DeleteDC
409 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000410static BOOL PSDRV_DeleteDC( DC *dc )
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000411{
412 PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000413
Alexandre Julliard61fece01999-06-26 19:09:08 +0000414 TRACE("\n");
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000415
416 HeapFree( PSDRV_Heap, 0, physDev->Devmode );
417 HeapFree( PSDRV_Heap, 0, physDev->job.output );
Alexandre Julliard2239abb2000-11-05 02:05:07 +0000418 HeapFree( PSDRV_Heap, 0, (void *)dc->devCaps );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000419 HeapFree( PSDRV_Heap, 0, physDev );
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000420 dc->physDev = NULL;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000421
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000422 return TRUE;
423}
424
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000425
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000426/**********************************************************************
427 * PSDRV_FindPrinterInfo
428 */
429PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name)
430{
431 static PRINTERINFO *PSDRV_PrinterList;
Ian Pilcher744820d2001-04-02 19:14:41 +0000432 DWORD type = REG_BINARY, needed, res, dwPaperSize;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000433 PRINTERINFO *pi = PSDRV_PrinterList, **last = &PSDRV_PrinterList;
434 FONTNAME *font;
435 AFM *afm;
Ian Pilcher744820d2001-04-02 19:14:41 +0000436 HANDLE hPrinter;
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000437 const char *ppd = NULL;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000438
Alexandre Julliard61fece01999-06-26 19:09:08 +0000439 TRACE("'%s'\n", name);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000440
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000441 for( ; pi; last = &pi->next, pi = pi->next)
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000442 if(!strcmp(pi->FriendlyName, name))
443 return pi;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000444
445 pi = *last = HeapAlloc( PSDRV_Heap, 0, sizeof(*pi) );
446 pi->FriendlyName = HEAP_strdupA( PSDRV_Heap, 0, name );
Alexandre Julliarda3960291999-02-26 11:11:13 +0000447 res = DrvGetPrinterData16((LPSTR)name, (LPSTR)INT_PD_DEFAULT_DEVMODE, &type,
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000448 NULL, 0, &needed );
449
Huw D M Davies450270b1999-07-10 11:58:50 +0000450 if(res == ERROR_INVALID_PRINTER_NAME || needed != sizeof(DefaultDevmode)) {
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000451 pi->Devmode = HeapAlloc( PSDRV_Heap, 0, sizeof(DefaultDevmode) );
452 memcpy(pi->Devmode, &DefaultDevmode, sizeof(DefaultDevmode) );
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000453 strcpy(pi->Devmode->dmPublic.dmDeviceName,name);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000454 DrvSetPrinterData16((LPSTR)name, (LPSTR)INT_PD_DEFAULT_DEVMODE,
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000455 REG_BINARY, (LPBYTE)&DefaultDevmode, sizeof(DefaultDevmode) );
456
457 /* need to do something here AddPrinter?? */
458 } else {
459 pi->Devmode = HeapAlloc( PSDRV_Heap, 0, needed );
Alexandre Julliarda3960291999-02-26 11:11:13 +0000460 DrvGetPrinterData16((LPSTR)name, (LPSTR)INT_PD_DEFAULT_DEVMODE, &type,
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000461 (LPBYTE)pi->Devmode, needed, &needed);
462 }
463
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000464 if (OpenPrinterA (pi->FriendlyName, &hPrinter, NULL) == 0) {
Ian Pilcher744820d2001-04-02 19:14:41 +0000465 ERR ("OpenPrinterA failed with code %li\n", GetLastError ());
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000466 goto cleanup;
Ian Pilcher744820d2001-04-02 19:14:41 +0000467 }
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000468 pi->Devmode->dmDrvPrivate.ppdFileName[0]='\0';
469#ifdef HAVE_CUPS
Ian Pilcher744820d2001-04-02 19:14:41 +0000470 {
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000471 ppd = cupsGetPPD(name);
472
473 if (ppd) {
474 strcpy(pi->Devmode->dmDrvPrivate.ppdFileName,ppd);
475 res = ERROR_SUCCESS;
476 /* we should unlink() that file later */
477 } else {
478 ERR("Did not find ppd for %s\n",name);
479 }
480 }
481#endif
482 if (!pi->Devmode->dmDrvPrivate.ppdFileName[0]) {
483 res = GetPrinterDataA (hPrinter, "PPD File", NULL,
484 pi->Devmode->dmDrvPrivate.ppdFileName, 256, &needed);
485 }
486 if (res != ERROR_SUCCESS) {
Ian Pilcher744820d2001-04-02 19:14:41 +0000487 ERR ("Error %li getting PPD file name for printer '%s'\n", res, name);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000488 goto closeprinter;
Ian Pilcher744820d2001-04-02 19:14:41 +0000489 }
490
491 res = GetPrinterDataA (hPrinter, "Paper Size", NULL, (LPBYTE) &dwPaperSize,
492 sizeof (DWORD), &needed);
493 if (res == ERROR_SUCCESS)
494 pi->Devmode->dmPublic.u1.s1.dmPaperSize = (SHORT) dwPaperSize;
495 else if (res == ERROR_FILE_NOT_FOUND)
496 TRACE ("No 'Paper Size' for printer '%s'\n", name);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000497 else {
Ian Pilcher744820d2001-04-02 19:14:41 +0000498 ERR ("GetPrinterDataA returned %li\n", res);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000499 goto closeprinter;
Ian Pilcher744820d2001-04-02 19:14:41 +0000500 }
501
502 res = EnumPrinterDataExA (hPrinter, "PrinterDriverData\\FontSubTable", NULL,
503 0, &needed, &pi->FontSubTableSize);
504 if (res == ERROR_SUCCESS)
505 TRACE ("No 'FontSubTable' for printer '%s'\n", name);
506 else if (res == ERROR_MORE_DATA)
507 {
508 pi->FontSubTable = HeapAlloc (PSDRV_Heap, 0, needed);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000509 if (pi->FontSubTable == NULL) {
Ian Pilcher744820d2001-04-02 19:14:41 +0000510 ERR ("Failed to allocate %li bytes from heap\n", needed);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000511 goto closeprinter;
Ian Pilcher744820d2001-04-02 19:14:41 +0000512 }
513
514 res = EnumPrinterDataExA (hPrinter, "PrinterDriverData\\FontSubTable",
515 (LPBYTE) pi->FontSubTable, needed, &needed,
516 &pi->FontSubTableSize);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000517 if (res != ERROR_SUCCESS) {
Ian Pilcher744820d2001-04-02 19:14:41 +0000518 ERR ("EnumPrinterDataExA returned %li\n", res);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000519 goto closeprinter;
Ian Pilcher744820d2001-04-02 19:14:41 +0000520 }
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000521 } else {
522 FIXME ("EnumPrinterDataExA returned %li\n", res);
523 /* ignore error */
Ian Pilcher744820d2001-04-02 19:14:41 +0000524 }
525
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000526 if (ClosePrinter (hPrinter) == 0) {
Ian Pilcher744820d2001-04-02 19:14:41 +0000527 ERR ("ClosePrinter failed with code %li\n", GetLastError ());
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000528 goto cleanup;
Ian Pilcher744820d2001-04-02 19:14:41 +0000529 }
530
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000531 pi->ppd = PSDRV_ParsePPD(pi->Devmode->dmDrvPrivate.ppdFileName);
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000532 if(!pi->ppd) {
Alexandre Julliard61fece01999-06-26 19:09:08 +0000533 MESSAGE("Couldn't find PPD file '%s', expect a crash now!\n",
Huw D M Daviesbcad2551998-11-01 13:02:27 +0000534 pi->Devmode->dmDrvPrivate.ppdFileName);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000535 goto cleanup;
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000536 }
537
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000538 pi->next = NULL;
539 pi->Fonts = NULL;
540
541 for(font = pi->ppd->InstalledFonts; font; font = font->next) {
542 afm = PSDRV_FindAFMinList(PSDRV_AFMFontList, font->Name);
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000543 if(!afm)
544 TRACE( "Couldn't find AFM file for installed printer font '%s' - ignoring\n", font->Name);
545 else
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000546 PSDRV_AddAFMtoList(&pi->Fonts, afm);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000547
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000548 }
549 if (ppd) unlink(ppd);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000550 return pi;
Marcus Meissnerab8b7db2001-04-27 18:02:46 +0000551
552closeprinter:
553 ClosePrinter(hPrinter);
554cleanup:
555 HeapFree (PSDRV_Heap, 0, pi->FontSubTable);
556 HeapFree(PSDRV_Heap, 0, pi->FriendlyName);
557 HeapFree(PSDRV_Heap, 0, pi->Devmode);
558 HeapFree(PSDRV_Heap, 0, pi);
559 if (ppd) unlink(ppd);
560 *last = NULL;
561 return NULL;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000562}