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";
117 static const struct gdi_dc_funcs psdrv_funcs
;
119 /*********************************************************************
122 * Initializes font metrics and registers driver. wineps dll entry point.
125 BOOL WINAPI
DllMain( HINSTANCE hinst
, DWORD reason
, LPVOID reserved
)
127 TRACE("(%p, %d, %p)\n", hinst
, reason
, reserved
);
131 case DLL_PROCESS_ATTACH
:
132 PSDRV_hInstance
= hinst
;
133 DisableThreadLibraryCalls(hinst
);
135 PSDRV_Heap
= HeapCreate(0, 0x10000, 0);
136 if (PSDRV_Heap
== NULL
)
139 if (PSDRV_GetFontMetrics() == FALSE
) {
140 HeapDestroy(PSDRV_Heap
);
144 PSDRV_DefaultFont
= CreateFontIndirectA(&DefaultLogFont
);
145 if (PSDRV_DefaultFont
== NULL
) {
146 HeapDestroy(PSDRV_Heap
);
149 #ifdef SONAME_LIBCUPS
150 /* dynamically load CUPS if not yet loaded */
152 cupshandle
= wine_dlopen(SONAME_LIBCUPS
, RTLD_NOW
, NULL
, 0);
153 if (!cupshandle
) cupshandle
= (void*)-1;
158 case DLL_PROCESS_DETACH
:
160 DeleteObject( PSDRV_DefaultFont
);
161 HeapDestroy( PSDRV_Heap
);
162 #ifdef SONAME_LIBCUPS
163 if (cupshandle
&& (cupshandle
!= (void*)-1)) {
164 wine_dlclose(cupshandle
, NULL
, 0);
175 static void PSDRV_UpdateDevCaps( PSDRV_PDEVICE
*physDev
)
178 INT width
= 0, height
= 0;
180 if(physDev
->Devmode
->dmPublic
.dmFields
& DM_PAPERSIZE
) {
181 LIST_FOR_EACH_ENTRY(page
, &physDev
->pi
->ppd
->PageSizes
, PAGESIZE
, entry
) {
182 if(page
->WinPage
== physDev
->Devmode
->dmPublic
.u1
.s1
.dmPaperSize
)
186 if(&page
->entry
== &physDev
->pi
->ppd
->PageSizes
) {
187 FIXME("Can't find page\n");
188 physDev
->ImageableArea
.left
= 0;
189 physDev
->ImageableArea
.right
= 0;
190 physDev
->ImageableArea
.bottom
= 0;
191 physDev
->ImageableArea
.top
= 0;
192 physDev
->PageSize
.cx
= 0;
193 physDev
->PageSize
.cy
= 0;
194 } else if(page
->ImageableArea
) {
195 /* physDev sizes in device units; ppd sizes in 1/72" */
196 physDev
->ImageableArea
.left
= page
->ImageableArea
->llx
*
197 physDev
->logPixelsX
/ 72;
198 physDev
->ImageableArea
.right
= page
->ImageableArea
->urx
*
199 physDev
->logPixelsX
/ 72;
200 physDev
->ImageableArea
.bottom
= page
->ImageableArea
->lly
*
201 physDev
->logPixelsY
/ 72;
202 physDev
->ImageableArea
.top
= page
->ImageableArea
->ury
*
203 physDev
->logPixelsY
/ 72;
204 physDev
->PageSize
.cx
= page
->PaperDimension
->x
*
205 physDev
->logPixelsX
/ 72;
206 physDev
->PageSize
.cy
= page
->PaperDimension
->y
*
207 physDev
->logPixelsY
/ 72;
209 physDev
->ImageableArea
.left
= physDev
->ImageableArea
.bottom
= 0;
210 physDev
->ImageableArea
.right
= physDev
->PageSize
.cx
=
211 page
->PaperDimension
->x
* physDev
->logPixelsX
/ 72;
212 physDev
->ImageableArea
.top
= physDev
->PageSize
.cy
=
213 page
->PaperDimension
->y
* physDev
->logPixelsY
/ 72;
215 } else if((physDev
->Devmode
->dmPublic
.dmFields
& DM_PAPERLENGTH
) &&
216 (physDev
->Devmode
->dmPublic
.dmFields
& DM_PAPERWIDTH
)) {
217 /* physDev sizes in device units; Devmode sizes in 1/10 mm */
218 physDev
->ImageableArea
.left
= physDev
->ImageableArea
.bottom
= 0;
219 physDev
->ImageableArea
.right
= physDev
->PageSize
.cx
=
220 physDev
->Devmode
->dmPublic
.u1
.s1
.dmPaperWidth
*
221 physDev
->logPixelsX
/ 254;
222 physDev
->ImageableArea
.top
= physDev
->PageSize
.cy
=
223 physDev
->Devmode
->dmPublic
.u1
.s1
.dmPaperLength
*
224 physDev
->logPixelsY
/ 254;
226 FIXME("Odd dmFields %x\n", physDev
->Devmode
->dmPublic
.dmFields
);
227 physDev
->ImageableArea
.left
= 0;
228 physDev
->ImageableArea
.right
= 0;
229 physDev
->ImageableArea
.bottom
= 0;
230 physDev
->ImageableArea
.top
= 0;
231 physDev
->PageSize
.cx
= 0;
232 physDev
->PageSize
.cy
= 0;
235 TRACE("ImageableArea = %d,%d - %d,%d: PageSize = %dx%d\n",
236 physDev
->ImageableArea
.left
, physDev
->ImageableArea
.bottom
,
237 physDev
->ImageableArea
.right
, physDev
->ImageableArea
.top
,
238 physDev
->PageSize
.cx
, physDev
->PageSize
.cy
);
240 /* these are in device units */
241 width
= physDev
->ImageableArea
.right
- physDev
->ImageableArea
.left
;
242 height
= physDev
->ImageableArea
.top
- physDev
->ImageableArea
.bottom
;
244 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_PORTRAIT
) {
245 physDev
->horzRes
= width
;
246 physDev
->vertRes
= height
;
248 physDev
->horzRes
= height
;
249 physDev
->vertRes
= width
;
252 /* these are in mm */
253 physDev
->horzSize
= (physDev
->horzRes
* 25.4) / physDev
->logPixelsX
;
254 physDev
->vertSize
= (physDev
->vertRes
* 25.4) / physDev
->logPixelsY
;
256 TRACE("devcaps: horzSize = %dmm, vertSize = %dmm, "
257 "horzRes = %d, vertRes = %d\n",
258 physDev
->horzSize
, physDev
->vertSize
,
259 physDev
->horzRes
, physDev
->vertRes
);
263 /***********************************************************
266 * Creates an ascii copy of supplied devmode on heap
268 * Copied from dlls/winspool/info.c until full unicodification
270 static LPDEVMODEA
DEVMODEdupWtoA(HANDLE heap
, const DEVMODEW
*dmW
)
275 /* there is no pointer dereference here, if your code checking tool complains it's broken */
276 ptrdiff_t off_formname
= (const char *)dmW
->dmFormName
- (const char *)dmW
;
278 if(!dmW
) return NULL
;
279 Formname
= (dmW
->dmSize
> off_formname
);
280 size
= dmW
->dmSize
- CCHDEVICENAME
- (Formname
? CCHFORMNAME
: 0);
281 dmA
= HeapAlloc(heap
, HEAP_ZERO_MEMORY
, size
+ dmW
->dmDriverExtra
);
282 WideCharToMultiByte(CP_ACP
, 0, dmW
->dmDeviceName
, -1, (LPSTR
)dmA
->dmDeviceName
,
283 CCHDEVICENAME
, NULL
, NULL
);
285 memcpy(&dmA
->dmSpecVersion
, &dmW
->dmSpecVersion
,
286 dmW
->dmSize
- CCHDEVICENAME
* sizeof(WCHAR
));
288 memcpy(&dmA
->dmSpecVersion
, &dmW
->dmSpecVersion
,
289 off_formname
- CCHDEVICENAME
* sizeof(WCHAR
));
290 WideCharToMultiByte(CP_ACP
, 0, dmW
->dmFormName
, -1, (LPSTR
)dmA
->dmFormName
,
291 CCHFORMNAME
, NULL
, NULL
);
292 memcpy(&dmA
->dmLogPixels
, &dmW
->dmLogPixels
, dmW
->dmSize
-
293 (off_formname
+ CCHFORMNAME
* sizeof(WCHAR
)));
296 memcpy((char *)dmA
+ dmA
->dmSize
, (const char *)dmW
+ dmW
->dmSize
,
302 static PSDRV_PDEVICE
*create_psdrv_physdev( PRINTERINFO
*pi
)
304 PSDRV_PDEVICE
*physDev
;
306 physDev
= HeapAlloc( PSDRV_Heap
, HEAP_ZERO_MEMORY
, sizeof(*physDev
) );
307 if (!physDev
) return NULL
;
309 physDev
->Devmode
= HeapAlloc( PSDRV_Heap
, 0, sizeof(PSDRV_DEVMODEA
) );
310 if (!physDev
->Devmode
)
312 HeapFree( PSDRV_Heap
, 0, physDev
);
316 *physDev
->Devmode
= *pi
->Devmode
;
318 physDev
->logPixelsX
= pi
->ppd
->DefaultResolution
;
319 physDev
->logPixelsY
= pi
->ppd
->DefaultResolution
;
323 /**********************************************************************
326 static BOOL
PSDRV_CreateDC( PHYSDEV
*pdev
, LPCWSTR driver
, LPCWSTR device
,
327 LPCWSTR output
, const DEVMODEW
* initData
)
329 PSDRV_PDEVICE
*physDev
;
334 TRACE("(%s %s %s %p)\n", debugstr_w(driver
), debugstr_w(device
),
335 debugstr_w(output
), initData
);
337 if (!device
) return FALSE
;
338 len
= WideCharToMultiByte(CP_ACP
, 0, device
, -1, NULL
, 0, NULL
, NULL
);
339 deviceA
= HeapAlloc(GetProcessHeap(), 0, len
);
340 WideCharToMultiByte(CP_ACP
, 0, device
, -1, deviceA
, len
, NULL
, NULL
);
341 pi
= PSDRV_FindPrinterInfo(deviceA
);
342 HeapFree(GetProcessHeap(), 0, deviceA
);
343 if(!pi
) return FALSE
;
346 RASTERIZER_STATUS status
;
347 if(!GetRasterizerCaps(&status
, sizeof(status
)) ||
348 !(status
.wFlags
& TT_AVAILABLE
) ||
349 !(status
.wFlags
& TT_ENABLED
)) {
350 MESSAGE("Disabling printer %s since it has no builtin fonts and there are no TrueType fonts available.\n",
356 if (!(physDev
= create_psdrv_physdev( pi
))) return FALSE
;
358 if (output
&& *output
) {
359 INT len
= WideCharToMultiByte( CP_ACP
, 0, output
, -1, NULL
, 0, NULL
, NULL
);
360 if ((physDev
->job
.output
= HeapAlloc( PSDRV_Heap
, 0, len
)))
361 WideCharToMultiByte( CP_ACP
, 0, output
, -1, physDev
->job
.output
, len
, NULL
, NULL
);
365 DEVMODEA
*devmodeA
= DEVMODEdupWtoA(PSDRV_Heap
, initData
);
366 PSDRV_MergeDevmodes(physDev
->Devmode
, (PSDRV_DEVMODEA
*)devmodeA
, pi
);
367 HeapFree(PSDRV_Heap
, 0, devmodeA
);
370 PSDRV_UpdateDevCaps(physDev
);
371 SelectObject( (*pdev
)->hdc
, PSDRV_DefaultFont
);
372 push_dc_driver( pdev
, &physDev
->dev
, &psdrv_funcs
);
377 /**********************************************************************
378 * PSDRV_CreateCompatibleDC
380 static BOOL
PSDRV_CreateCompatibleDC( PHYSDEV orig
, PHYSDEV
*pdev
)
382 HDC hdc
= (*pdev
)->hdc
;
383 PSDRV_PDEVICE
*physDev
, *orig_dev
= get_psdrv_dev( orig
);
384 PRINTERINFO
*pi
= PSDRV_FindPrinterInfo( orig_dev
->pi
->FriendlyName
);
386 if (!pi
) return FALSE
;
387 if (!(physDev
= create_psdrv_physdev( pi
))) return FALSE
;
388 PSDRV_UpdateDevCaps(physDev
);
389 SelectObject( hdc
, PSDRV_DefaultFont
);
390 push_dc_driver( pdev
, &physDev
->dev
, &psdrv_funcs
);
396 /**********************************************************************
399 static BOOL
PSDRV_DeleteDC( PHYSDEV dev
)
401 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
405 HeapFree( PSDRV_Heap
, 0, physDev
->Devmode
);
406 HeapFree( PSDRV_Heap
, 0, physDev
->job
.output
);
407 HeapFree( PSDRV_Heap
, 0, physDev
);
413 /**********************************************************************
416 static HDC
PSDRV_ResetDC( PHYSDEV dev
, const DEVMODEW
*lpInitData
)
418 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
421 DEVMODEA
*devmodeA
= DEVMODEdupWtoA(PSDRV_Heap
, lpInitData
);
422 PSDRV_MergeDevmodes(physDev
->Devmode
, (PSDRV_DEVMODEA
*)devmodeA
, physDev
->pi
);
423 HeapFree(PSDRV_Heap
, 0, devmodeA
);
424 PSDRV_UpdateDevCaps(physDev
);
429 /***********************************************************************
430 * GetDeviceCaps (WINEPS.@)
432 static INT
PSDRV_GetDeviceCaps( PHYSDEV dev
, INT cap
)
434 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
441 return DT_RASPRINTER
;
443 return MulDiv(physDev
->horzSize
, 100,
444 physDev
->Devmode
->dmPublic
.u1
.s1
.dmScale
);
446 return MulDiv(physDev
->vertSize
, 100,
447 physDev
->Devmode
->dmPublic
.u1
.s1
.dmScale
);
450 return physDev
->horzRes
;
453 return physDev
->vertRes
;
455 return (physDev
->pi
->ppd
->ColorDevice
!= CD_False
) ? 32 : 1;
469 return sizeof(PSDRV_PDEVICE
);
471 return (CC_CIRCLES
| CC_PIE
| CC_CHORD
| CC_ELLIPSES
| CC_WIDE
|
472 CC_STYLED
| CC_WIDESTYLED
| CC_INTERIORS
| CC_ROUNDRECT
);
474 return (LC_POLYLINE
| LC_MARKER
| LC_POLYMARKER
| LC_WIDE
|
475 LC_STYLED
| LC_WIDESTYLED
| LC_INTERIORS
);
477 return (PC_POLYGON
| PC_RECTANGLE
| PC_WINDPOLYGON
| PC_SCANLINE
|
478 PC_WIDE
| PC_STYLED
| PC_WIDESTYLED
| PC_INTERIORS
);
480 return TC_CR_ANY
| TC_VA_ABLE
; /* psdrv 0x59f7 */
484 return (RC_BITBLT
| RC_BITMAP64
| RC_GDI20_OUTPUT
| RC_DIBTODEV
|
485 RC_STRETCHBLT
| RC_STRETCHDIB
); /* psdrv 0x6e99 */
486 /* Are aspect[XY] and logPixels[XY] correct? */
487 /* Need to handle different res in x and y => fix ppd */
490 return physDev
->pi
->ppd
->DefaultResolution
;
492 return (int)hypot( (double)physDev
->pi
->ppd
->DefaultResolution
,
493 (double)physDev
->pi
->ppd
->DefaultResolution
);
495 return MulDiv(physDev
->logPixelsX
,
496 physDev
->Devmode
->dmPublic
.u1
.s1
.dmScale
, 100);
498 return MulDiv(physDev
->logPixelsY
,
499 physDev
->Devmode
->dmPublic
.u1
.s1
.dmScale
, 100);
507 return (physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) ?
508 physDev
->PageSize
.cy
: physDev
->PageSize
.cx
;
510 return (physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) ?
511 physDev
->PageSize
.cx
: physDev
->PageSize
.cy
;
512 case PHYSICALOFFSETX
:
513 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) {
514 if(physDev
->pi
->ppd
->LandscapeOrientation
== -90)
515 return physDev
->PageSize
.cy
- physDev
->ImageableArea
.top
;
517 return physDev
->ImageableArea
.bottom
;
519 return physDev
->ImageableArea
.left
;
521 case PHYSICALOFFSETY
:
522 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) {
523 if(physDev
->pi
->ppd
->LandscapeOrientation
== -90)
524 return physDev
->PageSize
.cx
- physDev
->ImageableArea
.right
;
526 return physDev
->ImageableArea
.left
;
528 return physDev
->PageSize
.cy
- physDev
->ImageableArea
.top
;
538 FIXME("(%p): unsupported capability %d, will return 0\n", dev
->hdc
, cap
);
544 /**********************************************************************
545 * PSDRV_FindPrinterInfo
547 PRINTERINFO
*PSDRV_FindPrinterInfo(LPCSTR name
)
549 static PRINTERINFO
*PSDRV_PrinterList
;
550 DWORD type
= REG_BINARY
, needed
, res
, dwPaperSize
;
551 PRINTERINFO
*pi
= PSDRV_PrinterList
, **last
= &PSDRV_PrinterList
;
555 const char *ppd
= NULL
;
557 char* ppdFileName
= NULL
;
559 BOOL using_default_devmode
= FALSE
;
561 TRACE("'%s'\n", name
);
564 * If this loop completes, last will point to the 'next' element of the
565 * final PRINTERINFO in the list
567 for( ; pi
; last
= &pi
->next
, pi
= pi
->next
)
568 if(!strcmp(pi
->FriendlyName
, name
))
571 pi
= *last
= HeapAlloc( PSDRV_Heap
, HEAP_ZERO_MEMORY
, sizeof(*pi
) );
575 if (!(pi
->FriendlyName
= HeapAlloc( PSDRV_Heap
, 0, strlen(name
)+1 ))) goto fail
;
576 strcpy( pi
->FriendlyName
, name
);
578 if (OpenPrinterA (pi
->FriendlyName
, &hPrinter
, NULL
) == 0) {
579 ERR ("OpenPrinterA failed with code %i\n", GetLastError ());
584 res
= GetPrinterDataExA(hPrinter
, NULL
, default_devmodeA
, &type
, NULL
, 0, &needed
);
586 if (needed
< sizeof(DefaultDevmode
)) {
587 pi
->Devmode
= HeapAlloc( PSDRV_Heap
, 0, sizeof(DefaultDevmode
) );
588 if (pi
->Devmode
== NULL
)
591 *pi
->Devmode
= DefaultDevmode
;
592 lstrcpynA((LPSTR
)pi
->Devmode
->dmPublic
.dmDeviceName
,name
,CCHDEVICENAME
);
593 using_default_devmode
= TRUE
;
596 pi
->Devmode
= HeapAlloc( PSDRV_Heap
, 0, needed
);
597 if (pi
->Devmode
== NULL
)
600 GetPrinterDataExA(hPrinter
, NULL
, default_devmodeA
, &type
, (LPBYTE
)pi
->Devmode
, needed
, &needed
);
605 #ifdef SONAME_LIBCUPS
606 if (cupshandle
!= (void*)-1) {
607 typeof(cupsGetPPD
) * pcupsGetPPD
= NULL
;
609 pcupsGetPPD
= wine_dlsym(cupshandle
, "cupsGetPPD", NULL
, 0);
611 ppd
= pcupsGetPPD(name
);
614 needed
=strlen(ppd
)+1;
615 ppdFileName
=HeapAlloc(PSDRV_Heap
, 0, needed
);
616 memcpy(ppdFileName
, ppd
, needed
);
619 /* we should unlink() that file later */
621 res
= ERROR_FILE_NOT_FOUND
;
622 WARN("Did not find ppd for %s\n",name
);
628 res
= GetPrinterDataExA(hPrinter
, "PrinterDriverData", "PPD File", NULL
, NULL
, 0, &needed
);
629 if ((res
==ERROR_SUCCESS
) || (res
==ERROR_MORE_DATA
)) {
630 ppdFileName
=HeapAlloc(PSDRV_Heap
, 0, needed
);
631 res
= GetPrinterDataExA(hPrinter
, "PrinterDriverData", "PPD File", &ppdType
,
632 (LPBYTE
)ppdFileName
, needed
, &needed
);
635 /* Look for a ppd file for this printer in the config file.
636 * First look under that printer's name, and then under 'generic'
638 /* @@ Wine registry key: HKCU\Software\Wine\Printing\PPD Files */
639 if((res
!= ERROR_SUCCESS
) && !RegOpenKeyA(HKEY_CURRENT_USER
, "Software\\Wine\\Printing\\PPD Files", &hkey
))
641 const char* value_name
;
643 if (RegQueryValueExA(hkey
, name
, 0, NULL
, NULL
, &needed
) == ERROR_SUCCESS
) {
645 } else if (RegQueryValueExA(hkey
, "generic", 0, NULL
, NULL
, &needed
) == ERROR_SUCCESS
) {
646 value_name
="generic";
651 HeapFree(PSDRV_Heap
, 0, ppdFileName
);
652 ppdFileName
=HeapAlloc(PSDRV_Heap
, 0, needed
);
653 RegQueryValueExA(hkey
, value_name
, 0, &ppdType
, (LPBYTE
)ppdFileName
, &needed
);
660 const char *data_dir
, *filename
;
662 if ((data_dir
= wine_get_data_dir())) filename
= "/generic.ppd";
663 else if ((data_dir
= wine_get_build_dir())) filename
= "/dlls/wineps.drv/generic.ppd";
666 res
= ERROR_FILE_NOT_FOUND
;
667 ERR ("Error %i getting PPD file name for printer '%s'\n", res
, name
);
670 ppdFileName
= HeapAlloc( PSDRV_Heap
, 0, strlen(data_dir
) + strlen(filename
) + 1 );
671 strcpy( ppdFileName
, data_dir
);
672 strcat( ppdFileName
, filename
);
675 if (ppdType
==REG_EXPAND_SZ
) {
678 /* Expand environment variable references */
679 needed
=ExpandEnvironmentStringsA(ppdFileName
,NULL
,0);
680 tmp
=HeapAlloc(PSDRV_Heap
, 0, needed
);
681 ExpandEnvironmentStringsA(ppdFileName
,tmp
,needed
);
682 HeapFree(PSDRV_Heap
, 0, ppdFileName
);
687 pi
->ppd
= PSDRV_ParsePPD(ppdFileName
);
689 MESSAGE("Couldn't find PPD file '%s', expect a crash now!\n",
694 /* Some gimp-print ppd files don't contain a DefaultResolution line
695 set it to 300 if it's not specified */
696 if(pi
->ppd
->DefaultResolution
== 0)
697 pi
->ppd
->DefaultResolution
= 300;
699 if(using_default_devmode
) {
702 if(GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_IPAPERSIZE
| LOCALE_RETURN_NUMBER
,
703 (LPWSTR
)&papersize
, sizeof(papersize
)/sizeof(WCHAR
))) {
705 memset(&dm
, 0, sizeof(dm
));
706 dm
.dmPublic
.dmFields
= DM_PAPERSIZE
;
707 dm
.dmPublic
.u1
.s1
.dmPaperSize
= papersize
;
708 PSDRV_MergeDevmodes(pi
->Devmode
, &dm
, pi
);
711 SetPrinterDataExA(hPrinter
, NULL
, default_devmodeA
, REG_BINARY
,
712 (LPBYTE
)pi
->Devmode
, sizeof(DefaultDevmode
));
715 if(pi
->ppd
->DefaultPageSize
) { /* We'll let the ppd override the devmode */
717 memset(&dm
, 0, sizeof(dm
));
718 dm
.dmPublic
.dmFields
= DM_PAPERSIZE
;
719 dm
.dmPublic
.u1
.s1
.dmPaperSize
= pi
->ppd
->DefaultPageSize
->WinPage
;
720 PSDRV_MergeDevmodes(pi
->Devmode
, &dm
, pi
);
724 * This is a hack. The default paper size should be read in as part of
725 * the Devmode structure, but Wine doesn't currently provide a convenient
726 * way to configure printers.
728 res
= GetPrinterDataExA(hPrinter
, "PrinterDriverData", "Paper Size", NULL
,
729 (LPBYTE
)&dwPaperSize
, sizeof(DWORD
), &needed
);
730 if (res
== ERROR_SUCCESS
)
731 pi
->Devmode
->dmPublic
.u1
.s1
.dmPaperSize
= (SHORT
) dwPaperSize
;
732 else if (res
== ERROR_FILE_NOT_FOUND
)
733 TRACE ("No 'Paper Size' for printer '%s'\n", name
);
735 ERR ("GetPrinterDataA returned %i\n", res
);
739 /* Duplex is indicated by the setting of the DM_DUPLEX bit in dmFields.
740 WinDuplex == 0 is a special case which means that the ppd has a
741 *DefaultDuplex: NotCapable entry. In this case we'll try not to confuse
742 apps and set dmDuplex to DMDUP_SIMPLEX but leave the DM_DUPLEX clear.
743 PSDRV_WriteHeader understands this and copes. */
744 pi
->Devmode
->dmPublic
.dmFields
&= ~DM_DUPLEX
;
745 if(pi
->ppd
->DefaultDuplex
) {
746 pi
->Devmode
->dmPublic
.dmDuplex
= pi
->ppd
->DefaultDuplex
->WinDuplex
;
747 if(pi
->Devmode
->dmPublic
.dmDuplex
!= 0)
748 pi
->Devmode
->dmPublic
.dmFields
|= DM_DUPLEX
;
750 pi
->Devmode
->dmPublic
.dmDuplex
= DMDUP_SIMPLEX
;
753 res
= EnumPrinterDataExA (hPrinter
, "PrinterDriverData\\FontSubTable", NULL
,
754 0, &needed
, &pi
->FontSubTableSize
);
755 if (res
== ERROR_SUCCESS
|| res
== ERROR_FILE_NOT_FOUND
) {
756 TRACE ("No 'FontSubTable' for printer '%s'\n", name
);
758 else if (res
== ERROR_MORE_DATA
) {
759 pi
->FontSubTable
= HeapAlloc (PSDRV_Heap
, 0, needed
);
760 if (pi
->FontSubTable
== NULL
) {
761 ERR ("Failed to allocate %i bytes from heap\n", needed
);
765 res
= EnumPrinterDataExA (hPrinter
, "PrinterDriverData\\FontSubTable",
766 (LPBYTE
) pi
->FontSubTable
, needed
, &needed
,
767 &pi
->FontSubTableSize
);
768 if (res
!= ERROR_SUCCESS
) {
769 ERR ("EnumPrinterDataExA returned %i\n", res
);
774 ERR("EnumPrinterDataExA returned %i\n", res
);
778 if (ClosePrinter (hPrinter
) == 0) {
779 ERR ("ClosePrinter failed with code %i\n", GetLastError ());
786 for(font
= pi
->ppd
->InstalledFonts
; font
; font
= font
->next
) {
787 afm
= PSDRV_FindAFMinList(PSDRV_AFMFontList
, font
->Name
);
789 TRACE( "Couldn't find AFM file for installed printer font '%s' - "
790 "ignoring\n", font
->Name
);
794 if (PSDRV_AddAFMtoList(&pi
->Fonts
, afm
, &added
) == FALSE
) {
795 PSDRV_FreeAFMList(pi
->Fonts
);
801 if (ppd
) unlink(ppd
);
805 ClosePrinter(hPrinter
);
807 HeapFree(PSDRV_Heap
, 0, ppdFileName
);
808 HeapFree(PSDRV_Heap
, 0, pi
->FontSubTable
);
809 HeapFree(PSDRV_Heap
, 0, pi
->FriendlyName
);
810 HeapFree(PSDRV_Heap
, 0, pi
->Devmode
);
812 HeapFree(PSDRV_Heap
, 0, pi
);
813 if (ppd
) unlink(ppd
);
819 static const struct gdi_dc_funcs psdrv_funcs
=
821 NULL
, /* pAbortDoc */
822 NULL
, /* pAbortPath */
823 NULL
, /* pAlphaBlend */
824 NULL
, /* pAngleArc */
825 PSDRV_Arc
, /* pArc */
827 NULL
, /* pBeginPath */
828 NULL
, /* pBlendImage */
829 NULL
, /* pChoosePixelFormat */
830 PSDRV_Chord
, /* pChord */
831 NULL
, /* pCloseFigure */
832 NULL
, /* pCopyBitmap */
833 NULL
, /* pCreateBitmap */
834 PSDRV_CreateCompatibleDC
, /* pCreateCompatibleDC */
835 PSDRV_CreateDC
, /* pCreateDC */
836 NULL
, /* pCreateDIBSection */
837 NULL
, /* pDeleteBitmap */
838 PSDRV_DeleteDC
, /* pDeleteDC */
839 NULL
, /* pDeleteObject */
840 NULL
, /* pDescribePixelFormat */
841 PSDRV_DeviceCapabilities
, /* pDeviceCapabilities */
842 PSDRV_Ellipse
, /* pEllipse */
843 PSDRV_EndDoc
, /* pEndDoc */
844 PSDRV_EndPage
, /* pEndPage */
846 PSDRV_EnumFonts
, /* pEnumFonts */
847 NULL
, /* pEnumICMProfiles */
848 NULL
, /* pExcludeClipRect */
849 PSDRV_ExtDeviceMode
, /* pExtDeviceMode */
850 PSDRV_ExtEscape
, /* pExtEscape */
851 NULL
, /* pExtFloodFill */
852 NULL
, /* pExtSelectClipRgn */
853 PSDRV_ExtTextOut
, /* pExtTextOut */
854 PSDRV_FillPath
, /* pFillPath */
856 NULL
, /* pFlattenPath */
857 NULL
, /* pFontIsLinked */
858 NULL
, /* pFrameRgn */
859 NULL
, /* pGdiComment */
860 NULL
, /* pGdiRealizationInfo */
861 NULL
, /* pGetCharABCWidths */
862 NULL
, /* pGetCharABCWidthsI */
863 PSDRV_GetCharWidth
, /* pGetCharWidth */
864 PSDRV_GetDeviceCaps
, /* pGetDeviceCaps */
865 NULL
, /* pGetDeviceGammaRamp */
866 NULL
, /* pGetFontData */
867 NULL
, /* pGetFontUnicodeRanges */
868 NULL
, /* pGetGlyphIndices */
869 NULL
, /* pGetGlyphOutline */
870 NULL
, /* pGetICMProfile */
871 NULL
, /* pGetImage */
872 NULL
, /* pGetKerningPairs */
873 NULL
, /* pGetNearestColor */
874 NULL
, /* pGetOutlineTextMetrics */
875 NULL
, /* pGetPixel */
876 NULL
, /* pGetPixelFormat */
877 NULL
, /* pGetSystemPaletteEntries */
878 NULL
, /* pGetTextCharsetInfo */
879 PSDRV_GetTextExtentExPoint
, /* pGetTextExtentExPoint */
880 NULL
, /* pGetTextExtentExPointI */
881 NULL
, /* pGetTextFace */
882 PSDRV_GetTextMetrics
, /* pGetTextMetrics */
883 NULL
, /* pGradientFill */
884 NULL
, /* pIntersectClipRect */
885 NULL
, /* pInvertRgn */
886 PSDRV_LineTo
, /* pLineTo */
887 NULL
, /* pModifyWorldTransform */
889 NULL
, /* pOffsetClipRgn */
890 NULL
, /* pOffsetViewportOrg */
891 NULL
, /* pOffsetWindowOrg */
892 PSDRV_PaintRgn
, /* pPaintRgn */
893 PSDRV_PatBlt
, /* pPatBlt */
894 PSDRV_Pie
, /* pPie */
895 PSDRV_PolyBezier
, /* pPolyBezier */
896 PSDRV_PolyBezierTo
, /* pPolyBezierTo */
897 NULL
, /* pPolyDraw */
898 PSDRV_PolyPolygon
, /* pPolyPolygon */
899 PSDRV_PolyPolyline
, /* pPolyPolyline */
900 PSDRV_Polygon
, /* pPolygon */
901 PSDRV_Polyline
, /* pPolyline */
902 NULL
, /* pPolylineTo */
903 PSDRV_PutImage
, /* pPutImage */
904 NULL
, /* pRealizeDefaultPalette */
905 NULL
, /* pRealizePalette */
906 PSDRV_Rectangle
, /* pRectangle */
907 PSDRV_ResetDC
, /* pResetDC */
908 NULL
, /* pRestoreDC */
909 PSDRV_RoundRect
, /* pRoundRect */
911 NULL
, /* pScaleViewportExt */
912 NULL
, /* pScaleWindowExt */
913 NULL
, /* pSelectBitmap */
914 PSDRV_SelectBrush
, /* pSelectBrush */
915 NULL
, /* pSelectClipPath */
916 PSDRV_SelectFont
, /* pSelectFont */
917 NULL
, /* pSelectPalette */
918 PSDRV_SelectPen
, /* pSelectPen */
919 NULL
, /* pSetArcDirection */
920 PSDRV_SetBkColor
, /* pSetBkColor */
921 NULL
, /* pSetBkMode */
922 PSDRV_SetDCBrushColor
, /* pSetDCBrushColor */
923 PSDRV_SetDCPenColor
, /* pSetDCPenColor */
924 NULL
, /* pSetDIBColorTable */
925 NULL
, /* pSetDIBitsToDevice */
926 NULL
, /* pSetDeviceClipping */
927 NULL
, /* pSetDeviceGammaRamp */
928 NULL
, /* pSetLayout */
929 NULL
, /* pSetMapMode */
930 NULL
, /* pSetMapperFlags */
931 PSDRV_SetPixel
, /* pSetPixel */
932 NULL
, /* pSetPixelFormat */
933 NULL
, /* pSetPolyFillMode */
935 NULL
, /* pSetRelAbs */
936 NULL
, /* pSetStretchBltMode */
937 NULL
, /* pSetTextAlign */
938 NULL
, /* pSetTextCharacterExtra */
939 PSDRV_SetTextColor
, /* pSetTextColor */
940 NULL
, /* pSetTextJustification */
941 NULL
, /* pSetViewportExt */
942 NULL
, /* pSetViewportOrg */
943 NULL
, /* pSetWindowExt */
944 NULL
, /* pSetWindowOrg */
945 NULL
, /* pSetWorldTransform */
946 PSDRV_StartDoc
, /* pStartDoc */
947 PSDRV_StartPage
, /* pStartPage */
948 NULL
, /* pStretchBlt */
949 NULL
, /* pStretchDIBits */
950 PSDRV_StrokeAndFillPath
, /* pStrokeAndFillPath */
951 PSDRV_StrokePath
, /* pStrokePath */
952 NULL
, /* pSwapBuffers */
953 NULL
, /* pUnrealizePalette */
954 NULL
, /* pWidenPath */
955 /* OpenGL not supported */
959 /******************************************************************************
960 * PSDRV_get_gdi_driver
962 const struct gdi_dc_funcs
* CDECL
PSDRV_get_gdi_driver( unsigned int version
)
964 if (version
!= WINE_GDI_DRIVER_VERSION
)
966 ERR( "version mismatch, gdi32 wants %u but wineps has %u\n", version
, WINE_GDI_DRIVER_VERSION
);