2 * PostScript driver initialization functions
4 * Copyright 1998 Huw D M Davies
5 * Copyright 2001 Marcus Meissner
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
30 #ifdef HAVE_CUPS_CUPS_H
31 # include <cups/cups.h>
34 #define NONAMELESSUNION
35 #define NONAMELESSSTRUCT
44 #include "wine/library.h"
45 #include "wine/debug.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(psdrv);
50 static void *cupshandle = NULL;
53 static const PSDRV_DEVMODEA DefaultDevmode =
56 /* dmDeviceName */ "Wine PostScript Driver",
57 /* dmSpecVersion */ 0x30a,
58 /* dmDriverVersion */ 0x001,
59 /* dmSize */ sizeof(DEVMODEA),
60 /* dmDriverExtra */ sizeof(PSDRV_DEVMODEA)-sizeof(DEVMODEA),
61 /* dmFields */ DM_ORIENTATION | DM_PAPERSIZE | DM_SCALE |
62 DM_COPIES | DM_DEFAULTSOURCE | DM_COLOR |
63 DM_YRESOLUTION | DM_TTOPTION,
66 /* dmOrientation */ DMORIENT_PORTRAIT,
67 /* dmPaperSize */ DMPAPER_LETTER,
68 /* dmPaperLength */ 2794,
69 /* dmPaperWidth */ 2159,
70 /* dmScale */ 100, /* ?? */
72 /* dmDefaultSource */ DMBIN_AUTO,
73 /* dmPrintQuality */ 0
76 /* dmColor */ DMCOLOR_COLOR,
77 /* dmDuplex */ DMDUP_SIMPLEX,
78 /* dmYResolution */ 0,
79 /* dmTTOption */ DMTT_SUBDEV,
82 /* dmUnusedPadding */ 0,
87 /* dmDisplayFlags */ 0
89 /* dmDisplayFrequency */ 0,
96 /* dmPanningWidth */ 0,
97 /* dmPanningHeight */ 0
103 /* numInstalledOptions */ 0
107 HINSTANCE PSDRV_hInstance = 0;
108 HANDLE PSDRV_Heap = 0;
110 static HFONT PSDRV_DefaultFont = 0;
111 static const LOGFONTA DefaultLogFont = {
112 100, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, ANSI_CHARSET, 0, 0,
113 DEFAULT_QUALITY, FIXED_PITCH | FF_MODERN, ""
116 static const CHAR default_devmodeA[] = "Default DevMode";
118 /*********************************************************************
121 * Initializes font metrics and registers driver. wineps dll entry point.
124 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
126 TRACE("(%p, %d, %p)\n", hinst, reason, reserved);
130 case DLL_PROCESS_ATTACH:
131 PSDRV_hInstance = hinst;
132 DisableThreadLibraryCalls(hinst);
134 PSDRV_Heap = HeapCreate(0, 0x10000, 0);
135 if (PSDRV_Heap == NULL)
138 if (PSDRV_GetFontMetrics() == FALSE) {
139 HeapDestroy(PSDRV_Heap);
143 PSDRV_DefaultFont = CreateFontIndirectA(&DefaultLogFont);
144 if (PSDRV_DefaultFont == NULL) {
145 HeapDestroy(PSDRV_Heap);
148 #ifdef SONAME_LIBCUPS
149 /* dynamically load CUPS if not yet loaded */
151 cupshandle = wine_dlopen(SONAME_LIBCUPS, RTLD_NOW, NULL, 0);
152 if (!cupshandle) cupshandle = (void*)-1;
157 case DLL_PROCESS_DETACH:
159 DeleteObject( PSDRV_DefaultFont );
160 HeapDestroy( PSDRV_Heap );
161 #ifdef SONAME_LIBCUPS
162 if (cupshandle && (cupshandle != (void*)-1)) {
163 wine_dlclose(cupshandle, NULL, 0);
174 static void PSDRV_UpdateDevCaps( PSDRV_PDEVICE *physDev )
177 INT width = 0, height = 0;
179 if(physDev->Devmode->dmPublic.dmFields & DM_PAPERSIZE) {
180 LIST_FOR_EACH_ENTRY(page, &physDev->pi->ppd->PageSizes, PAGESIZE, entry) {
181 if(page->WinPage == physDev->Devmode->dmPublic.u1.s1.dmPaperSize)
185 if(&page->entry == &physDev->pi->ppd->PageSizes) {
186 FIXME("Can't find page\n");
187 physDev->ImageableArea.left = 0;
188 physDev->ImageableArea.right = 0;
189 physDev->ImageableArea.bottom = 0;
190 physDev->ImageableArea.top = 0;
191 physDev->PageSize.cx = 0;
192 physDev->PageSize.cy = 0;
193 } else if(page->ImageableArea) {
194 /* physDev sizes in device units; ppd sizes in 1/72" */
195 physDev->ImageableArea.left = page->ImageableArea->llx *
196 physDev->logPixelsX / 72;
197 physDev->ImageableArea.right = page->ImageableArea->urx *
198 physDev->logPixelsX / 72;
199 physDev->ImageableArea.bottom = page->ImageableArea->lly *
200 physDev->logPixelsY / 72;
201 physDev->ImageableArea.top = page->ImageableArea->ury *
202 physDev->logPixelsY / 72;
203 physDev->PageSize.cx = page->PaperDimension->x *
204 physDev->logPixelsX / 72;
205 physDev->PageSize.cy = page->PaperDimension->y *
206 physDev->logPixelsY / 72;
208 physDev->ImageableArea.left = physDev->ImageableArea.bottom = 0;
209 physDev->ImageableArea.right = physDev->PageSize.cx =
210 page->PaperDimension->x * physDev->logPixelsX / 72;
211 physDev->ImageableArea.top = physDev->PageSize.cy =
212 page->PaperDimension->y * physDev->logPixelsY / 72;
214 } else if((physDev->Devmode->dmPublic.dmFields & DM_PAPERLENGTH) &&
215 (physDev->Devmode->dmPublic.dmFields & DM_PAPERWIDTH)) {
216 /* physDev sizes in device units; Devmode sizes in 1/10 mm */
217 physDev->ImageableArea.left = physDev->ImageableArea.bottom = 0;
218 physDev->ImageableArea.right = physDev->PageSize.cx =
219 physDev->Devmode->dmPublic.u1.s1.dmPaperWidth *
220 physDev->logPixelsX / 254;
221 physDev->ImageableArea.top = physDev->PageSize.cy =
222 physDev->Devmode->dmPublic.u1.s1.dmPaperLength *
223 physDev->logPixelsY / 254;
225 FIXME("Odd dmFields %x\n", physDev->Devmode->dmPublic.dmFields);
226 physDev->ImageableArea.left = 0;
227 physDev->ImageableArea.right = 0;
228 physDev->ImageableArea.bottom = 0;
229 physDev->ImageableArea.top = 0;
230 physDev->PageSize.cx = 0;
231 physDev->PageSize.cy = 0;
234 TRACE("ImageableArea = %d,%d - %d,%d: PageSize = %dx%d\n",
235 physDev->ImageableArea.left, physDev->ImageableArea.bottom,
236 physDev->ImageableArea.right, physDev->ImageableArea.top,
237 physDev->PageSize.cx, physDev->PageSize.cy);
239 /* these are in device units */
240 width = physDev->ImageableArea.right - physDev->ImageableArea.left;
241 height = physDev->ImageableArea.top - physDev->ImageableArea.bottom;
243 if(physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_PORTRAIT) {
244 physDev->horzRes = width;
245 physDev->vertRes = height;
247 physDev->horzRes = height;
248 physDev->vertRes = width;
251 /* these are in mm */
252 physDev->horzSize = (physDev->horzRes * 25.4) / physDev->logPixelsX;
253 physDev->vertSize = (physDev->vertRes * 25.4) / physDev->logPixelsY;
255 TRACE("devcaps: horzSize = %dmm, vertSize = %dmm, "
256 "horzRes = %d, vertRes = %d\n",
257 physDev->horzSize, physDev->vertSize,
258 physDev->horzRes, physDev->vertRes);
262 /***********************************************************
265 * Creates an ascii copy of supplied devmode on heap
267 * Copied from dlls/winspool/info.c until full unicodification
269 static LPDEVMODEA DEVMODEdupWtoA(HANDLE heap, const DEVMODEW *dmW)
274 /* there is no pointer dereference here, if your code checking tool complains it's broken */
275 ptrdiff_t off_formname = (const char *)dmW->dmFormName - (const char *)dmW;
277 if(!dmW) return NULL;
278 Formname = (dmW->dmSize > off_formname);
279 size = dmW->dmSize - CCHDEVICENAME - (Formname ? CCHFORMNAME : 0);
280 dmA = HeapAlloc(heap, HEAP_ZERO_MEMORY, size + dmW->dmDriverExtra);
281 WideCharToMultiByte(CP_ACP, 0, dmW->dmDeviceName, -1, (LPSTR)dmA->dmDeviceName,
282 CCHDEVICENAME, NULL, NULL);
284 memcpy(&dmA->dmSpecVersion, &dmW->dmSpecVersion,
285 dmW->dmSize - CCHDEVICENAME * sizeof(WCHAR));
287 memcpy(&dmA->dmSpecVersion, &dmW->dmSpecVersion,
288 off_formname - CCHDEVICENAME * sizeof(WCHAR));
289 WideCharToMultiByte(CP_ACP, 0, dmW->dmFormName, -1, (LPSTR)dmA->dmFormName,
290 CCHFORMNAME, NULL, NULL);
291 memcpy(&dmA->dmLogPixels, &dmW->dmLogPixels, dmW->dmSize -
292 (off_formname + CCHFORMNAME * sizeof(WCHAR)));
295 memcpy((char *)dmA + dmA->dmSize, (const char *)dmW + dmW->dmSize,
301 /**********************************************************************
304 static BOOL PSDRV_CreateDC( HDC hdc, PHYSDEV *pdev, LPCWSTR driver, LPCWSTR device,
305 LPCWSTR output, const DEVMODEW* initData )
307 PSDRV_PDEVICE *physDev;
310 /* If no device name was specified, retrieve the device name
311 * from the PRINTERINFO structure from the DC's physDev.
312 * (See CreateCompatibleDC) */
313 if ( !device && *pdev )
315 pi = PSDRV_FindPrinterInfo(get_psdrv_dev(*pdev)->pi->FriendlyName);
319 DWORD len = WideCharToMultiByte(CP_ACP, 0, device, -1, NULL, 0, NULL, NULL);
320 char *deviceA = HeapAlloc(GetProcessHeap(), 0, len);
321 WideCharToMultiByte(CP_ACP, 0, device, -1, deviceA, len, NULL, NULL);
322 pi = PSDRV_FindPrinterInfo(deviceA);
323 HeapFree(GetProcessHeap(), 0, deviceA);
326 TRACE("(%s %s %s %p)\n", debugstr_w(driver), debugstr_w(device),
327 debugstr_w(output), initData);
329 if(!pi) return FALSE;
332 RASTERIZER_STATUS status;
333 if(!GetRasterizerCaps(&status, sizeof(status)) ||
334 !(status.wFlags & TT_AVAILABLE) ||
335 !(status.wFlags & TT_ENABLED)) {
336 MESSAGE("Disabling printer %s since it has no builtin fonts and there are no TrueType fonts available.\n",
342 physDev = HeapAlloc( PSDRV_Heap, HEAP_ZERO_MEMORY, sizeof(*physDev) );
343 if (!physDev) return FALSE;
344 *pdev = &physDev->dev;
348 physDev->Devmode = HeapAlloc( PSDRV_Heap, 0, sizeof(PSDRV_DEVMODEA) );
349 if(!physDev->Devmode) {
350 HeapFree( PSDRV_Heap, 0, physDev );
354 *physDev->Devmode = *pi->Devmode;
356 physDev->logPixelsX = physDev->pi->ppd->DefaultResolution;
357 physDev->logPixelsY = physDev->pi->ppd->DefaultResolution;
359 if (output && *output) {
360 INT len = WideCharToMultiByte( CP_ACP, 0, output, -1, NULL, 0, NULL, NULL );
361 if ((physDev->job.output = HeapAlloc( PSDRV_Heap, 0, len )))
362 WideCharToMultiByte( CP_ACP, 0, output, -1, physDev->job.output, len, NULL, NULL );
364 physDev->job.output = NULL;
368 DEVMODEA *devmodeA = DEVMODEdupWtoA(PSDRV_Heap, initData);
369 PSDRV_MergeDevmodes(physDev->Devmode, (PSDRV_DEVMODEA *)devmodeA, pi);
370 HeapFree(PSDRV_Heap, 0, devmodeA);
373 PSDRV_UpdateDevCaps(physDev);
374 SelectObject( hdc, PSDRV_DefaultFont );
380 /**********************************************************************
383 static BOOL PSDRV_DeleteDC( PHYSDEV dev )
385 PSDRV_PDEVICE *physDev = get_psdrv_dev( dev );
389 HeapFree( PSDRV_Heap, 0, physDev->Devmode );
390 HeapFree( PSDRV_Heap, 0, physDev->job.output );
391 HeapFree( PSDRV_Heap, 0, physDev );
397 /**********************************************************************
400 static HDC PSDRV_ResetDC( PHYSDEV dev, const DEVMODEW *lpInitData )
402 PSDRV_PDEVICE *physDev = get_psdrv_dev( dev );
405 DEVMODEA *devmodeA = DEVMODEdupWtoA(PSDRV_Heap, lpInitData);
406 PSDRV_MergeDevmodes(physDev->Devmode, (PSDRV_DEVMODEA *)devmodeA, physDev->pi);
407 HeapFree(PSDRV_Heap, 0, devmodeA);
408 PSDRV_UpdateDevCaps(physDev);
413 /***********************************************************************
414 * GetDeviceCaps (WINEPS.@)
416 static INT PSDRV_GetDeviceCaps( PHYSDEV dev, INT cap )
418 PSDRV_PDEVICE *physDev = get_psdrv_dev( dev );
425 return DT_RASPRINTER;
427 return MulDiv(physDev->horzSize, 100,
428 physDev->Devmode->dmPublic.u1.s1.dmScale);
430 return MulDiv(physDev->vertSize, 100,
431 physDev->Devmode->dmPublic.u1.s1.dmScale);
434 return physDev->horzRes;
437 return physDev->vertRes;
439 return (physDev->pi->ppd->ColorDevice != CD_False) ? 8 : 1;
451 return (physDev->pi->ppd->ColorDevice != CD_False) ? 256 : -1;
453 return sizeof(PSDRV_PDEVICE);
455 return (CC_CIRCLES | CC_PIE | CC_CHORD | CC_ELLIPSES | CC_WIDE |
456 CC_STYLED | CC_WIDESTYLED | CC_INTERIORS | CC_ROUNDRECT);
458 return (LC_POLYLINE | LC_MARKER | LC_POLYMARKER | LC_WIDE |
459 LC_STYLED | LC_WIDESTYLED | LC_INTERIORS);
461 return (PC_POLYGON | PC_RECTANGLE | PC_WINDPOLYGON | PC_SCANLINE |
462 PC_WIDE | PC_STYLED | PC_WIDESTYLED | PC_INTERIORS);
464 return TC_CR_ANY | TC_VA_ABLE; /* psdrv 0x59f7 */
468 return (RC_BITBLT | RC_BITMAP64 | RC_GDI20_OUTPUT | RC_DIBTODEV |
469 RC_STRETCHBLT | RC_STRETCHDIB); /* psdrv 0x6e99 */
470 /* Are aspect[XY] and logPixels[XY] correct? */
471 /* Need to handle different res in x and y => fix ppd */
474 return physDev->pi->ppd->DefaultResolution;
476 return (int)hypot( (double)physDev->pi->ppd->DefaultResolution,
477 (double)physDev->pi->ppd->DefaultResolution );
479 return MulDiv(physDev->logPixelsX,
480 physDev->Devmode->dmPublic.u1.s1.dmScale, 100);
482 return MulDiv(physDev->logPixelsY,
483 physDev->Devmode->dmPublic.u1.s1.dmScale, 100);
491 return (physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_LANDSCAPE) ?
492 physDev->PageSize.cy : physDev->PageSize.cx;
494 return (physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_LANDSCAPE) ?
495 physDev->PageSize.cx : physDev->PageSize.cy;
496 case PHYSICALOFFSETX:
497 if(physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_LANDSCAPE) {
498 if(physDev->pi->ppd->LandscapeOrientation == -90)
499 return physDev->PageSize.cy - physDev->ImageableArea.top;
501 return physDev->ImageableArea.bottom;
503 return physDev->ImageableArea.left;
505 case PHYSICALOFFSETY:
506 if(physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_LANDSCAPE) {
507 if(physDev->pi->ppd->LandscapeOrientation == -90)
508 return physDev->PageSize.cx - physDev->ImageableArea.right;
510 return physDev->ImageableArea.left;
512 return physDev->PageSize.cy - physDev->ImageableArea.top;
522 FIXME("(%p): unsupported capability %d, will return 0\n", dev->hdc, cap );
528 /**********************************************************************
529 * PSDRV_FindPrinterInfo
531 PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name)
533 static PRINTERINFO *PSDRV_PrinterList;
534 DWORD type = REG_BINARY, needed, res, dwPaperSize;
535 PRINTERINFO *pi = PSDRV_PrinterList, **last = &PSDRV_PrinterList;
539 const char *ppd = NULL;
541 char* ppdFileName = NULL;
543 BOOL using_default_devmode = FALSE;
545 TRACE("'%s'\n", name);
548 * If this loop completes, last will point to the 'next' element of the
549 * final PRINTERINFO in the list
551 for( ; pi; last = &pi->next, pi = pi->next)
552 if(!strcmp(pi->FriendlyName, name))
555 pi = *last = HeapAlloc( PSDRV_Heap, HEAP_ZERO_MEMORY, sizeof(*pi) );
559 if (!(pi->FriendlyName = HeapAlloc( PSDRV_Heap, 0, strlen(name)+1 ))) goto fail;
560 strcpy( pi->FriendlyName, name );
562 if (OpenPrinterA (pi->FriendlyName, &hPrinter, NULL) == 0) {
563 ERR ("OpenPrinterA failed with code %i\n", GetLastError ());
568 res = GetPrinterDataExA(hPrinter, NULL, default_devmodeA, &type, NULL, 0, &needed);
570 if (needed < sizeof(DefaultDevmode)) {
571 pi->Devmode = HeapAlloc( PSDRV_Heap, 0, sizeof(DefaultDevmode) );
572 if (pi->Devmode == NULL)
575 *pi->Devmode = DefaultDevmode;
576 lstrcpynA((LPSTR)pi->Devmode->dmPublic.dmDeviceName,name,CCHDEVICENAME);
577 using_default_devmode = TRUE;
580 pi->Devmode = HeapAlloc( PSDRV_Heap, 0, needed );
581 if (pi->Devmode == NULL)
584 GetPrinterDataExA(hPrinter, NULL, default_devmodeA, &type, (LPBYTE)pi->Devmode, needed, &needed);
589 #ifdef SONAME_LIBCUPS
590 if (cupshandle != (void*)-1) {
591 typeof(cupsGetPPD) * pcupsGetPPD = NULL;
593 pcupsGetPPD = wine_dlsym(cupshandle, "cupsGetPPD", NULL, 0);
595 ppd = pcupsGetPPD(name);
598 needed=strlen(ppd)+1;
599 ppdFileName=HeapAlloc(PSDRV_Heap, 0, needed);
600 memcpy(ppdFileName, ppd, needed);
603 /* we should unlink() that file later */
605 res = ERROR_FILE_NOT_FOUND;
606 WARN("Did not find ppd for %s\n",name);
612 res = GetPrinterDataExA(hPrinter, "PrinterDriverData", "PPD File", NULL, NULL, 0, &needed);
613 if ((res==ERROR_SUCCESS) || (res==ERROR_MORE_DATA)) {
614 ppdFileName=HeapAlloc(PSDRV_Heap, 0, needed);
615 res = GetPrinterDataExA(hPrinter, "PrinterDriverData", "PPD File", &ppdType,
616 (LPBYTE)ppdFileName, needed, &needed);
619 /* Look for a ppd file for this printer in the config file.
620 * First look under that printer's name, and then under 'generic'
622 /* @@ Wine registry key: HKCU\Software\Wine\Printing\PPD Files */
623 if((res != ERROR_SUCCESS) && !RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Printing\\PPD Files", &hkey))
625 const char* value_name;
627 if (RegQueryValueExA(hkey, name, 0, NULL, NULL, &needed) == ERROR_SUCCESS) {
629 } else if (RegQueryValueExA(hkey, "generic", 0, NULL, NULL, &needed) == ERROR_SUCCESS) {
630 value_name="generic";
635 HeapFree(PSDRV_Heap, 0, ppdFileName);
636 ppdFileName=HeapAlloc(PSDRV_Heap, 0, needed);
637 RegQueryValueExA(hkey, value_name, 0, &ppdType, (LPBYTE)ppdFileName, &needed);
644 const char *data_dir, *filename;
646 if ((data_dir = wine_get_data_dir())) filename = "/generic.ppd";
647 else if ((data_dir = wine_get_build_dir())) filename = "/dlls/wineps.drv/generic.ppd";
650 res = ERROR_FILE_NOT_FOUND;
651 ERR ("Error %i getting PPD file name for printer '%s'\n", res, name);
654 ppdFileName = HeapAlloc( PSDRV_Heap, 0, strlen(data_dir) + strlen(filename) + 1 );
655 strcpy( ppdFileName, data_dir );
656 strcat( ppdFileName, filename );
659 if (ppdType==REG_EXPAND_SZ) {
662 /* Expand environment variable references */
663 needed=ExpandEnvironmentStringsA(ppdFileName,NULL,0);
664 tmp=HeapAlloc(PSDRV_Heap, 0, needed);
665 ExpandEnvironmentStringsA(ppdFileName,tmp,needed);
666 HeapFree(PSDRV_Heap, 0, ppdFileName);
671 pi->ppd = PSDRV_ParsePPD(ppdFileName);
673 MESSAGE("Couldn't find PPD file '%s', expect a crash now!\n",
678 /* Some gimp-print ppd files don't contain a DefaultResolution line
679 set it to 300 if it's not specified */
680 if(pi->ppd->DefaultResolution == 0)
681 pi->ppd->DefaultResolution = 300;
683 if(using_default_devmode) {
686 if(GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_IPAPERSIZE | LOCALE_RETURN_NUMBER,
687 (LPWSTR)&papersize, sizeof(papersize)/sizeof(WCHAR))) {
689 memset(&dm, 0, sizeof(dm));
690 dm.dmPublic.dmFields = DM_PAPERSIZE;
691 dm.dmPublic.u1.s1.dmPaperSize = papersize;
692 PSDRV_MergeDevmodes(pi->Devmode, &dm, pi);
695 SetPrinterDataExA(hPrinter, NULL, default_devmodeA, REG_BINARY,
696 (LPBYTE)pi->Devmode, sizeof(DefaultDevmode));
699 if(pi->ppd->DefaultPageSize) { /* We'll let the ppd override the devmode */
701 memset(&dm, 0, sizeof(dm));
702 dm.dmPublic.dmFields = DM_PAPERSIZE;
703 dm.dmPublic.u1.s1.dmPaperSize = pi->ppd->DefaultPageSize->WinPage;
704 PSDRV_MergeDevmodes(pi->Devmode, &dm, pi);
708 * This is a hack. The default paper size should be read in as part of
709 * the Devmode structure, but Wine doesn't currently provide a convenient
710 * way to configure printers.
712 res = GetPrinterDataExA(hPrinter, "PrinterDriverData", "Paper Size", NULL,
713 (LPBYTE)&dwPaperSize, sizeof(DWORD), &needed);
714 if (res == ERROR_SUCCESS)
715 pi->Devmode->dmPublic.u1.s1.dmPaperSize = (SHORT) dwPaperSize;
716 else if (res == ERROR_FILE_NOT_FOUND)
717 TRACE ("No 'Paper Size' for printer '%s'\n", name);
719 ERR ("GetPrinterDataA returned %i\n", res);
723 /* Duplex is indicated by the setting of the DM_DUPLEX bit in dmFields.
724 WinDuplex == 0 is a special case which means that the ppd has a
725 *DefaultDuplex: NotCapable entry. In this case we'll try not to confuse
726 apps and set dmDuplex to DMDUP_SIMPLEX but leave the DM_DUPLEX clear.
727 PSDRV_WriteHeader understands this and copes. */
728 pi->Devmode->dmPublic.dmFields &= ~DM_DUPLEX;
729 if(pi->ppd->DefaultDuplex) {
730 pi->Devmode->dmPublic.dmDuplex = pi->ppd->DefaultDuplex->WinDuplex;
731 if(pi->Devmode->dmPublic.dmDuplex != 0)
732 pi->Devmode->dmPublic.dmFields |= DM_DUPLEX;
734 pi->Devmode->dmPublic.dmDuplex = DMDUP_SIMPLEX;
737 res = EnumPrinterDataExA (hPrinter, "PrinterDriverData\\FontSubTable", NULL,
738 0, &needed, &pi->FontSubTableSize);
739 if (res == ERROR_SUCCESS || res == ERROR_FILE_NOT_FOUND) {
740 TRACE ("No 'FontSubTable' for printer '%s'\n", name);
742 else if (res == ERROR_MORE_DATA) {
743 pi->FontSubTable = HeapAlloc (PSDRV_Heap, 0, needed);
744 if (pi->FontSubTable == NULL) {
745 ERR ("Failed to allocate %i bytes from heap\n", needed);
749 res = EnumPrinterDataExA (hPrinter, "PrinterDriverData\\FontSubTable",
750 (LPBYTE) pi->FontSubTable, needed, &needed,
751 &pi->FontSubTableSize);
752 if (res != ERROR_SUCCESS) {
753 ERR ("EnumPrinterDataExA returned %i\n", res);
758 ERR("EnumPrinterDataExA returned %i\n", res);
762 if (ClosePrinter (hPrinter) == 0) {
763 ERR ("ClosePrinter failed with code %i\n", GetLastError ());
770 for(font = pi->ppd->InstalledFonts; font; font = font->next) {
771 afm = PSDRV_FindAFMinList(PSDRV_AFMFontList, font->Name);
773 TRACE( "Couldn't find AFM file for installed printer font '%s' - "
774 "ignoring\n", font->Name);
778 if (PSDRV_AddAFMtoList(&pi->Fonts, afm, &added) == FALSE) {
779 PSDRV_FreeAFMList(pi->Fonts);
785 if (ppd) unlink(ppd);
789 ClosePrinter(hPrinter);
791 HeapFree(PSDRV_Heap, 0, ppdFileName);
792 HeapFree(PSDRV_Heap, 0, pi->FontSubTable);
793 HeapFree(PSDRV_Heap, 0, pi->FriendlyName);
794 HeapFree(PSDRV_Heap, 0, pi->Devmode);
796 HeapFree(PSDRV_Heap, 0, pi);
797 if (ppd) unlink(ppd);
803 static const struct gdi_dc_funcs psdrv_funcs =
805 NULL, /* pAbortDoc */
806 NULL, /* pAbortPath */
807 NULL, /* pAlphaBlend */
808 NULL, /* pAngleArc */
809 PSDRV_Arc, /* pArc */
811 NULL, /* pBeginPath */
812 NULL, /* pChoosePixelFormat */
813 PSDRV_Chord, /* pChord */
814 NULL, /* pCloseFigure */
815 NULL, /* pCreateBitmap */
816 PSDRV_CreateDC, /* pCreateDC */
817 NULL, /* pCreateDIBSection */
818 NULL, /* pDeleteBitmap */
819 PSDRV_DeleteDC, /* pDeleteDC */
820 NULL, /* pDeleteObject */
821 NULL, /* pDescribePixelFormat */
822 PSDRV_DeviceCapabilities, /* pDeviceCapabilities */
823 PSDRV_Ellipse, /* pEllipse */
824 PSDRV_EndDoc, /* pEndDoc */
825 PSDRV_EndPage, /* pEndPage */
827 PSDRV_EnumDeviceFonts, /* pEnumDeviceFonts */
828 NULL, /* pEnumICMProfiles */
829 NULL, /* pExcludeClipRect */
830 PSDRV_ExtDeviceMode, /* pExtDeviceMode */
831 PSDRV_ExtEscape, /* pExtEscape */
832 NULL, /* pExtFloodFill */
833 NULL, /* pExtSelectClipRgn */
834 PSDRV_ExtTextOut, /* pExtTextOut */
835 NULL, /* pFillPath */
837 NULL, /* pFlattenPath */
838 NULL, /* pFrameRgn */
839 NULL, /* pGdiComment */
840 NULL, /* pGetBitmapBits */
841 PSDRV_GetCharWidth, /* pGetCharWidth */
842 NULL, /* pGetDIBits */
843 PSDRV_GetDeviceCaps, /* pGetDeviceCaps */
844 NULL, /* pGetDeviceGammaRamp */
845 NULL, /* pGetICMProfile */
846 NULL, /* pGetImage */
847 NULL, /* pGetNearestColor */
848 NULL, /* pGetPixel */
849 NULL, /* pGetPixelFormat */
850 NULL, /* pGetSystemPaletteEntries */
851 PSDRV_GetTextExtentExPoint, /* pGetTextExtentExPoint */
852 PSDRV_GetTextMetrics, /* pGetTextMetrics */
853 NULL, /* pIntersectClipRect */
854 NULL, /* pInvertRgn */
855 PSDRV_LineTo, /* pLineTo */
856 NULL, /* pModifyWorldTransform */
858 NULL, /* pOffsetClipRgn */
859 NULL, /* pOffsetViewportOrg */
860 NULL, /* pOffsetWindowOrg */
861 PSDRV_PaintRgn, /* pPaintRgn */
862 PSDRV_PatBlt, /* pPatBlt */
863 PSDRV_Pie, /* pPie */
864 NULL, /* pPolyBezier */
865 NULL, /* pPolyBezierTo */
866 NULL, /* pPolyDraw */
867 PSDRV_PolyPolygon, /* pPolyPolygon */
868 PSDRV_PolyPolyline, /* pPolyPolyline */
869 PSDRV_Polygon, /* pPolygon */
870 PSDRV_Polyline, /* pPolyline */
871 NULL, /* pPolylineTo */
872 NULL, /* pPutImage */
873 NULL, /* pRealizeDefaultPalette */
874 NULL, /* pRealizePalette */
875 PSDRV_Rectangle, /* pRectangle */
876 PSDRV_ResetDC, /* pResetDC */
877 NULL, /* pRestoreDC */
878 PSDRV_RoundRect, /* pRoundRect */
880 NULL, /* pScaleViewportExt */
881 NULL, /* pScaleWindowExt */
882 NULL, /* pSelectBitmap */
883 PSDRV_SelectBrush, /* pSelectBrush */
884 NULL, /* pSelectClipPath */
885 PSDRV_SelectFont, /* pSelectFont */
886 NULL, /* pSelectPalette */
887 PSDRV_SelectPen, /* pSelectPen */
888 NULL, /* pSetArcDirection */
889 NULL, /* pSetBitmapBits */
890 PSDRV_SetBkColor, /* pSetBkColor */
891 NULL, /* pSetBkMode */
892 PSDRV_SetDCBrushColor, /* pSetDCBrushColor */
893 PSDRV_SetDCPenColor, /* pSetDCPenColor */
894 NULL, /* pSetDIBColorTable */
895 NULL, /* pSetDIBits */
896 NULL, /* pSetDIBitsToDevice */
897 NULL, /* pSetDeviceClipping */
898 NULL, /* pSetDeviceGammaRamp */
899 NULL, /* pSetLayout */
900 NULL, /* pSetMapMode */
901 NULL, /* pSetMapperFlags */
902 PSDRV_SetPixel, /* pSetPixel */
903 NULL, /* pSetPixelFormat */
904 NULL, /* pSetPolyFillMode */
906 NULL, /* pSetRelAbs */
907 NULL, /* pSetStretchBltMode */
908 NULL, /* pSetTextAlign */
909 NULL, /* pSetTextCharacterExtra */
910 PSDRV_SetTextColor, /* pSetTextColor */
911 NULL, /* pSetTextJustification */
912 NULL, /* pSetViewportExt */
913 NULL, /* pSetViewportOrg */
914 NULL, /* pSetWindowExt */
915 NULL, /* pSetWindowOrg */
916 NULL, /* pSetWorldTransform */
917 PSDRV_StartDoc, /* pStartDoc */
918 PSDRV_StartPage, /* pStartPage */
919 NULL, /* pStretchBlt */
920 PSDRV_StretchDIBits, /* pStretchDIBits */
921 NULL, /* pStrokeAndFillPath */
922 NULL, /* pStrokePath */
923 NULL, /* pSwapBuffers */
924 NULL, /* pUnrealizePalette */
925 NULL, /* pWidenPath */
926 /* OpenGL not supported */
930 /******************************************************************************
931 * PSDRV_get_gdi_driver
933 const struct gdi_dc_funcs * CDECL PSDRV_get_gdi_driver( unsigned int version )
935 if (version != WINE_GDI_DRIVER_VERSION)
937 ERR( "version mismatch, gdi32 wants %u but wineps has %u\n", version, WINE_GDI_DRIVER_VERSION );