2 * COMMDLG - Print Dialog
4 * Copyright 1994 Martin Ayotte
5 * Copyright 1996 Albrecht Kleine
6 * Copyright 1999 Klaas van Gend
7 * Copyright 2000 Huw D M Davies
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #define NONAMELESSUNION
30 #define NONAMELESSSTRUCT
38 #include "wine/debug.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(commdlg
);
49 /* Yes these constants are the same, but we're just copying win98 */
50 #define UPDOWN_ID 0x270f
51 #define MAX_COPIES 9999
54 static struct pd_flags psd_flags
[] = {
55 {PSD_MINMARGINS
,"PSD_MINMARGINS"},
56 {PSD_MARGINS
,"PSD_MARGINS"},
57 {PSD_INTHOUSANDTHSOFINCHES
,"PSD_INTHOUSANDTHSOFINCHES"},
58 {PSD_INHUNDREDTHSOFMILLIMETERS
,"PSD_INHUNDREDTHSOFMILLIMETERS"},
59 {PSD_DISABLEMARGINS
,"PSD_DISABLEMARGINS"},
60 {PSD_DISABLEPRINTER
,"PSD_DISABLEPRINTER"},
61 {PSD_NOWARNING
,"PSD_NOWARNING"},
62 {PSD_DISABLEORIENTATION
,"PSD_DISABLEORIENTATION"},
63 {PSD_RETURNDEFAULT
,"PSD_RETURNDEFAULT"},
64 {PSD_DISABLEPAPER
,"PSD_DISABLEPAPER"},
65 {PSD_SHOWHELP
,"PSD_SHOWHELP"},
66 {PSD_ENABLEPAGESETUPHOOK
,"PSD_ENABLEPAGESETUPHOOK"},
67 {PSD_ENABLEPAGESETUPTEMPLATE
,"PSD_ENABLEPAGESETUPTEMPLATE"},
68 {PSD_ENABLEPAGESETUPTEMPLATEHANDLE
,"PSD_ENABLEPAGESETUPTEMPLATEHANDLE"},
69 {PSD_ENABLEPAGEPAINTHOOK
,"PSD_ENABLEPAGEPAINTHOOK"},
70 {PSD_DISABLEPAGEPAINTING
,"PSD_DISABLEPAGEPAINTING"},
74 /* address of wndproc for subclassed Static control */
75 static WNDPROC lpfnStaticWndProc
;
76 /* the text of the fake document to render for the Page Setup dialog */
77 static WCHAR wszFakeDocumentText
[1024];
79 /***********************************************************************
80 * PRINTDLG_OpenDefaultPrinter
82 * Returns a winspool printer handle to the default printer in *hprn
83 * Caller must call ClosePrinter on the handle
85 * Returns TRUE on success else FALSE
87 BOOL
PRINTDLG_OpenDefaultPrinter(HANDLE
*hprn
)
90 DWORD dwBufLen
= sizeof(buf
) / sizeof(buf
[0]);
92 if(!GetDefaultPrinterW(buf
, &dwBufLen
))
94 res
= OpenPrinterW(buf
, hprn
, NULL
);
96 WARN("Could not open printer %s\n", debugstr_w(buf
));
100 /***********************************************************************
101 * PRINTDLG_SetUpPrinterListCombo
103 * Initializes printer list combox.
104 * hDlg: HWND of dialog
105 * id: Control id of combo
106 * name: Name of printer to select
108 * Initializes combo with list of available printers. Selects printer 'name'
109 * If name is NULL or does not exist select the default printer.
111 * Returns number of printers added to list.
113 INT
PRINTDLG_SetUpPrinterListComboA(HWND hDlg
, UINT id
, LPCSTR name
)
117 LPPRINTER_INFO_2A pi
;
118 EnumPrintersA(PRINTER_ENUM_LOCAL
, NULL
, 2, NULL
, 0, &needed
, &num
);
119 pi
= HeapAlloc(GetProcessHeap(), 0, needed
);
120 EnumPrintersA(PRINTER_ENUM_LOCAL
, NULL
, 2, (LPBYTE
)pi
, needed
, &needed
,
123 SendDlgItemMessageA(hDlg
, id
, CB_RESETCONTENT
, 0, 0);
125 for(i
= 0; i
< num
; i
++) {
126 SendDlgItemMessageA(hDlg
, id
, CB_ADDSTRING
, 0,
127 (LPARAM
)pi
[i
].pPrinterName
);
129 HeapFree(GetProcessHeap(), 0, pi
);
131 (i
= SendDlgItemMessageA(hDlg
, id
, CB_FINDSTRINGEXACT
, -1,
132 (LPARAM
)name
)) == CB_ERR
) {
135 DWORD dwBufLen
= sizeof(buf
);
136 FIXME("Can't find '%s' in printer list so trying to find default\n",
138 if(!GetDefaultPrinterA(buf
, &dwBufLen
))
140 i
= SendDlgItemMessageA(hDlg
, id
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)buf
);
142 FIXME("Can't find default printer in printer list\n");
144 SendDlgItemMessageA(hDlg
, id
, CB_SETCURSEL
, i
, 0);
148 static INT
PRINTDLG_SetUpPrinterListComboW(HWND hDlg
, UINT id
, LPCWSTR name
)
152 LPPRINTER_INFO_2W pi
;
153 EnumPrintersW(PRINTER_ENUM_LOCAL
, NULL
, 2, NULL
, 0, &needed
, &num
);
154 pi
= HeapAlloc(GetProcessHeap(), 0, needed
);
155 EnumPrintersW(PRINTER_ENUM_LOCAL
, NULL
, 2, (LPBYTE
)pi
, needed
, &needed
,
158 for(i
= 0; i
< num
; i
++) {
159 SendDlgItemMessageW(hDlg
, id
, CB_ADDSTRING
, 0,
160 (LPARAM
)pi
[i
].pPrinterName
);
162 HeapFree(GetProcessHeap(), 0, pi
);
164 (i
= SendDlgItemMessageW(hDlg
, id
, CB_FINDSTRINGEXACT
, -1,
165 (LPARAM
)name
)) == CB_ERR
) {
167 DWORD dwBufLen
= sizeof(buf
)/sizeof(buf
[0]);
168 TRACE("Can't find '%s' in printer list so trying to find default\n",
170 if(!GetDefaultPrinterW(buf
, &dwBufLen
))
172 i
= SendDlgItemMessageW(hDlg
, id
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)buf
);
174 TRACE("Can't find default printer in printer list\n");
176 SendDlgItemMessageW(hDlg
, id
, CB_SETCURSEL
, i
, 0);
180 /***********************************************************************
181 * PRINTDLG_CreateDevNames [internal]
184 * creates a DevNames structure.
186 * (NB. when we handle unicode the offsets will be in wchars).
188 static BOOL
PRINTDLG_CreateDevNames(HGLOBAL
*hmem
, char* DeviceDriverName
,
189 char* DeviceName
, char* OutputPort
)
192 char* pDevNamesSpace
;
194 LPDEVNAMES lpDevNames
;
196 DWORD dwBufLen
= sizeof(buf
);
198 size
= strlen(DeviceDriverName
) + 1
199 + strlen(DeviceName
) + 1
200 + strlen(OutputPort
) + 1
204 *hmem
= GlobalReAlloc(*hmem
, size
, GMEM_MOVEABLE
);
206 *hmem
= GlobalAlloc(GMEM_MOVEABLE
, size
);
210 pDevNamesSpace
= GlobalLock(*hmem
);
211 lpDevNames
= (LPDEVNAMES
) pDevNamesSpace
;
213 pTempPtr
= pDevNamesSpace
+ sizeof(DEVNAMES
);
214 strcpy(pTempPtr
, DeviceDriverName
);
215 lpDevNames
->wDriverOffset
= pTempPtr
- pDevNamesSpace
;
217 pTempPtr
+= strlen(DeviceDriverName
) + 1;
218 strcpy(pTempPtr
, DeviceName
);
219 lpDevNames
->wDeviceOffset
= pTempPtr
- pDevNamesSpace
;
221 pTempPtr
+= strlen(DeviceName
) + 1;
222 strcpy(pTempPtr
, OutputPort
);
223 lpDevNames
->wOutputOffset
= pTempPtr
- pDevNamesSpace
;
225 GetDefaultPrinterA(buf
, &dwBufLen
);
226 lpDevNames
->wDefault
= (strcmp(buf
, DeviceName
) == 0) ? 1 : 0;
231 static BOOL
PRINTDLG_CreateDevNamesW(HGLOBAL
*hmem
, LPCWSTR DeviceDriverName
,
232 LPCWSTR DeviceName
, LPCWSTR OutputPort
)
235 LPWSTR pDevNamesSpace
;
237 LPDEVNAMES lpDevNames
;
239 DWORD dwBufLen
= sizeof(bufW
) / sizeof(WCHAR
);
241 size
= sizeof(WCHAR
)*lstrlenW(DeviceDriverName
) + 2
242 + sizeof(WCHAR
)*lstrlenW(DeviceName
) + 2
243 + sizeof(WCHAR
)*lstrlenW(OutputPort
) + 2
247 *hmem
= GlobalReAlloc(*hmem
, size
, GMEM_MOVEABLE
);
249 *hmem
= GlobalAlloc(GMEM_MOVEABLE
, size
);
253 pDevNamesSpace
= GlobalLock(*hmem
);
254 lpDevNames
= (LPDEVNAMES
) pDevNamesSpace
;
256 pTempPtr
= (LPWSTR
)((LPDEVNAMES
)pDevNamesSpace
+ 1);
257 lstrcpyW(pTempPtr
, DeviceDriverName
);
258 lpDevNames
->wDriverOffset
= pTempPtr
- pDevNamesSpace
;
260 pTempPtr
+= lstrlenW(DeviceDriverName
) + 1;
261 lstrcpyW(pTempPtr
, DeviceName
);
262 lpDevNames
->wDeviceOffset
= pTempPtr
- pDevNamesSpace
;
264 pTempPtr
+= lstrlenW(DeviceName
) + 1;
265 lstrcpyW(pTempPtr
, OutputPort
);
266 lpDevNames
->wOutputOffset
= pTempPtr
- pDevNamesSpace
;
268 GetDefaultPrinterW(bufW
, &dwBufLen
);
269 lpDevNames
->wDefault
= (lstrcmpW(bufW
, DeviceName
) == 0) ? 1 : 0;
274 /***********************************************************************
275 * PRINTDLG_UpdatePrintDlg [internal]
278 * updates the PrintDlg structure for return values.
281 * FALSE if user is not allowed to close (i.e. wrong nTo or nFrom values)
282 * TRUE if successful.
284 static BOOL
PRINTDLG_UpdatePrintDlgA(HWND hDlg
,
285 PRINT_PTRA
* PrintStructures
)
287 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
288 PDEVMODEA lpdm
= PrintStructures
->lpDevMode
;
289 LPPRINTER_INFO_2A pi
= PrintStructures
->lpPrinterInfo
;
293 FIXME("No lpdm ptr?\n");
298 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
299 /* check whether nFromPage and nToPage are within range defined by
300 * nMinPage and nMaxPage
302 if (IsDlgButtonChecked(hDlg
, rad3
) == BST_CHECKED
) { /* Pages */
305 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
306 nToPage
= GetDlgItemInt(hDlg
, edt2
, NULL
, FALSE
);
307 if (nFromPage
< lppd
->nMinPage
|| nFromPage
> lppd
->nMaxPage
||
308 nToPage
< lppd
->nMinPage
|| nToPage
> lppd
->nMaxPage
) {
309 char resourcestr
[256];
311 LoadStringA(COMDLG32_hInstance
, PD32_INVALID_PAGE_RANGE
,
313 sprintf(resultstr
,resourcestr
, lppd
->nMinPage
, lppd
->nMaxPage
);
314 LoadStringA(COMDLG32_hInstance
, PD32_PRINT_TITLE
,
316 MessageBoxA(hDlg
, resultstr
, resourcestr
,
317 MB_OK
| MB_ICONWARNING
);
320 lppd
->nFromPage
= nFromPage
;
321 lppd
->nToPage
= nToPage
;
322 lppd
->Flags
|= PD_PAGENUMS
;
325 lppd
->Flags
&= ~PD_PAGENUMS
;
327 if (IsDlgButtonChecked(hDlg
, chx1
) == BST_CHECKED
) {/* Print to file */
328 lppd
->Flags
|= PD_PRINTTOFILE
;
329 pi
->pPortName
= "FILE:";
332 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
) { /* Collate */
333 FIXME("Collate lppd not yet implemented as output\n");
336 /* set PD_Collate and nCopies */
337 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
338 /* The application doesn't support multiple copies or collate...
340 lppd
->Flags
&= ~PD_COLLATE
;
342 /* if the printer driver supports it... store info there
343 * otherwise no collate & multiple copies !
345 if (lpdm
->dmFields
& DM_COLLATE
)
347 (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
);
348 if (lpdm
->dmFields
& DM_COPIES
)
349 lpdm
->dmCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
351 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
352 lppd
->Flags
|= PD_COLLATE
;
354 lppd
->Flags
&= ~PD_COLLATE
;
355 lppd
->nCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
361 static BOOL
PRINTDLG_UpdatePrintDlgW(HWND hDlg
,
362 PRINT_PTRW
* PrintStructures
)
364 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
365 PDEVMODEW lpdm
= PrintStructures
->lpDevMode
;
366 LPPRINTER_INFO_2W pi
= PrintStructures
->lpPrinterInfo
;
370 FIXME("No lpdm ptr?\n");
375 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
376 /* check whether nFromPage and nToPage are within range defined by
377 * nMinPage and nMaxPage
379 if (IsDlgButtonChecked(hDlg
, rad3
) == BST_CHECKED
) { /* Pages */
382 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
383 nToPage
= GetDlgItemInt(hDlg
, edt2
, NULL
, FALSE
);
384 if (nFromPage
< lppd
->nMinPage
|| nFromPage
> lppd
->nMaxPage
||
385 nToPage
< lppd
->nMinPage
|| nToPage
> lppd
->nMaxPage
) {
386 WCHAR resourcestr
[256];
387 WCHAR resultstr
[256];
388 LoadStringW(COMDLG32_hInstance
, PD32_INVALID_PAGE_RANGE
,
390 wsprintfW(resultstr
,resourcestr
, lppd
->nMinPage
, lppd
->nMaxPage
);
391 LoadStringW(COMDLG32_hInstance
, PD32_PRINT_TITLE
,
393 MessageBoxW(hDlg
, resultstr
, resourcestr
,
394 MB_OK
| MB_ICONWARNING
);
397 lppd
->nFromPage
= nFromPage
;
398 lppd
->nToPage
= nToPage
;
401 if (IsDlgButtonChecked(hDlg
, chx1
) == BST_CHECKED
) {/* Print to file */
402 static WCHAR file
[] = {'F','I','L','E',':',0};
403 lppd
->Flags
|= PD_PRINTTOFILE
;
404 pi
->pPortName
= file
;
407 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
) { /* Collate */
408 FIXME("Collate lppd not yet implemented as output\n");
411 /* set PD_Collate and nCopies */
412 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
413 /* The application doesn't support multiple copies or collate...
415 lppd
->Flags
&= ~PD_COLLATE
;
417 /* if the printer driver supports it... store info there
418 * otherwise no collate & multiple copies !
420 if (lpdm
->dmFields
& DM_COLLATE
)
422 (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
);
423 if (lpdm
->dmFields
& DM_COPIES
)
424 lpdm
->dmCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
426 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
427 lppd
->Flags
|= PD_COLLATE
;
429 lppd
->Flags
&= ~PD_COLLATE
;
430 lppd
->nCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
436 static BOOL
PRINTDLG_PaperSizeA(
437 PRINTDLGA
*pdlga
,const WORD PaperSize
,LPPOINT size
441 LPSTR devname
,portname
;
445 POINT
*points
= NULL
;
448 dn
= GlobalLock(pdlga
->hDevNames
);
449 dm
= GlobalLock(pdlga
->hDevMode
);
450 devname
= ((char*)dn
)+dn
->wDeviceOffset
;
451 portname
= ((char*)dn
)+dn
->wOutputOffset
;
454 NrOfEntries
= DeviceCapabilitiesA(devname
,portname
,DC_PAPERNAMES
,NULL
,dm
);
456 FIXME("No papernames found for %s/%s\n",devname
,portname
);
459 if (NrOfEntries
== -1) {
460 ERR("Hmm ? DeviceCapabilities() DC_PAPERNAMES failed, ret -1 !\n");
464 Words
= HeapAlloc(GetProcessHeap(),0,NrOfEntries
*sizeof(WORD
));
465 if (NrOfEntries
!= (ret
=DeviceCapabilitiesA(devname
,portname
,DC_PAPERS
,(LPSTR
)Words
,dm
))) {
466 FIXME("Number of returned vals %d is not %d\n",NrOfEntries
,ret
);
469 for (i
=0;i
<NrOfEntries
;i
++)
470 if (Words
[i
] == PaperSize
)
472 HeapFree(GetProcessHeap(),0,Words
);
473 if (i
== NrOfEntries
) {
474 FIXME("Papersize %d not found in list?\n",PaperSize
);
477 points
= HeapAlloc(GetProcessHeap(),0,sizeof(points
[0])*NrOfEntries
);
478 if (NrOfEntries
!=(ret
=DeviceCapabilitiesA(devname
,portname
,DC_PAPERSIZE
,(LPSTR
)points
,dm
))) {
479 FIXME("Number of returned sizes %d is not %d?\n",NrOfEntries
,ret
);
482 /* this is _10ths_ of a millimeter */
487 GlobalUnlock(pdlga
->hDevNames
);
488 GlobalUnlock(pdlga
->hDevMode
);
489 HeapFree(GetProcessHeap(),0,Words
);
490 HeapFree(GetProcessHeap(),0,points
);
494 static BOOL
PRINTDLG_PaperSizeW(
495 PRINTDLGW
*pdlga
,const WCHAR
*PaperSize
,LPPOINT size
499 LPWSTR devname
,portname
;
503 POINT
*points
= NULL
;
506 dn
= GlobalLock(pdlga
->hDevNames
);
507 dm
= GlobalLock(pdlga
->hDevMode
);
508 devname
= ((WCHAR
*)dn
)+dn
->wDeviceOffset
;
509 portname
= ((WCHAR
*)dn
)+dn
->wOutputOffset
;
512 NrOfEntries
= DeviceCapabilitiesW(devname
,portname
,DC_PAPERNAMES
,NULL
,dm
);
514 FIXME("No papernames found for %s/%s\n",debugstr_w(devname
),debugstr_w(portname
));
517 if (NrOfEntries
== -1) {
518 ERR("Hmm ? DeviceCapabilities() DC_PAPERNAMES failed, ret -1 !\n");
522 Names
= HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR
)*NrOfEntries
*64);
523 if (NrOfEntries
!= (ret
=DeviceCapabilitiesW(devname
,portname
,DC_PAPERNAMES
,Names
,dm
))) {
524 FIXME("Number of returned vals %d is not %d\n",NrOfEntries
,ret
);
527 for (i
=0;i
<NrOfEntries
;i
++)
528 if (!lstrcmpW(PaperSize
,Names
+(64*i
)))
530 HeapFree(GetProcessHeap(),0,Names
);
531 if (i
==NrOfEntries
) {
532 FIXME("Papersize %s not found in list?\n",debugstr_w(PaperSize
));
535 points
= HeapAlloc(GetProcessHeap(),0,sizeof(points
[0])*NrOfEntries
);
536 if (NrOfEntries
!=(ret
=DeviceCapabilitiesW(devname
,portname
,DC_PAPERSIZE
,(LPWSTR
)points
,dm
))) {
537 FIXME("Number of returned sizes %d is not %d?\n",NrOfEntries
,ret
);
540 /* this is _10ths_ of a millimeter */
545 GlobalUnlock(pdlga
->hDevNames
);
546 GlobalUnlock(pdlga
->hDevMode
);
547 HeapFree(GetProcessHeap(),0,Names
);
548 HeapFree(GetProcessHeap(),0,points
);
553 /************************************************************************
554 * PRINTDLG_SetUpPaperComboBox
556 * Initialize either the papersize or inputslot combos of the Printer Setup
557 * dialog. We store the associated word (eg DMPAPER_A4) as the item data.
558 * We also try to re-select the old selection.
560 static BOOL
PRINTDLG_SetUpPaperComboBoxA(HWND hDlg
,
573 int fwCapability_Names
;
574 int fwCapability_Words
;
576 TRACE(" Printer: %s, Port: %s, ComboID: %d\n",PrinterName
,PortName
,nIDComboBox
);
578 /* query the dialog box for the current selected value */
579 Sel
= SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_GETCURSEL
, 0, 0);
581 /* we enter here only if a different printer is selected after
582 * the Print Setup dialog is opened. The current settings are
583 * stored into the newly selected printer.
585 oldWord
= SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_GETITEMDATA
,
588 if (nIDComboBox
== cmb2
)
589 dm
->u1
.s1
.dmPaperSize
= oldWord
;
591 dm
->dmDefaultSource
= oldWord
;
595 /* we enter here only when the Print setup dialog is initially
596 * opened. In this case the settings are restored from when
597 * the dialog was last closed.
600 if (nIDComboBox
== cmb2
)
601 oldWord
= dm
->u1
.s1
.dmPaperSize
;
603 oldWord
= dm
->dmDefaultSource
;
607 if (nIDComboBox
== cmb2
) {
609 fwCapability_Names
= DC_PAPERNAMES
;
610 fwCapability_Words
= DC_PAPERS
;
614 fwCapability_Names
= DC_BINNAMES
;
615 fwCapability_Words
= DC_BINS
;
618 /* for some printer drivers, DeviceCapabilities calls a VXD to obtain the
619 * paper settings. As Wine doesn't allow VXDs, this results in a crash.
621 WARN(" if your printer driver uses VXDs, expect a crash now!\n");
622 NrOfEntries
= DeviceCapabilitiesA(PrinterName
, PortName
,
623 fwCapability_Names
, NULL
, dm
);
624 if (NrOfEntries
== 0)
625 WARN("no Name Entries found!\n");
626 else if (NrOfEntries
< 0)
629 if(DeviceCapabilitiesA(PrinterName
, PortName
, fwCapability_Words
, NULL
, dm
)
631 ERR("Number of caps is different\n");
635 Names
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(char)*NamesSize
);
636 Words
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(WORD
));
637 NrOfEntries
= DeviceCapabilitiesA(PrinterName
, PortName
,
638 fwCapability_Names
, Names
, dm
);
639 NrOfEntries
= DeviceCapabilitiesA(PrinterName
, PortName
,
640 fwCapability_Words
, (LPSTR
)Words
, dm
);
642 /* reset any current content in the combobox */
643 SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_RESETCONTENT
, 0, 0);
645 /* store new content */
646 for (i
= 0; i
< NrOfEntries
; i
++) {
647 DWORD pos
= SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_ADDSTRING
, 0,
648 (LPARAM
)(&Names
[i
*NamesSize
]) );
649 SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_SETITEMDATA
, pos
,
653 /* Look for old selection - can't do this is previous loop since
654 item order will change as more items are added */
656 for (i
= 0; i
< NrOfEntries
; i
++) {
657 if(SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_GETITEMDATA
, i
, 0) ==
663 SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_SETCURSEL
, Sel
, 0);
665 HeapFree(GetProcessHeap(),0,Words
);
666 HeapFree(GetProcessHeap(),0,Names
);
670 static BOOL
PRINTDLG_SetUpPaperComboBoxW(HWND hDlg
,
683 int fwCapability_Names
;
684 int fwCapability_Words
;
686 TRACE(" Printer: %s, Port: %s, ComboID: %d\n",debugstr_w(PrinterName
),debugstr_w(PortName
),nIDComboBox
);
688 /* query the dialog box for the current selected value */
689 Sel
= SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_GETCURSEL
, 0, 0);
691 /* we enter here only if a different printer is selected after
692 * the Print Setup dialog is opened. The current settings are
693 * stored into the newly selected printer.
695 oldWord
= SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_GETITEMDATA
,
698 if (nIDComboBox
== cmb2
)
699 dm
->u1
.s1
.dmPaperSize
= oldWord
;
701 dm
->dmDefaultSource
= oldWord
;
705 /* we enter here only when the Print setup dialog is initially
706 * opened. In this case the settings are restored from when
707 * the dialog was last closed.
710 if (nIDComboBox
== cmb2
)
711 oldWord
= dm
->u1
.s1
.dmPaperSize
;
713 oldWord
= dm
->dmDefaultSource
;
717 if (nIDComboBox
== cmb2
) {
719 fwCapability_Names
= DC_PAPERNAMES
;
720 fwCapability_Words
= DC_PAPERS
;
724 fwCapability_Names
= DC_BINNAMES
;
725 fwCapability_Words
= DC_BINS
;
728 /* for some printer drivers, DeviceCapabilities calls a VXD to obtain the
729 * paper settings. As Wine doesn't allow VXDs, this results in a crash.
731 WARN(" if your printer driver uses VXDs, expect a crash now!\n");
732 NrOfEntries
= DeviceCapabilitiesW(PrinterName
, PortName
,
733 fwCapability_Names
, NULL
, dm
);
734 if (NrOfEntries
== 0)
735 WARN("no Name Entries found!\n");
736 else if (NrOfEntries
< 0)
739 if(DeviceCapabilitiesW(PrinterName
, PortName
, fwCapability_Words
, NULL
, dm
)
741 ERR("Number of caps is different\n");
745 Names
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(WCHAR
)*NamesSize
);
746 Words
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(WORD
));
747 NrOfEntries
= DeviceCapabilitiesW(PrinterName
, PortName
,
748 fwCapability_Names
, Names
, dm
);
749 NrOfEntries
= DeviceCapabilitiesW(PrinterName
, PortName
,
750 fwCapability_Words
, (LPWSTR
)Words
, dm
);
752 /* reset any current content in the combobox */
753 SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_RESETCONTENT
, 0, 0);
755 /* store new content */
756 for (i
= 0; i
< NrOfEntries
; i
++) {
757 DWORD pos
= SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_ADDSTRING
, 0,
758 (LPARAM
)(&Names
[i
*NamesSize
]) );
759 SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_SETITEMDATA
, pos
,
763 /* Look for old selection - can't do this is previous loop since
764 item order will change as more items are added */
766 for (i
= 0; i
< NrOfEntries
; i
++) {
767 if(SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_GETITEMDATA
, i
, 0) ==
773 SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_SETCURSEL
, Sel
, 0);
775 HeapFree(GetProcessHeap(),0,Words
);
776 HeapFree(GetProcessHeap(),0,Names
);
781 /***********************************************************************
782 * PRINTDLG_UpdatePrinterInfoTexts [internal]
784 static void PRINTDLG_UpdatePrinterInfoTextsA(HWND hDlg
, LPPRINTER_INFO_2A pi
)
787 char ResourceString
[256];
793 /* add all status messages */
794 for (i
= 0; i
< 25; i
++) {
795 if (pi
->Status
& (1<<i
)) {
796 LoadStringA(COMDLG32_hInstance
, PD32_PRINTER_STATUS_PAUSED
+i
,
797 ResourceString
, 255);
798 strcat(StatusMsg
,ResourceString
);
802 /* FIXME: status==ready must only be appended if really so.
803 but how to detect? */
804 LoadStringA(COMDLG32_hInstance
, PD32_PRINTER_STATUS_READY
,
805 ResourceString
, 255);
806 strcat(StatusMsg
,ResourceString
);
807 SetDlgItemTextA(hDlg
, stc12
, StatusMsg
);
809 /* set all other printer info texts */
810 SetDlgItemTextA(hDlg
, stc11
, pi
->pDriverName
);
812 if (pi
->pLocation
!= NULL
&& pi
->pLocation
[0] != '\0')
813 SetDlgItemTextA(hDlg
, stc14
, pi
->pLocation
);
815 SetDlgItemTextA(hDlg
, stc14
, pi
->pPortName
);
816 SetDlgItemTextA(hDlg
, stc13
, pi
->pComment
? pi
->pComment
: "");
820 static void PRINTDLG_UpdatePrinterInfoTextsW(HWND hDlg
, LPPRINTER_INFO_2W pi
)
822 WCHAR StatusMsg
[256];
823 WCHAR ResourceString
[256];
824 static const WCHAR emptyW
[] = {0};
830 /* add all status messages */
831 for (i
= 0; i
< 25; i
++) {
832 if (pi
->Status
& (1<<i
)) {
833 LoadStringW(COMDLG32_hInstance
, PD32_PRINTER_STATUS_PAUSED
+i
,
834 ResourceString
, 255);
835 lstrcatW(StatusMsg
,ResourceString
);
839 /* FIXME: status==ready must only be appended if really so.
840 but how to detect? */
841 LoadStringW(COMDLG32_hInstance
, PD32_PRINTER_STATUS_READY
,
842 ResourceString
, 255);
843 lstrcatW(StatusMsg
,ResourceString
);
844 SetDlgItemTextW(hDlg
, stc12
, StatusMsg
);
846 /* set all other printer info texts */
847 SetDlgItemTextW(hDlg
, stc11
, pi
->pDriverName
);
848 if (pi
->pLocation
!= NULL
&& pi
->pLocation
[0] != '\0')
849 SetDlgItemTextW(hDlg
, stc14
, pi
->pLocation
);
851 SetDlgItemTextW(hDlg
, stc14
, pi
->pPortName
);
852 SetDlgItemTextW(hDlg
, stc13
, pi
->pComment
? pi
->pComment
: emptyW
);
856 /*******************************************************************
858 * PRINTDLG_ChangePrinter
861 BOOL
PRINTDLG_ChangePrinterA(HWND hDlg
, char *name
,
862 PRINT_PTRA
*PrintStructures
)
864 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
865 LPDEVMODEA lpdm
= NULL
;
870 HeapFree(GetProcessHeap(),0, PrintStructures
->lpPrinterInfo
);
871 HeapFree(GetProcessHeap(),0, PrintStructures
->lpDriverInfo
);
872 if(!OpenPrinterA(name
, &hprn
, NULL
)) {
873 ERR("Can't open printer %s\n", name
);
876 GetPrinterA(hprn
, 2, NULL
, 0, &needed
);
877 PrintStructures
->lpPrinterInfo
= HeapAlloc(GetProcessHeap(),0,needed
);
878 GetPrinterA(hprn
, 2, (LPBYTE
)PrintStructures
->lpPrinterInfo
, needed
,
880 GetPrinterDriverA(hprn
, NULL
, 3, NULL
, 0, &needed
);
881 PrintStructures
->lpDriverInfo
= HeapAlloc(GetProcessHeap(),0,needed
);
882 if (!GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)PrintStructures
->lpDriverInfo
,
884 ERR("GetPrinterDriverA failed for %s, fix your config!\n",PrintStructures
->lpPrinterInfo
->pPrinterName
);
889 PRINTDLG_UpdatePrinterInfoTextsA(hDlg
, PrintStructures
->lpPrinterInfo
);
891 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
892 PrintStructures
->lpDevMode
= NULL
;
894 dmSize
= DocumentPropertiesA(0, 0, name
, NULL
, NULL
, 0);
896 ERR("DocumentProperties fails on %s\n", debugstr_a(name
));
899 PrintStructures
->lpDevMode
= HeapAlloc(GetProcessHeap(), 0, dmSize
);
900 dmSize
= DocumentPropertiesA(0, 0, name
, PrintStructures
->lpDevMode
, NULL
,
902 if(lppd
->hDevMode
&& (lpdm
= GlobalLock(lppd
->hDevMode
)) &&
903 !lstrcmpA( (LPSTR
) lpdm
->dmDeviceName
,
904 (LPSTR
) PrintStructures
->lpDevMode
->dmDeviceName
)) {
905 /* Supplied devicemode matches current printer so try to use it */
906 DocumentPropertiesA(0, 0, name
, PrintStructures
->lpDevMode
, lpdm
,
907 DM_OUT_BUFFER
| DM_IN_BUFFER
);
910 GlobalUnlock(lppd
->hDevMode
);
912 lpdm
= PrintStructures
->lpDevMode
; /* use this as a shortcut */
914 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
915 /* Print range (All/Range/Selection) */
916 SetDlgItemInt(hDlg
, edt1
, lppd
->nFromPage
, FALSE
);
917 SetDlgItemInt(hDlg
, edt2
, lppd
->nToPage
, FALSE
);
918 CheckRadioButton(hDlg
, rad1
, rad3
, rad1
); /* default */
919 if (lppd
->Flags
& PD_NOSELECTION
)
920 EnableWindow(GetDlgItem(hDlg
, rad2
), FALSE
);
922 if (lppd
->Flags
& PD_SELECTION
)
923 CheckRadioButton(hDlg
, rad1
, rad3
, rad2
);
924 if (lppd
->Flags
& PD_NOPAGENUMS
) {
925 EnableWindow(GetDlgItem(hDlg
, rad3
), FALSE
);
926 EnableWindow(GetDlgItem(hDlg
, stc2
),FALSE
);
927 EnableWindow(GetDlgItem(hDlg
, edt1
), FALSE
);
928 EnableWindow(GetDlgItem(hDlg
, stc3
),FALSE
);
929 EnableWindow(GetDlgItem(hDlg
, edt2
), FALSE
);
931 if (lppd
->Flags
& PD_PAGENUMS
)
932 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
937 * FIXME: The ico3 is not displayed for some reason. I don't know why.
939 if (lppd
->Flags
& PD_COLLATE
) {
940 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
941 (LPARAM
)PrintStructures
->hCollateIcon
);
942 CheckDlgButton(hDlg
, chx2
, 1);
944 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
945 (LPARAM
)PrintStructures
->hNoCollateIcon
);
946 CheckDlgButton(hDlg
, chx2
, 0);
949 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
950 /* if printer doesn't support it: no Collate */
951 if (!(lpdm
->dmFields
& DM_COLLATE
)) {
952 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
953 EnableWindow(GetDlgItem(hDlg
, ico3
), FALSE
);
960 if (lppd
->hDevMode
== 0)
961 copies
= lppd
->nCopies
;
963 copies
= lpdm
->dmCopies
;
964 if(copies
== 0) copies
= 1;
965 else if(copies
< 0) copies
= MAX_COPIES
;
966 SetDlgItemInt(hDlg
, edt3
, copies
, FALSE
);
969 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
970 /* if printer doesn't support it: no nCopies */
971 if (!(lpdm
->dmFields
& DM_COPIES
)) {
972 EnableWindow(GetDlgItem(hDlg
, edt3
), FALSE
);
973 EnableWindow(GetDlgItem(hDlg
, stc5
), FALSE
);
978 CheckDlgButton(hDlg
, chx1
, (lppd
->Flags
& PD_PRINTTOFILE
) ? 1 : 0);
979 if (lppd
->Flags
& PD_DISABLEPRINTTOFILE
)
980 EnableWindow(GetDlgItem(hDlg
, chx1
), FALSE
);
981 if (lppd
->Flags
& PD_HIDEPRINTTOFILE
)
982 ShowWindow(GetDlgItem(hDlg
, chx1
), SW_HIDE
);
984 } else { /* PD_PRINTSETUP */
985 BOOL bPortrait
= (lpdm
->u1
.s1
.dmOrientation
== DMORIENT_PORTRAIT
);
987 PRINTDLG_SetUpPaperComboBoxA(hDlg
, cmb2
,
988 PrintStructures
->lpPrinterInfo
->pPrinterName
,
989 PrintStructures
->lpPrinterInfo
->pPortName
,
991 PRINTDLG_SetUpPaperComboBoxA(hDlg
, cmb3
,
992 PrintStructures
->lpPrinterInfo
->pPrinterName
,
993 PrintStructures
->lpPrinterInfo
->pPortName
,
995 CheckRadioButton(hDlg
, rad1
, rad2
, bPortrait
? rad1
: rad2
);
996 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
997 (LPARAM
)(bPortrait
? PrintStructures
->hPortraitIcon
:
998 PrintStructures
->hLandscapeIcon
));
1003 if ((lppd
->Flags
& PD_SHOWHELP
)==0) {
1004 /* hide if PD_SHOWHELP not specified */
1005 ShowWindow(GetDlgItem(hDlg
, pshHelp
), SW_HIDE
);
1010 static BOOL
PRINTDLG_ChangePrinterW(HWND hDlg
, WCHAR
*name
,
1011 PRINT_PTRW
*PrintStructures
)
1013 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
1014 LPDEVMODEW lpdm
= NULL
;
1019 HeapFree(GetProcessHeap(),0, PrintStructures
->lpPrinterInfo
);
1020 HeapFree(GetProcessHeap(),0, PrintStructures
->lpDriverInfo
);
1021 if(!OpenPrinterW(name
, &hprn
, NULL
)) {
1022 ERR("Can't open printer %s\n", debugstr_w(name
));
1025 GetPrinterW(hprn
, 2, NULL
, 0, &needed
);
1026 PrintStructures
->lpPrinterInfo
= HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR
)*needed
);
1027 GetPrinterW(hprn
, 2, (LPBYTE
)PrintStructures
->lpPrinterInfo
, needed
,
1029 GetPrinterDriverW(hprn
, NULL
, 3, NULL
, 0, &needed
);
1030 PrintStructures
->lpDriverInfo
= HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR
)*needed
);
1031 if (!GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)PrintStructures
->lpDriverInfo
,
1033 ERR("GetPrinterDriverA failed for %s, fix your config!\n",debugstr_w(PrintStructures
->lpPrinterInfo
->pPrinterName
));
1038 PRINTDLG_UpdatePrinterInfoTextsW(hDlg
, PrintStructures
->lpPrinterInfo
);
1040 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
1041 PrintStructures
->lpDevMode
= NULL
;
1043 dmSize
= DocumentPropertiesW(0, 0, name
, NULL
, NULL
, 0);
1045 ERR("DocumentProperties fails on %s\n", debugstr_w(name
));
1048 PrintStructures
->lpDevMode
= HeapAlloc(GetProcessHeap(), 0, dmSize
);
1049 dmSize
= DocumentPropertiesW(0, 0, name
, PrintStructures
->lpDevMode
, NULL
,
1051 if(lppd
->hDevMode
&& (lpdm
= GlobalLock(lppd
->hDevMode
)) &&
1052 !lstrcmpW(lpdm
->dmDeviceName
,
1053 PrintStructures
->lpDevMode
->dmDeviceName
)) {
1054 /* Supplied devicemode matches current printer so try to use it */
1055 DocumentPropertiesW(0, 0, name
, PrintStructures
->lpDevMode
, lpdm
,
1056 DM_OUT_BUFFER
| DM_IN_BUFFER
);
1059 GlobalUnlock(lppd
->hDevMode
);
1061 lpdm
= PrintStructures
->lpDevMode
; /* use this as a shortcut */
1063 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
1064 /* Print range (All/Range/Selection) */
1065 SetDlgItemInt(hDlg
, edt1
, lppd
->nFromPage
, FALSE
);
1066 SetDlgItemInt(hDlg
, edt2
, lppd
->nToPage
, FALSE
);
1067 CheckRadioButton(hDlg
, rad1
, rad3
, rad1
); /* default */
1068 if (lppd
->Flags
& PD_NOSELECTION
)
1069 EnableWindow(GetDlgItem(hDlg
, rad2
), FALSE
);
1071 if (lppd
->Flags
& PD_SELECTION
)
1072 CheckRadioButton(hDlg
, rad1
, rad3
, rad2
);
1073 if (lppd
->Flags
& PD_NOPAGENUMS
) {
1074 EnableWindow(GetDlgItem(hDlg
, rad3
), FALSE
);
1075 EnableWindow(GetDlgItem(hDlg
, stc2
),FALSE
);
1076 EnableWindow(GetDlgItem(hDlg
, edt1
), FALSE
);
1077 EnableWindow(GetDlgItem(hDlg
, stc3
),FALSE
);
1078 EnableWindow(GetDlgItem(hDlg
, edt2
), FALSE
);
1080 if (lppd
->Flags
& PD_PAGENUMS
)
1081 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
1086 * FIXME: The ico3 is not displayed for some reason. I don't know why.
1088 if (lppd
->Flags
& PD_COLLATE
) {
1089 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1090 (LPARAM
)PrintStructures
->hCollateIcon
);
1091 CheckDlgButton(hDlg
, chx2
, 1);
1093 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1094 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1095 CheckDlgButton(hDlg
, chx2
, 0);
1098 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
1099 /* if printer doesn't support it: no Collate */
1100 if (!(lpdm
->dmFields
& DM_COLLATE
)) {
1101 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
1102 EnableWindow(GetDlgItem(hDlg
, ico3
), FALSE
);
1109 if (lppd
->hDevMode
== 0)
1110 copies
= lppd
->nCopies
;
1112 copies
= lpdm
->dmCopies
;
1113 if(copies
== 0) copies
= 1;
1114 else if(copies
< 0) copies
= MAX_COPIES
;
1115 SetDlgItemInt(hDlg
, edt3
, copies
, FALSE
);
1118 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
1119 /* if printer doesn't support it: no nCopies */
1120 if (!(lpdm
->dmFields
& DM_COPIES
)) {
1121 EnableWindow(GetDlgItem(hDlg
, edt3
), FALSE
);
1122 EnableWindow(GetDlgItem(hDlg
, stc5
), FALSE
);
1127 CheckDlgButton(hDlg
, chx1
, (lppd
->Flags
& PD_PRINTTOFILE
) ? 1 : 0);
1128 if (lppd
->Flags
& PD_DISABLEPRINTTOFILE
)
1129 EnableWindow(GetDlgItem(hDlg
, chx1
), FALSE
);
1130 if (lppd
->Flags
& PD_HIDEPRINTTOFILE
)
1131 ShowWindow(GetDlgItem(hDlg
, chx1
), SW_HIDE
);
1133 } else { /* PD_PRINTSETUP */
1134 BOOL bPortrait
= (lpdm
->u1
.s1
.dmOrientation
== DMORIENT_PORTRAIT
);
1136 PRINTDLG_SetUpPaperComboBoxW(hDlg
, cmb2
,
1137 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1138 PrintStructures
->lpPrinterInfo
->pPortName
,
1140 PRINTDLG_SetUpPaperComboBoxW(hDlg
, cmb3
,
1141 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1142 PrintStructures
->lpPrinterInfo
->pPortName
,
1144 CheckRadioButton(hDlg
, rad1
, rad2
, bPortrait
? rad1
: rad2
);
1145 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1146 (LPARAM
)(bPortrait
? PrintStructures
->hPortraitIcon
:
1147 PrintStructures
->hLandscapeIcon
));
1152 if ((lppd
->Flags
& PD_SHOWHELP
)==0) {
1153 /* hide if PD_SHOWHELP not specified */
1154 ShowWindow(GetDlgItem(hDlg
, pshHelp
), SW_HIDE
);
1159 /***********************************************************************
1160 * PRINTDLG_WMInitDialog [internal]
1162 static LRESULT
PRINTDLG_WMInitDialog(HWND hDlg
, WPARAM wParam
,
1163 PRINT_PTRA
* PrintStructures
)
1165 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
1169 UINT comboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1171 /* load Collate ICONs */
1172 /* We load these with LoadImage because they are not a standard
1173 size and we don't want them rescaled */
1174 PrintStructures
->hCollateIcon
=
1175 LoadImageA(COMDLG32_hInstance
, "PD32_COLLATE", IMAGE_ICON
, 0, 0, 0);
1176 PrintStructures
->hNoCollateIcon
=
1177 LoadImageA(COMDLG32_hInstance
, "PD32_NOCOLLATE", IMAGE_ICON
, 0, 0, 0);
1179 /* These can be done with LoadIcon */
1180 PrintStructures
->hPortraitIcon
=
1181 LoadIconA(COMDLG32_hInstance
, "PD32_PORTRAIT");
1182 PrintStructures
->hLandscapeIcon
=
1183 LoadIconA(COMDLG32_hInstance
, "PD32_LANDSCAPE");
1185 /* display the collate/no_collate icon */
1186 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1187 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1189 if(PrintStructures
->hCollateIcon
== 0 ||
1190 PrintStructures
->hNoCollateIcon
== 0 ||
1191 PrintStructures
->hPortraitIcon
== 0 ||
1192 PrintStructures
->hLandscapeIcon
== 0) {
1193 ERR("no icon in resourcefile\n");
1194 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
1195 EndDialog(hDlg
, FALSE
);
1199 * if lppd->Flags PD_SHOWHELP is specified, a HELPMESGSTRING message
1200 * must be registered and the Help button must be shown.
1202 if (lppd
->Flags
& PD_SHOWHELP
) {
1203 if((PrintStructures
->HelpMessageID
=
1204 RegisterWindowMessageA(HELPMSGSTRINGA
)) == 0) {
1205 COMDLG32_SetCommDlgExtendedError(CDERR_REGISTERMSGFAIL
);
1209 PrintStructures
->HelpMessageID
= 0;
1211 if(!(lppd
->Flags
&PD_PRINTSETUP
)) {
1212 PrintStructures
->hwndUpDown
=
1213 CreateUpDownControl(WS_CHILD
| WS_VISIBLE
| WS_BORDER
|
1214 UDS_NOTHOUSANDS
| UDS_ARROWKEYS
|
1215 UDS_ALIGNRIGHT
| UDS_SETBUDDYINT
, 0, 0, 0, 0,
1216 hDlg
, UPDOWN_ID
, COMDLG32_hInstance
,
1217 GetDlgItem(hDlg
, edt3
), MAX_COPIES
, 1, 1);
1220 /* FIXME: I allow more freedom than either Win95 or WinNT,
1221 * which do not agree to what errors should be thrown or not
1222 * in case nToPage or nFromPage is out-of-range.
1224 if (lppd
->nMaxPage
< lppd
->nMinPage
)
1225 lppd
->nMaxPage
= lppd
->nMinPage
;
1226 if (lppd
->nMinPage
== lppd
->nMaxPage
)
1227 lppd
->Flags
|= PD_NOPAGENUMS
;
1228 if (lppd
->nToPage
< lppd
->nMinPage
)
1229 lppd
->nToPage
= lppd
->nMinPage
;
1230 if (lppd
->nToPage
> lppd
->nMaxPage
)
1231 lppd
->nToPage
= lppd
->nMaxPage
;
1232 if (lppd
->nFromPage
< lppd
->nMinPage
)
1233 lppd
->nFromPage
= lppd
->nMinPage
;
1234 if (lppd
->nFromPage
> lppd
->nMaxPage
)
1235 lppd
->nFromPage
= lppd
->nMaxPage
;
1237 /* if we have the combo box, fill it */
1238 if (GetDlgItem(hDlg
,comboID
)) {
1241 pdn
= GlobalLock(lppd
->hDevNames
);
1242 pdm
= GlobalLock(lppd
->hDevMode
);
1244 name
= (char*)pdn
+ pdn
->wDeviceOffset
;
1246 name
= (char*)pdm
->dmDeviceName
;
1247 PRINTDLG_SetUpPrinterListComboA(hDlg
, comboID
, name
);
1248 if(pdm
) GlobalUnlock(lppd
->hDevMode
);
1249 if(pdn
) GlobalUnlock(lppd
->hDevNames
);
1251 /* Now find selected printer and update rest of dlg */
1252 name
= HeapAlloc(GetProcessHeap(),0,256);
1253 if (GetDlgItemTextA(hDlg
, comboID
, name
, 255))
1254 PRINTDLG_ChangePrinterA(hDlg
, name
, PrintStructures
);
1255 HeapFree(GetProcessHeap(),0,name
);
1257 /* else use default printer */
1259 DWORD dwBufLen
= sizeof(name
);
1260 BOOL ret
= GetDefaultPrinterA(name
, &dwBufLen
);
1263 PRINTDLG_ChangePrinterA(hDlg
, name
, PrintStructures
);
1265 FIXME("No default printer found, expect problems!\n");
1270 static LRESULT
PRINTDLG_WMInitDialogW(HWND hDlg
, WPARAM wParam
,
1271 PRINT_PTRW
* PrintStructures
)
1273 const static WCHAR PD32_COLLATE
[] = { 'P', 'D', '3', '2', '_', 'C', 'O', 'L', 'L', 'A', 'T', 'E', 0 };
1274 const static WCHAR PD32_NOCOLLATE
[] = { 'P', 'D', '3', '2', '_', 'N', 'O', 'C', 'O', 'L', 'L', 'A', 'T', 'E', 0 };
1275 const static WCHAR PD32_PORTRAIT
[] = { 'P', 'D', '3', '2', '_', 'P', 'O', 'R', 'T', 'R', 'A', 'I', 'T', 0 };
1276 const static WCHAR PD32_LANDSCAPE
[] = { 'P', 'D', '3', '2', '_', 'L', 'A', 'N', 'D', 'S', 'C', 'A', 'P', 'E', 0 };
1277 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
1281 UINT comboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1283 /* load Collate ICONs */
1284 /* We load these with LoadImage because they are not a standard
1285 size and we don't want them rescaled */
1286 PrintStructures
->hCollateIcon
=
1287 LoadImageW(COMDLG32_hInstance
, PD32_COLLATE
, IMAGE_ICON
, 0, 0, 0);
1288 PrintStructures
->hNoCollateIcon
=
1289 LoadImageW(COMDLG32_hInstance
, PD32_NOCOLLATE
, IMAGE_ICON
, 0, 0, 0);
1291 /* These can be done with LoadIcon */
1292 PrintStructures
->hPortraitIcon
=
1293 LoadIconW(COMDLG32_hInstance
, PD32_PORTRAIT
);
1294 PrintStructures
->hLandscapeIcon
=
1295 LoadIconW(COMDLG32_hInstance
, PD32_LANDSCAPE
);
1297 /* display the collate/no_collate icon */
1298 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1299 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1301 if(PrintStructures
->hCollateIcon
== 0 ||
1302 PrintStructures
->hNoCollateIcon
== 0 ||
1303 PrintStructures
->hPortraitIcon
== 0 ||
1304 PrintStructures
->hLandscapeIcon
== 0) {
1305 ERR("no icon in resourcefile\n");
1306 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
1307 EndDialog(hDlg
, FALSE
);
1311 * if lppd->Flags PD_SHOWHELP is specified, a HELPMESGSTRING message
1312 * must be registered and the Help button must be shown.
1314 if (lppd
->Flags
& PD_SHOWHELP
) {
1315 if((PrintStructures
->HelpMessageID
=
1316 RegisterWindowMessageW(HELPMSGSTRINGW
)) == 0) {
1317 COMDLG32_SetCommDlgExtendedError(CDERR_REGISTERMSGFAIL
);
1321 PrintStructures
->HelpMessageID
= 0;
1323 if(!(lppd
->Flags
&PD_PRINTSETUP
)) {
1324 PrintStructures
->hwndUpDown
=
1325 CreateUpDownControl(WS_CHILD
| WS_VISIBLE
| WS_BORDER
|
1326 UDS_NOTHOUSANDS
| UDS_ARROWKEYS
|
1327 UDS_ALIGNRIGHT
| UDS_SETBUDDYINT
, 0, 0, 0, 0,
1328 hDlg
, UPDOWN_ID
, COMDLG32_hInstance
,
1329 GetDlgItem(hDlg
, edt3
), MAX_COPIES
, 1, 1);
1332 /* FIXME: I allow more freedom than either Win95 or WinNT,
1333 * which do not agree to what errors should be thrown or not
1334 * in case nToPage or nFromPage is out-of-range.
1336 if (lppd
->nMaxPage
< lppd
->nMinPage
)
1337 lppd
->nMaxPage
= lppd
->nMinPage
;
1338 if (lppd
->nMinPage
== lppd
->nMaxPage
)
1339 lppd
->Flags
|= PD_NOPAGENUMS
;
1340 if (lppd
->nToPage
< lppd
->nMinPage
)
1341 lppd
->nToPage
= lppd
->nMinPage
;
1342 if (lppd
->nToPage
> lppd
->nMaxPage
)
1343 lppd
->nToPage
= lppd
->nMaxPage
;
1344 if (lppd
->nFromPage
< lppd
->nMinPage
)
1345 lppd
->nFromPage
= lppd
->nMinPage
;
1346 if (lppd
->nFromPage
> lppd
->nMaxPage
)
1347 lppd
->nFromPage
= lppd
->nMaxPage
;
1349 /* if we have the combo box, fill it */
1350 if (GetDlgItem(hDlg
,comboID
)) {
1353 pdn
= GlobalLock(lppd
->hDevNames
);
1354 pdm
= GlobalLock(lppd
->hDevMode
);
1356 name
= (WCHAR
*)pdn
+ pdn
->wDeviceOffset
;
1358 name
= pdm
->dmDeviceName
;
1359 PRINTDLG_SetUpPrinterListComboW(hDlg
, comboID
, name
);
1360 if(pdm
) GlobalUnlock(lppd
->hDevMode
);
1361 if(pdn
) GlobalUnlock(lppd
->hDevNames
);
1363 /* Now find selected printer and update rest of dlg */
1364 /* ansi is ok here */
1365 name
= HeapAlloc(GetProcessHeap(),0,256*sizeof(WCHAR
));
1366 if (GetDlgItemTextW(hDlg
, comboID
, name
, 255))
1367 PRINTDLG_ChangePrinterW(hDlg
, name
, PrintStructures
);
1368 HeapFree(GetProcessHeap(),0,name
);
1370 /* else use default printer */
1372 DWORD dwBufLen
= sizeof(name
) / sizeof(WCHAR
);
1373 BOOL ret
= GetDefaultPrinterW(name
, &dwBufLen
);
1376 PRINTDLG_ChangePrinterW(hDlg
, name
, PrintStructures
);
1378 FIXME("No default printer found, expect problems!\n");
1383 /***********************************************************************
1384 * PRINTDLG_WMCommand [internal]
1386 LRESULT
PRINTDLG_WMCommandA(HWND hDlg
, WPARAM wParam
,
1387 LPARAM lParam
, PRINT_PTRA
* PrintStructures
)
1389 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
1390 UINT PrinterComboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1391 LPDEVMODEA lpdm
= PrintStructures
->lpDevMode
;
1393 switch (LOWORD(wParam
)) {
1395 TRACE(" OK button was hit\n");
1396 if (!PRINTDLG_UpdatePrintDlgA(hDlg
, PrintStructures
)) {
1397 FIXME("Update printdlg was not successful!\n");
1400 EndDialog(hDlg
, TRUE
);
1404 TRACE(" CANCEL button was hit\n");
1405 EndDialog(hDlg
, FALSE
);
1409 TRACE(" HELP button was hit\n");
1410 SendMessageA(lppd
->hwndOwner
, PrintStructures
->HelpMessageID
,
1411 (WPARAM
) hDlg
, (LPARAM
) lppd
);
1414 case chx2
: /* collate pages checkbox */
1415 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
1416 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1417 (LPARAM
)PrintStructures
->hCollateIcon
);
1419 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1420 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1422 case edt1
: /* from page nr editbox */
1423 case edt2
: /* to page nr editbox */
1424 if (HIWORD(wParam
)==EN_CHANGE
) {
1427 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
1428 nToPage
= GetDlgItemInt(hDlg
, edt2
, NULL
, FALSE
);
1429 if (nFromPage
!= lppd
->nFromPage
|| nToPage
!= lppd
->nToPage
)
1430 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
1435 if(HIWORD(wParam
) == EN_CHANGE
) {
1436 INT copies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
1438 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
1440 EnableWindow(GetDlgItem(hDlg
, chx2
), TRUE
);
1445 case psh1
: /* Print Setup */
1449 if (!PrintStructures
->dlg
.lpPrintDlg16
) {
1450 FIXME("The 32bit print dialog does not have this button!?\n");
1454 memcpy(&pdlg
,PrintStructures
->dlg
.lpPrintDlg16
,sizeof(pdlg
));
1455 pdlg
.Flags
|= PD_PRINTSETUP
;
1456 pdlg
.hwndOwner
= HWND_16(hDlg
);
1457 if (!PrintDlg16(&pdlg
))
1462 case psh2
: /* Properties button */
1465 char PrinterName
[256];
1467 GetDlgItemTextA(hDlg
, PrinterComboID
, PrinterName
, 255);
1468 if (!OpenPrinterA(PrinterName
, &hPrinter
, NULL
)) {
1469 FIXME(" Call to OpenPrinter did not succeed!\n");
1472 DocumentPropertiesA(hDlg
, hPrinter
, PrinterName
,
1473 PrintStructures
->lpDevMode
,
1474 PrintStructures
->lpDevMode
,
1475 DM_IN_BUFFER
| DM_OUT_BUFFER
| DM_IN_PROMPT
);
1476 ClosePrinter(hPrinter
);
1480 case rad1
: /* Paperorientation */
1481 if (lppd
->Flags
& PD_PRINTSETUP
)
1483 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1484 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1485 (LPARAM
)(PrintStructures
->hPortraitIcon
));
1489 case rad2
: /* Paperorientation */
1490 if (lppd
->Flags
& PD_PRINTSETUP
)
1492 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1493 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1494 (LPARAM
)(PrintStructures
->hLandscapeIcon
));
1498 case cmb1
: /* Printer Combobox in PRINT SETUP, quality combobox in PRINT */
1499 if (PrinterComboID
!= LOWORD(wParam
)) {
1500 FIXME("No handling for print quality combo box yet.\n");
1504 case cmb4
: /* Printer combobox */
1505 if (HIWORD(wParam
)==CBN_SELCHANGE
) {
1506 char PrinterName
[256];
1507 GetDlgItemTextA(hDlg
, LOWORD(wParam
), PrinterName
, 255);
1508 PRINTDLG_ChangePrinterA(hDlg
, PrinterName
, PrintStructures
);
1512 case cmb2
: /* Papersize */
1514 DWORD Sel
= SendDlgItemMessageA(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0);
1516 lpdm
->u1
.s1
.dmPaperSize
= SendDlgItemMessageA(hDlg
, cmb2
,
1522 case cmb3
: /* Bin */
1524 DWORD Sel
= SendDlgItemMessageA(hDlg
, cmb3
, CB_GETCURSEL
, 0, 0);
1526 lpdm
->dmDefaultSource
= SendDlgItemMessageA(hDlg
, cmb3
,
1527 CB_GETITEMDATA
, Sel
,
1532 if(lppd
->Flags
& PD_PRINTSETUP
) {
1533 switch (LOWORD(wParam
)) {
1534 case rad1
: /* orientation */
1536 if (IsDlgButtonChecked(hDlg
, rad1
) == BST_CHECKED
) {
1537 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_PORTRAIT
) {
1538 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1539 SendDlgItemMessageA(hDlg
, stc10
, STM_SETIMAGE
,
1541 (LPARAM
)PrintStructures
->hPortraitIcon
);
1542 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
,
1544 (LPARAM
)PrintStructures
->hPortraitIcon
);
1547 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_LANDSCAPE
) {
1548 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1549 SendDlgItemMessageA(hDlg
, stc10
, STM_SETIMAGE
,
1551 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1552 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
,
1554 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1563 static LRESULT
PRINTDLG_WMCommandW(HWND hDlg
, WPARAM wParam
,
1564 LPARAM lParam
, PRINT_PTRW
* PrintStructures
)
1566 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
1567 UINT PrinterComboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1568 LPDEVMODEW lpdm
= PrintStructures
->lpDevMode
;
1570 switch (LOWORD(wParam
)) {
1572 TRACE(" OK button was hit\n");
1573 if (!PRINTDLG_UpdatePrintDlgW(hDlg
, PrintStructures
)) {
1574 FIXME("Update printdlg was not successful!\n");
1577 EndDialog(hDlg
, TRUE
);
1581 TRACE(" CANCEL button was hit\n");
1582 EndDialog(hDlg
, FALSE
);
1586 TRACE(" HELP button was hit\n");
1587 SendMessageW(lppd
->hwndOwner
, PrintStructures
->HelpMessageID
,
1588 (WPARAM
) hDlg
, (LPARAM
) lppd
);
1591 case chx2
: /* collate pages checkbox */
1592 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
1593 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1594 (LPARAM
)PrintStructures
->hCollateIcon
);
1596 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1597 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1599 case edt1
: /* from page nr editbox */
1600 case edt2
: /* to page nr editbox */
1601 if (HIWORD(wParam
)==EN_CHANGE
) {
1604 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
1605 nToPage
= GetDlgItemInt(hDlg
, edt2
, NULL
, FALSE
);
1606 if (nFromPage
!= lppd
->nFromPage
|| nToPage
!= lppd
->nToPage
)
1607 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
1612 if(HIWORD(wParam
) == EN_CHANGE
) {
1613 INT copies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
1615 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
1617 EnableWindow(GetDlgItem(hDlg
, chx2
), TRUE
);
1621 case psh1
: /* Print Setup */
1623 ERR("psh1 is called from 16bit code only, we should not get here.\n");
1626 case psh2
: /* Properties button */
1629 WCHAR PrinterName
[256];
1631 if (!GetDlgItemTextW(hDlg
, PrinterComboID
, PrinterName
, 255)) break;
1632 if (!OpenPrinterW(PrinterName
, &hPrinter
, NULL
)) {
1633 FIXME(" Call to OpenPrinter did not succeed!\n");
1636 DocumentPropertiesW(hDlg
, hPrinter
, PrinterName
,
1637 PrintStructures
->lpDevMode
,
1638 PrintStructures
->lpDevMode
,
1639 DM_IN_BUFFER
| DM_OUT_BUFFER
| DM_IN_PROMPT
);
1640 ClosePrinter(hPrinter
);
1644 case rad1
: /* Paperorientation */
1645 if (lppd
->Flags
& PD_PRINTSETUP
)
1647 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1648 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1649 (LPARAM
)(PrintStructures
->hPortraitIcon
));
1653 case rad2
: /* Paperorientation */
1654 if (lppd
->Flags
& PD_PRINTSETUP
)
1656 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1657 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, (WPARAM
) IMAGE_ICON
,
1658 (LPARAM
)(PrintStructures
->hLandscapeIcon
));
1662 case cmb1
: /* Printer Combobox in PRINT SETUP, quality combobox in PRINT */
1663 if (PrinterComboID
!= LOWORD(wParam
)) {
1664 FIXME("No handling for print quality combo box yet.\n");
1668 case cmb4
: /* Printer combobox */
1669 if (HIWORD(wParam
)==CBN_SELCHANGE
) {
1670 WCHAR PrinterName
[256];
1671 GetDlgItemTextW(hDlg
, LOWORD(wParam
), PrinterName
, 255);
1672 PRINTDLG_ChangePrinterW(hDlg
, PrinterName
, PrintStructures
);
1676 case cmb2
: /* Papersize */
1678 DWORD Sel
= SendDlgItemMessageW(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0);
1680 lpdm
->u1
.s1
.dmPaperSize
= SendDlgItemMessageW(hDlg
, cmb2
,
1686 case cmb3
: /* Bin */
1688 DWORD Sel
= SendDlgItemMessageW(hDlg
, cmb3
, CB_GETCURSEL
, 0, 0);
1690 lpdm
->dmDefaultSource
= SendDlgItemMessageW(hDlg
, cmb3
,
1691 CB_GETITEMDATA
, Sel
,
1696 if(lppd
->Flags
& PD_PRINTSETUP
) {
1697 switch (LOWORD(wParam
)) {
1698 case rad1
: /* orientation */
1700 if (IsDlgButtonChecked(hDlg
, rad1
) == BST_CHECKED
) {
1701 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_PORTRAIT
) {
1702 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1703 SendDlgItemMessageW(hDlg
, stc10
, STM_SETIMAGE
,
1705 (LPARAM
)PrintStructures
->hPortraitIcon
);
1706 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
,
1708 (LPARAM
)PrintStructures
->hPortraitIcon
);
1711 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_LANDSCAPE
) {
1712 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1713 SendDlgItemMessageW(hDlg
, stc10
, STM_SETIMAGE
,
1715 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1716 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
,
1718 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1727 /***********************************************************************
1728 * PrintDlgProcA [internal]
1730 static INT_PTR CALLBACK
PrintDlgProcA(HWND hDlg
, UINT uMsg
, WPARAM wParam
,
1733 PRINT_PTRA
* PrintStructures
;
1734 INT_PTR res
= FALSE
;
1736 if (uMsg
!=WM_INITDIALOG
) {
1737 PrintStructures
= (PRINT_PTRA
*)GetPropA(hDlg
,"__WINE_PRINTDLGDATA");
1738 if (!PrintStructures
)
1741 PrintStructures
= (PRINT_PTRA
*) lParam
;
1742 SetPropA(hDlg
,"__WINE_PRINTDLGDATA",PrintStructures
);
1743 res
= PRINTDLG_WMInitDialog(hDlg
, wParam
, PrintStructures
);
1745 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
)
1746 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(
1747 hDlg
, uMsg
, wParam
, (LPARAM
)PrintStructures
->lpPrintDlg
1752 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
) {
1753 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(hDlg
,uMsg
,wParam
,
1760 return PRINTDLG_WMCommandA(hDlg
, wParam
, lParam
, PrintStructures
);
1763 DestroyIcon(PrintStructures
->hCollateIcon
);
1764 DestroyIcon(PrintStructures
->hNoCollateIcon
);
1765 DestroyIcon(PrintStructures
->hPortraitIcon
);
1766 DestroyIcon(PrintStructures
->hLandscapeIcon
);
1767 if(PrintStructures
->hwndUpDown
)
1768 DestroyWindow(PrintStructures
->hwndUpDown
);
1774 static INT_PTR CALLBACK
PrintDlgProcW(HWND hDlg
, UINT uMsg
, WPARAM wParam
,
1777 static const WCHAR propW
[] = {'_','_','W','I','N','E','_','P','R','I','N','T','D','L','G','D','A','T','A',0};
1778 PRINT_PTRW
* PrintStructures
;
1779 INT_PTR res
= FALSE
;
1781 if (uMsg
!=WM_INITDIALOG
) {
1782 PrintStructures
= (PRINT_PTRW
*) GetPropW(hDlg
, propW
);
1783 if (!PrintStructures
)
1786 PrintStructures
= (PRINT_PTRW
*) lParam
;
1787 SetPropW(hDlg
, propW
, PrintStructures
);
1788 res
= PRINTDLG_WMInitDialogW(hDlg
, wParam
, PrintStructures
);
1790 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
)
1791 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(hDlg
, uMsg
, wParam
, (LPARAM
)PrintStructures
->lpPrintDlg
);
1795 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
) {
1796 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(hDlg
,uMsg
,wParam
, lParam
);
1802 return PRINTDLG_WMCommandW(hDlg
, wParam
, lParam
, PrintStructures
);
1805 DestroyIcon(PrintStructures
->hCollateIcon
);
1806 DestroyIcon(PrintStructures
->hNoCollateIcon
);
1807 DestroyIcon(PrintStructures
->hPortraitIcon
);
1808 DestroyIcon(PrintStructures
->hLandscapeIcon
);
1809 if(PrintStructures
->hwndUpDown
)
1810 DestroyWindow(PrintStructures
->hwndUpDown
);
1816 /************************************************************
1818 * PRINTDLG_GetDlgTemplate
1821 static HGLOBAL
PRINTDLG_GetDlgTemplateA(PRINTDLGA
*lppd
)
1826 if (lppd
->Flags
& PD_PRINTSETUP
) {
1827 if(lppd
->Flags
& PD_ENABLESETUPTEMPLATEHANDLE
) {
1828 hDlgTmpl
= lppd
->hSetupTemplate
;
1829 } else if(lppd
->Flags
& PD_ENABLESETUPTEMPLATE
) {
1830 hResInfo
= FindResourceA(lppd
->hInstance
,
1831 lppd
->lpSetupTemplateName
, (LPSTR
)RT_DIALOG
);
1832 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1834 hResInfo
= FindResourceA(COMDLG32_hInstance
, "PRINT32_SETUP",
1836 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1839 if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATEHANDLE
) {
1840 hDlgTmpl
= lppd
->hPrintTemplate
;
1841 } else if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATE
) {
1842 hResInfo
= FindResourceA(lppd
->hInstance
,
1843 lppd
->lpPrintTemplateName
,
1845 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1847 hResInfo
= FindResourceA(COMDLG32_hInstance
, "PRINT32",
1849 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1855 static HGLOBAL
PRINTDLG_GetDlgTemplateW(PRINTDLGW
*lppd
)
1859 static const WCHAR xpsetup
[] = { 'P','R','I','N','T','3','2','_','S','E','T','U','P',0};
1860 static const WCHAR xprint
[] = { 'P','R','I','N','T','3','2',0};
1862 if (lppd
->Flags
& PD_PRINTSETUP
) {
1863 if(lppd
->Flags
& PD_ENABLESETUPTEMPLATEHANDLE
) {
1864 hDlgTmpl
= lppd
->hSetupTemplate
;
1865 } else if(lppd
->Flags
& PD_ENABLESETUPTEMPLATE
) {
1866 hResInfo
= FindResourceW(lppd
->hInstance
,
1867 lppd
->lpSetupTemplateName
, (LPWSTR
)RT_DIALOG
);
1868 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1870 hResInfo
= FindResourceW(COMDLG32_hInstance
, xpsetup
, (LPWSTR
)RT_DIALOG
);
1871 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1874 if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATEHANDLE
) {
1875 hDlgTmpl
= lppd
->hPrintTemplate
;
1876 } else if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATE
) {
1877 hResInfo
= FindResourceW(lppd
->hInstance
,
1878 lppd
->lpPrintTemplateName
,
1880 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1882 hResInfo
= FindResourceW(COMDLG32_hInstance
, xprint
, (LPWSTR
)RT_DIALOG
);
1883 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1889 /***********************************************************************
1894 static BOOL
PRINTDLG_CreateDCA(LPPRINTDLGA lppd
)
1896 DEVNAMES
*pdn
= GlobalLock(lppd
->hDevNames
);
1897 DEVMODEA
*pdm
= GlobalLock(lppd
->hDevMode
);
1899 if(lppd
->Flags
& PD_RETURNDC
) {
1900 lppd
->hDC
= CreateDCA((char*)pdn
+ pdn
->wDriverOffset
,
1901 (char*)pdn
+ pdn
->wDeviceOffset
,
1902 (char*)pdn
+ pdn
->wOutputOffset
,
1904 } else if(lppd
->Flags
& PD_RETURNIC
) {
1905 lppd
->hDC
= CreateICA((char*)pdn
+ pdn
->wDriverOffset
,
1906 (char*)pdn
+ pdn
->wDeviceOffset
,
1907 (char*)pdn
+ pdn
->wOutputOffset
,
1910 GlobalUnlock(lppd
->hDevNames
);
1911 GlobalUnlock(lppd
->hDevMode
);
1912 return lppd
->hDC
? TRUE
: FALSE
;
1915 static BOOL
PRINTDLG_CreateDCW(LPPRINTDLGW lppd
)
1917 DEVNAMES
*pdn
= GlobalLock(lppd
->hDevNames
);
1918 DEVMODEW
*pdm
= GlobalLock(lppd
->hDevMode
);
1920 if(lppd
->Flags
& PD_RETURNDC
) {
1921 lppd
->hDC
= CreateDCW((WCHAR
*)pdn
+ pdn
->wDriverOffset
,
1922 (WCHAR
*)pdn
+ pdn
->wDeviceOffset
,
1923 (WCHAR
*)pdn
+ pdn
->wOutputOffset
,
1925 } else if(lppd
->Flags
& PD_RETURNIC
) {
1926 lppd
->hDC
= CreateICW((WCHAR
*)pdn
+ pdn
->wDriverOffset
,
1927 (WCHAR
*)pdn
+ pdn
->wDeviceOffset
,
1928 (WCHAR
*)pdn
+ pdn
->wOutputOffset
,
1931 GlobalUnlock(lppd
->hDevNames
);
1932 GlobalUnlock(lppd
->hDevMode
);
1933 return lppd
->hDC
? TRUE
: FALSE
;
1936 /***********************************************************************
1937 * PrintDlgA (COMDLG32.@)
1939 * Displays the the PRINT dialog box, which enables the user to specify
1940 * specific properties of the print job.
1943 * lppd [IO] ptr to PRINTDLG32 struct
1946 * nonzero if the user pressed the OK button
1947 * zero if the user cancelled the window or an error occurred
1951 * * The Collate Icons do not display, even though they are in the code.
1952 * * The Properties Button(s) should call DocumentPropertiesA().
1955 BOOL WINAPI
PrintDlgA(LPPRINTDLGA lppd
)
1959 HINSTANCE hInst
= (HINSTANCE
)GetWindowLongPtrA( lppd
->hwndOwner
, GWLP_HINSTANCE
);
1961 if(TRACE_ON(commdlg
)) {
1962 char flagstr
[1000] = "";
1963 struct pd_flags
*pflag
= pd_flags
;
1964 for( ; pflag
->name
; pflag
++) {
1965 if(lppd
->Flags
& pflag
->flag
)
1966 strcat(flagstr
, pflag
->name
);
1968 TRACE("(%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
1969 "pp. %d-%d, min p %d, max p %d, copies %d, hinst %p\n"
1970 "flags %08lx (%s)\n",
1971 lppd
, lppd
->hwndOwner
, lppd
->hDevMode
, lppd
->hDevNames
,
1972 lppd
->nFromPage
, lppd
->nToPage
, lppd
->nMinPage
, lppd
->nMaxPage
,
1973 lppd
->nCopies
, lppd
->hInstance
, lppd
->Flags
, flagstr
);
1976 if(lppd
->lStructSize
!= sizeof(PRINTDLGA
)) {
1977 WARN("structure size failure !!!\n");
1978 COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE
);
1982 if(lppd
->Flags
& PD_RETURNDEFAULT
) {
1983 PRINTER_INFO_2A
*pbuf
;
1984 DRIVER_INFO_3A
*dbuf
;
1988 if(lppd
->hDevMode
|| lppd
->hDevNames
) {
1989 WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
1990 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
1993 if(!PRINTDLG_OpenDefaultPrinter(&hprn
)) {
1994 WARN("Can't find default printer\n");
1995 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
1999 GetPrinterA(hprn
, 2, NULL
, 0, &needed
);
2000 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
2001 GetPrinterA(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
2003 GetPrinterDriverA(hprn
, NULL
, 3, NULL
, 0, &needed
);
2004 dbuf
= HeapAlloc(GetProcessHeap(),0,needed
);
2005 if (!GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
)) {
2006 ERR("GetPrinterDriverA failed, le %ld, fix your config for printer %s!\n",GetLastError(),pbuf
->pPrinterName
);
2007 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2012 PRINTDLG_CreateDevNames(&(lppd
->hDevNames
),
2016 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, pbuf
->pDevMode
->dmSize
+
2017 pbuf
->pDevMode
->dmDriverExtra
);
2018 ptr
= GlobalLock(lppd
->hDevMode
);
2019 memcpy(ptr
, pbuf
->pDevMode
, pbuf
->pDevMode
->dmSize
+
2020 pbuf
->pDevMode
->dmDriverExtra
);
2021 GlobalUnlock(lppd
->hDevMode
);
2022 HeapFree(GetProcessHeap(), 0, pbuf
);
2023 HeapFree(GetProcessHeap(), 0, dbuf
);
2027 PRINT_PTRA
*PrintStructures
;
2029 /* load Dialog resources,
2030 * depending on Flags indicates Print32 or Print32_setup dialog
2032 hDlgTmpl
= PRINTDLG_GetDlgTemplateA(lppd
);
2034 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2037 ptr
= LockResource( hDlgTmpl
);
2039 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2043 PrintStructures
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2044 sizeof(PRINT_PTRA
));
2045 PrintStructures
->lpPrintDlg
= lppd
;
2047 /* and create & process the dialog .
2048 * -1 is failure, 0 is broken hwnd, everything else is ok.
2050 bRet
= (0<DialogBoxIndirectParamA(hInst
, ptr
, lppd
->hwndOwner
,
2052 (LPARAM
)PrintStructures
));
2055 DEVMODEA
*lpdm
= PrintStructures
->lpDevMode
, *lpdmReturn
;
2056 PRINTER_INFO_2A
*pi
= PrintStructures
->lpPrinterInfo
;
2057 DRIVER_INFO_3A
*di
= PrintStructures
->lpDriverInfo
;
2059 if (lppd
->hDevMode
== 0) {
2060 TRACE(" No hDevMode yet... Need to create my own\n");
2061 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
,
2062 lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2065 if((locks
= (GlobalFlags(lppd
->hDevMode
) & GMEM_LOCKCOUNT
))) {
2066 WARN("hDevMode has %d locks on it. Unlocking it now\n", locks
);
2068 GlobalUnlock(lppd
->hDevMode
);
2069 TRACE("Now got %d locks\n", locks
);
2072 lppd
->hDevMode
= GlobalReAlloc(lppd
->hDevMode
,
2073 lpdm
->dmSize
+ lpdm
->dmDriverExtra
,
2076 lpdmReturn
= GlobalLock(lppd
->hDevMode
);
2077 memcpy(lpdmReturn
, lpdm
, lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2079 if (lppd
->hDevNames
!= 0) {
2081 if((locks
= (GlobalFlags(lppd
->hDevNames
) & GMEM_LOCKCOUNT
))) {
2082 WARN("hDevNames has %d locks on it. Unlocking it now\n", locks
);
2084 GlobalUnlock(lppd
->hDevNames
);
2087 PRINTDLG_CreateDevNames(&(lppd
->hDevNames
),
2092 GlobalUnlock(lppd
->hDevMode
);
2094 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
2095 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpPrinterInfo
);
2096 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDriverInfo
);
2097 HeapFree(GetProcessHeap(), 0, PrintStructures
);
2099 if(bRet
&& (lppd
->Flags
& PD_RETURNDC
|| lppd
->Flags
& PD_RETURNIC
))
2100 bRet
= PRINTDLG_CreateDCA(lppd
);
2102 TRACE("exit! (%d)\n", bRet
);
2106 /***********************************************************************
2107 * PrintDlgW (COMDLG32.@)
2109 BOOL WINAPI
PrintDlgW(
2110 LPPRINTDLGW lppd
/* [in/out] ptr to PRINTDLG32 struct */
2115 HINSTANCE hInst
= (HINSTANCE
)GetWindowLongPtrW( lppd
->hwndOwner
, GWLP_HINSTANCE
);
2117 if(TRACE_ON(commdlg
)) {
2118 char flagstr
[1000] = "";
2119 struct pd_flags
*pflag
= pd_flags
;
2120 for( ; pflag
->name
; pflag
++) {
2121 if(lppd
->Flags
& pflag
->flag
)
2122 strcat(flagstr
, pflag
->name
);
2124 TRACE("(%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
2125 "pp. %d-%d, min p %d, max p %d, copies %d, hinst %p\n"
2126 "flags %08lx (%s)\n",
2127 lppd
, lppd
->hwndOwner
, lppd
->hDevMode
, lppd
->hDevNames
,
2128 lppd
->nFromPage
, lppd
->nToPage
, lppd
->nMinPage
, lppd
->nMaxPage
,
2129 lppd
->nCopies
, lppd
->hInstance
, lppd
->Flags
, flagstr
);
2132 if(lppd
->lStructSize
!= sizeof(PRINTDLGW
)) {
2133 WARN("structure size failure !!!\n");
2134 COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE
);
2138 if(lppd
->Flags
& PD_RETURNDEFAULT
) {
2139 PRINTER_INFO_2W
*pbuf
;
2140 DRIVER_INFO_3W
*dbuf
;
2144 if(lppd
->hDevMode
|| lppd
->hDevNames
) {
2145 WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
2146 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2149 if(!PRINTDLG_OpenDefaultPrinter(&hprn
)) {
2150 WARN("Can't find default printer\n");
2151 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
2155 GetPrinterW(hprn
, 2, NULL
, 0, &needed
);
2156 pbuf
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
)*needed
);
2157 GetPrinterW(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
2159 GetPrinterDriverW(hprn
, NULL
, 3, NULL
, 0, &needed
);
2160 dbuf
= HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR
)*needed
);
2161 if (!GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
)) {
2162 ERR("GetPrinterDriverA failed, le %ld, fix your config for printer %s!\n",GetLastError(),debugstr_w(pbuf
->pPrinterName
));
2163 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2168 PRINTDLG_CreateDevNamesW(&(lppd
->hDevNames
),
2172 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, pbuf
->pDevMode
->dmSize
+
2173 pbuf
->pDevMode
->dmDriverExtra
);
2174 ptr
= GlobalLock(lppd
->hDevMode
);
2175 memcpy(ptr
, pbuf
->pDevMode
, pbuf
->pDevMode
->dmSize
+
2176 pbuf
->pDevMode
->dmDriverExtra
);
2177 GlobalUnlock(lppd
->hDevMode
);
2178 HeapFree(GetProcessHeap(), 0, pbuf
);
2179 HeapFree(GetProcessHeap(), 0, dbuf
);
2183 PRINT_PTRW
*PrintStructures
;
2185 /* load Dialog resources,
2186 * depending on Flags indicates Print32 or Print32_setup dialog
2188 hDlgTmpl
= PRINTDLG_GetDlgTemplateW(lppd
);
2190 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2193 ptr
= LockResource( hDlgTmpl
);
2195 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2199 PrintStructures
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2200 sizeof(PRINT_PTRW
));
2201 PrintStructures
->lpPrintDlg
= lppd
;
2203 /* and create & process the dialog .
2204 * -1 is failure, 0 is broken hwnd, everything else is ok.
2206 bRet
= (0<DialogBoxIndirectParamW(hInst
, ptr
, lppd
->hwndOwner
,
2208 (LPARAM
)PrintStructures
));
2211 DEVMODEW
*lpdm
= PrintStructures
->lpDevMode
, *lpdmReturn
;
2212 PRINTER_INFO_2W
*pi
= PrintStructures
->lpPrinterInfo
;
2213 DRIVER_INFO_3W
*di
= PrintStructures
->lpDriverInfo
;
2215 if (lppd
->hDevMode
== 0) {
2216 TRACE(" No hDevMode yet... Need to create my own\n");
2217 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
,
2218 lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2221 if((locks
= (GlobalFlags(lppd
->hDevMode
) & GMEM_LOCKCOUNT
))) {
2222 WARN("hDevMode has %d locks on it. Unlocking it now\n", locks
);
2224 GlobalUnlock(lppd
->hDevMode
);
2225 TRACE("Now got %d locks\n", locks
);
2228 lppd
->hDevMode
= GlobalReAlloc(lppd
->hDevMode
,
2229 lpdm
->dmSize
+ lpdm
->dmDriverExtra
,
2232 lpdmReturn
= GlobalLock(lppd
->hDevMode
);
2233 memcpy(lpdmReturn
, lpdm
, lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2235 if (lppd
->hDevNames
!= 0) {
2237 if((locks
= (GlobalFlags(lppd
->hDevNames
) & GMEM_LOCKCOUNT
))) {
2238 WARN("hDevNames has %d locks on it. Unlocking it now\n", locks
);
2240 GlobalUnlock(lppd
->hDevNames
);
2243 PRINTDLG_CreateDevNamesW(&(lppd
->hDevNames
),
2248 GlobalUnlock(lppd
->hDevMode
);
2250 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
2251 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpPrinterInfo
);
2252 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDriverInfo
);
2253 HeapFree(GetProcessHeap(), 0, PrintStructures
);
2255 if(bRet
&& (lppd
->Flags
& PD_RETURNDC
|| lppd
->Flags
& PD_RETURNIC
))
2256 bRet
= PRINTDLG_CreateDCW(lppd
);
2258 TRACE("exit! (%d)\n", bRet
);
2262 /***********************************************************************
2267 * cmb1 - printer select (not in standart dialog template)
2269 * cmb3 - source (tray?)
2270 * edt4 - border left
2272 * edt6 - border right
2273 * edt7 - border bottom
2274 * psh3 - "Printer..."
2278 LPPAGESETUPDLGA dlga
; /* Handler to user defined struct */
2280 HWND hDlg
; /* Page Setup dialog handler */
2281 PAGESETUPDLGA curdlg
; /* Struct means cerrent dialog state */
2282 RECT rtDrawRect
; /* Drawing rect for page */
2286 LPPAGESETUPDLGW dlga
;
2291 static HGLOBAL
PRINTDLG_GetPGSTemplateA(PAGESETUPDLGA
*lppd
)
2296 if(lppd
->Flags
& PSD_ENABLEPAGESETUPTEMPLATEHANDLE
) {
2297 hDlgTmpl
= lppd
->hPageSetupTemplate
;
2298 } else if(lppd
->Flags
& PSD_ENABLEPAGESETUPTEMPLATE
) {
2299 hResInfo
= FindResourceA(lppd
->hInstance
,
2300 lppd
->lpPageSetupTemplateName
, (LPSTR
)RT_DIALOG
);
2301 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
2303 hResInfo
= FindResourceA(COMDLG32_hInstance
,(LPCSTR
)PAGESETUPDLGORD
,(LPSTR
)RT_DIALOG
);
2304 hDlgTmpl
= LoadResource(COMDLG32_hInstance
,hResInfo
);
2309 static HGLOBAL
PRINTDLG_GetPGSTemplateW(PAGESETUPDLGW
*lppd
)
2314 if(lppd
->Flags
& PSD_ENABLEPAGESETUPTEMPLATEHANDLE
) {
2315 hDlgTmpl
= lppd
->hPageSetupTemplate
;
2316 } else if(lppd
->Flags
& PSD_ENABLEPAGESETUPTEMPLATE
) {
2317 hResInfo
= FindResourceW(lppd
->hInstance
,
2318 lppd
->lpPageSetupTemplateName
, (LPWSTR
)RT_DIALOG
);
2319 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
2321 hResInfo
= FindResourceW(COMDLG32_hInstance
,(LPCWSTR
)PAGESETUPDLGORD
,(LPWSTR
)RT_DIALOG
);
2322 hDlgTmpl
= LoadResource(COMDLG32_hInstance
,hResInfo
);
2328 _c_10mm2size(PAGESETUPDLGA
*dlga
,DWORD size
) {
2329 if (dlga
->Flags
& PSD_INTHOUSANDTHSOFINCHES
)
2330 return 10*size
*100/254;
2331 /* If we don't have a flag, we can choose one. Use millimeters
2332 * to avoid confusing me
2334 dlga
->Flags
|= PSD_INHUNDREDTHSOFMILLIMETERS
;
2340 _c_inch2size(PAGESETUPDLGA
*dlga
,DWORD size
) {
2341 if (dlga
->Flags
& PSD_INTHOUSANDTHSOFINCHES
)
2343 if (dlga
->Flags
& PSD_INHUNDREDTHSOFMILLIMETERS
)
2344 return (size
*254)/100;
2345 /* if we don't have a flag, we can choose one. Use millimeters
2346 * to avoid confusing me
2348 dlga
->Flags
|= PSD_INHUNDREDTHSOFMILLIMETERS
;
2349 return (size
*254)/100;
2353 _c_size2strA(PageSetupDataA
*pda
,DWORD size
,LPSTR strout
) {
2354 strcpy(strout
,"<undef>");
2355 if (pda
->dlga
->Flags
& PSD_INHUNDREDTHSOFMILLIMETERS
) {
2356 sprintf(strout
,"%ld",(size
)/100);
2359 if (pda
->dlga
->Flags
& PSD_INTHOUSANDTHSOFINCHES
) {
2360 sprintf(strout
,"%ldin",(size
)/1000);
2363 pda
->dlga
->Flags
|= PSD_INHUNDREDTHSOFMILLIMETERS
;
2364 sprintf(strout
,"%ld",(size
)/100);
2368 _c_size2strW(PageSetupDataW
*pda
,DWORD size
,LPWSTR strout
) {
2369 const static WCHAR UNDEF
[] = { '<', 'u', 'n', 'd', 'e', 'f', '>', 0 };
2370 const static WCHAR mm_fmt
[] = { '%', '.', '2', 'f', 'm', 'm', 0 };
2371 const static WCHAR in_fmt
[] = { '%', '.', '2', 'f', 'i', 'n', 0 };
2372 lstrcpyW(strout
, UNDEF
);
2373 if (pda
->dlga
->Flags
& PSD_INHUNDREDTHSOFMILLIMETERS
) {
2374 wsprintfW(strout
,mm_fmt
,(size
*1.0)/100.0);
2377 if (pda
->dlga
->Flags
& PSD_INTHOUSANDTHSOFINCHES
) {
2378 wsprintfW(strout
,in_fmt
,(size
*1.0)/1000.0);
2381 pda
->dlga
->Flags
|= PSD_INHUNDREDTHSOFMILLIMETERS
;
2382 wsprintfW(strout
,mm_fmt
,(size
*1.0)/100.0);
2387 _c_str2sizeA(PAGESETUPDLGA
*dlga
,LPCSTR strin
) {
2392 if (!sscanf(strin
,"%f%s",&val
,rest
))
2395 if (!strcmp(rest
,"in") || !strcmp(rest
,"inch")) {
2396 if (dlga
->Flags
& PSD_INTHOUSANDTHSOFINCHES
)
2399 return val
*25.4*100;
2401 if (!strcmp(rest
,"cm")) { rest
[0]='m'; val
= val
*10.0; }
2402 if (!strcmp(rest
,"m")) { strcpy(rest
,"mm"); val
= val
*1000.0; }
2404 if (!strcmp(rest
,"mm")) {
2405 if (dlga
->Flags
& PSD_INHUNDREDTHSOFMILLIMETERS
)
2408 return 1000.0*val
/25.4;
2410 if (rest
[0]=='\0') {
2411 /* use application supplied default */
2412 if (dlga
->Flags
& PSD_INHUNDREDTHSOFMILLIMETERS
) {
2416 if (dlga
->Flags
& PSD_INTHOUSANDTHSOFINCHES
) {
2421 ERR("Did not find a conversion for type '%s'!\n",rest
);
2427 _c_str2sizeW(PAGESETUPDLGW
*dlga
, LPCWSTR strin
) {
2430 /* this W -> A transition is OK */
2431 /* we need a unicode version of sscanf to avoid it */
2432 WideCharToMultiByte(CP_ACP
, 0, strin
, -1, buf
, sizeof(buf
), NULL
, NULL
);
2433 return _c_str2sizeA((PAGESETUPDLGA
*)dlga
, buf
);
2437 /****************************************************************************
2438 * PRINTDLG_PS_UpdateDlgStructA
2440 * Updates pda->dlga structure
2441 * Function calls when user presses OK button
2444 * hDlg [in] main window dialog HANDLE
2445 * pda [in/out] ptr to PageSetupDataA structere
2451 PRINTDLG_PS_UpdateDlgStructA(HWND hDlg
, PageSetupDataA
*pda
) {
2456 memcpy(pda
->dlga
, &pda
->curdlg
, sizeof(pda
->curdlg
));
2457 pda
->dlga
->hDevMode
= pda
->pdlg
.hDevMode
;
2458 pda
->dlga
->hDevNames
= pda
->pdlg
.hDevNames
;
2460 dn
= GlobalLock(pda
->pdlg
.hDevNames
);
2461 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2462 if(pda
->curdlg
.ptPaperSize
.x
> pda
->curdlg
.ptPaperSize
.y
)
2463 dm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
2465 dm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
2467 paperword
= SendDlgItemMessageA(hDlg
,cmb2
,CB_GETITEMDATA
,
2468 SendDlgItemMessageA(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0), 0);
2469 if (paperword
!= CB_ERR
)
2470 dm
->u1
.s1
.dmPaperSize
= paperword
;
2472 FIXME("could not get dialog text for papersize cmbbox?\n");
2474 GlobalUnlock(pda
->pdlg
.hDevNames
);
2475 GlobalUnlock(pda
->pdlg
.hDevMode
);
2481 PRINTDLG_PS_UpdateDlgStructW(HWND hDlg
, PageSetupDataW
*pda
) {
2484 LPWSTR devname
,portname
;
2485 WCHAR papername
[64];
2488 dn
= GlobalLock(pda
->pdlg
.hDevNames
);
2489 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2490 devname
= ((WCHAR
*)dn
)+dn
->wDeviceOffset
;
2491 portname
= ((WCHAR
*)dn
)+dn
->wOutputOffset
;
2492 PRINTDLG_SetUpPaperComboBoxW(hDlg
,cmb2
,devname
,portname
,dm
);
2493 PRINTDLG_SetUpPaperComboBoxW(hDlg
,cmb3
,devname
,portname
,dm
);
2495 if (GetDlgItemTextW(hDlg
,cmb2
,papername
,sizeof(papername
))>0) {
2496 PRINTDLG_PaperSizeW(&(pda
->pdlg
),papername
,&(pda
->dlga
->ptPaperSize
));
2497 pda
->dlga
->ptPaperSize
.x
= _c_10mm2size((LPPAGESETUPDLGA
)pda
->dlga
,pda
->dlga
->ptPaperSize
.x
);
2498 pda
->dlga
->ptPaperSize
.y
= _c_10mm2size((LPPAGESETUPDLGA
)pda
->dlga
,pda
->dlga
->ptPaperSize
.y
);
2500 FIXME("could not get dialog text for papersize cmbbox?\n");
2501 #define GETVAL(id,val) if (GetDlgItemTextW(hDlg,id,buf,sizeof(buf)/sizeof(buf[0]))>0) { val = _c_str2sizeW(pda->dlga,buf); } else { FIXME("could not get dlgitemtextw for %x\n",id); }
2502 GETVAL(edt4
,pda
->dlga
->rtMargin
.left
);
2503 GETVAL(edt5
,pda
->dlga
->rtMargin
.top
);
2504 GETVAL(edt6
,pda
->dlga
->rtMargin
.right
);
2505 GETVAL(edt7
,pda
->dlga
->rtMargin
.bottom
);
2508 /* If we are in landscape, swap x and y of page size */
2509 if (IsDlgButtonChecked(hDlg
, rad2
)) {
2511 tmp
= pda
->dlga
->ptPaperSize
.x
;
2512 pda
->dlga
->ptPaperSize
.x
= pda
->dlga
->ptPaperSize
.y
;
2513 pda
->dlga
->ptPaperSize
.y
= tmp
;
2515 GlobalUnlock(pda
->pdlg
.hDevNames
);
2516 GlobalUnlock(pda
->pdlg
.hDevMode
);
2520 /**********************************************************************************************
2521 * PRINTDLG_PS_ChangeActivePrinerA
2523 * Redefines hDevMode and hDevNames HANDLES and initialises it.
2526 * name [in] Name of a printer for activation
2527 * pda [in/out] ptr to PageSetupDataA structure
2534 PRINTDLG_PS_ChangeActivePrinterA(LPSTR name
, PageSetupDataA
*pda
){
2537 LPPRINTER_INFO_2A lpPrinterInfo
;
2538 LPDRIVER_INFO_3A lpDriverInfo
;
2539 DEVMODEA
*pDevMode
, *dm
;
2541 if(!OpenPrinterA(name
, &hprn
, NULL
)){
2542 ERR("Can't open printer %s\n", name
);
2545 GetPrinterA(hprn
, 2, NULL
, 0, &needed
);
2546 lpPrinterInfo
= HeapAlloc(GetProcessHeap(), 0, needed
);
2547 GetPrinterA(hprn
, 2, (LPBYTE
)lpPrinterInfo
, needed
, &needed
);
2548 GetPrinterDriverA(hprn
, NULL
, 3, NULL
, 0, &needed
);
2549 lpDriverInfo
= HeapAlloc(GetProcessHeap(), 0, needed
);
2550 if(!GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)lpDriverInfo
, needed
, &needed
)) {
2551 ERR("GetPrinterDriverA failed for %s, fix your config!\n", lpPrinterInfo
->pPrinterName
);
2556 needed
= DocumentPropertiesA(0, 0, name
, NULL
, NULL
, 0);
2558 ERR("DocumentProperties fails on %s\n", debugstr_a(name
));
2561 pDevMode
= HeapAlloc(GetProcessHeap(), 0, needed
);
2562 DocumentPropertiesA(0, 0, name
, pDevMode
, NULL
, DM_OUT_BUFFER
);
2564 pda
->pdlg
.hDevMode
= GlobalReAlloc(pda
->pdlg
.hDevMode
,
2565 pDevMode
->dmSize
+ pDevMode
->dmDriverExtra
,
2567 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2568 memcpy(dm
, pDevMode
, pDevMode
->dmSize
+ pDevMode
->dmDriverExtra
);
2570 PRINTDLG_CreateDevNames(&(pda
->pdlg
.hDevNames
),
2571 lpDriverInfo
->pDriverPath
,
2572 lpPrinterInfo
->pPrinterName
,
2573 lpPrinterInfo
->pPortName
);
2575 GlobalUnlock(pda
->pdlg
.hDevMode
);
2576 HeapFree(GetProcessHeap(), 0, pDevMode
);
2577 HeapFree(GetProcessHeap(), 0, lpPrinterInfo
);
2578 HeapFree(GetProcessHeap(), 0, lpDriverInfo
);
2582 /****************************************************************************************
2583 * PRINTDLG_PS_ChangePrinterA
2585 * Fills Printers, Paper and Source combo
2591 PRINTDLG_PS_ChangePrinterA(HWND hDlg
, PageSetupDataA
*pda
) {
2594 LPSTR devname
,portname
;
2596 dn
= GlobalLock(pda
->pdlg
.hDevNames
);
2597 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2598 devname
= ((char*)dn
)+dn
->wDeviceOffset
;
2599 portname
= ((char*)dn
)+dn
->wOutputOffset
;
2600 PRINTDLG_SetUpPrinterListComboA(hDlg
, cmb1
, devname
);
2601 PRINTDLG_SetUpPaperComboBoxA(hDlg
,cmb2
,devname
,portname
,dm
);
2602 PRINTDLG_SetUpPaperComboBoxA(hDlg
,cmb3
,devname
,portname
,dm
);
2603 GlobalUnlock(pda
->pdlg
.hDevNames
);
2604 GlobalUnlock(pda
->pdlg
.hDevMode
);
2609 PRINTDLG_PS_ChangePrinterW(HWND hDlg
, PageSetupDataW
*pda
) {
2612 LPWSTR devname
,portname
;
2614 dn
= GlobalLock(pda
->pdlg
.hDevNames
);
2615 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2616 devname
= ((WCHAR
*)dn
)+dn
->wDeviceOffset
;
2617 portname
= ((WCHAR
*)dn
)+dn
->wOutputOffset
;
2618 PRINTDLG_SetUpPaperComboBoxW(hDlg
,cmb2
,devname
,portname
,dm
);
2619 PRINTDLG_SetUpPaperComboBoxW(hDlg
,cmb3
,devname
,portname
,dm
);
2620 GlobalUnlock(pda
->pdlg
.hDevNames
);
2621 GlobalUnlock(pda
->pdlg
.hDevMode
);
2625 /******************************************************************************************
2626 * PRINTDLG_PS_ChangePaperPrev
2628 * Changes paper preview size / position
2631 * pda [i] Pointer for current PageSetupDataA structure
2637 PRINTDLG_PS_ChangePaperPrev(PageSetupDataA
*pda
)
2639 LONG width
, height
, x
, y
;
2642 if(pda
->curdlg
.ptPaperSize
.x
> pda
->curdlg
.ptPaperSize
.y
) {
2643 width
= pda
->rtDrawRect
.right
- pda
->rtDrawRect
.left
;
2644 height
= pda
->curdlg
.ptPaperSize
.y
* width
/ pda
->curdlg
.ptPaperSize
.x
;
2646 height
= pda
->rtDrawRect
.bottom
- pda
->rtDrawRect
.top
;
2647 width
= pda
->curdlg
.ptPaperSize
.x
* height
/ pda
->curdlg
.ptPaperSize
.y
;
2649 x
= (pda
->rtDrawRect
.right
+ pda
->rtDrawRect
.left
- width
) / 2;
2650 y
= (pda
->rtDrawRect
.bottom
+ pda
->rtDrawRect
.top
- height
) / 2;
2651 TRACE("rtDrawRect(%ld, %ld, %ld, %ld) x=%ld, y=%ld, w=%ld, h=%ld",
2652 pda
->rtDrawRect
.left
, pda
->rtDrawRect
.top
, pda
->rtDrawRect
.right
, pda
->rtDrawRect
.bottom
,
2653 x
, y
, width
, height
);
2656 MoveWindow(GetDlgItem(pda
->hDlg
, rct2
), x
+width
, y
+SHADOW
, SHADOW
, height
, FALSE
);
2657 MoveWindow(GetDlgItem(pda
->hDlg
, rct3
), x
+SHADOW
, y
+height
, width
, SHADOW
, FALSE
);
2658 MoveWindow(GetDlgItem(pda
->hDlg
, rct1
), x
, y
, width
, height
, FALSE
);
2659 memcpy(&rtTmp
, &pda
->rtDrawRect
, sizeof(RECT
));
2660 rtTmp
.right
+= SHADOW
;
2661 rtTmp
.bottom
+= SHADOW
;
2664 InvalidateRect(pda
->hDlg
, &rtTmp
, TRUE
);
2668 #define GETVAL(idc,val) \
2669 if(msg == EN_CHANGE){ \
2670 if (GetDlgItemTextA(hDlg,idc,buf,sizeof(buf)) > 0)\
2671 val = _c_str2sizeA(pda->dlga,buf); \
2673 FIXME("could not get dlgitemtexta for %x\n",id); \
2676 /********************************************************************************
2677 * PRINTDLG_PS_WMCommandA
2678 * process WM_COMMAND message for PageSetupDlgA
2681 * hDlg [in] Main dialog HANDLE
2682 * wParam [in] WM_COMMAND wParam
2683 * lParam [in] WM_COMMAND lParam
2684 * pda [in/out] ptr to PageSetupDataA
2688 PRINTDLG_PS_WMCommandA(
2689 HWND hDlg
, WPARAM wParam
, LPARAM lParam
, PageSetupDataA
*pda
2691 WORD msg
= HIWORD(wParam
);
2692 WORD id
= LOWORD(wParam
);
2695 TRACE("loword (lparam) %d, wparam 0x%x, lparam %08lx\n",
2696 LOWORD(lParam
),wParam
,lParam
);
2699 if (!PRINTDLG_PS_UpdateDlgStructA(hDlg
, pda
))
2701 EndDialog(hDlg
, TRUE
);
2705 EndDialog(hDlg
, FALSE
);
2709 pda
->pdlg
.Flags
= 0;
2710 pda
->pdlg
.hwndOwner
= hDlg
;
2711 if (PrintDlgA(&(pda
->pdlg
)))
2712 PRINTDLG_PS_ChangePrinterA(hDlg
,pda
);
2716 if (pda
->curdlg
.ptPaperSize
.x
> pda
->curdlg
.ptPaperSize
.y
){
2717 DWORD tmp
= pda
->curdlg
.ptPaperSize
.x
;
2718 pda
->curdlg
.ptPaperSize
.x
= pda
->curdlg
.ptPaperSize
.y
;
2719 pda
->curdlg
.ptPaperSize
.y
= tmp
;
2721 PRINTDLG_PS_ChangePaperPrev(pda
);
2724 if (pda
->curdlg
.ptPaperSize
.y
> pda
->curdlg
.ptPaperSize
.x
){
2725 DWORD tmp
= pda
->curdlg
.ptPaperSize
.x
;
2726 pda
->curdlg
.ptPaperSize
.x
= pda
->curdlg
.ptPaperSize
.y
;
2727 pda
->curdlg
.ptPaperSize
.y
= tmp
;
2729 PRINTDLG_PS_ChangePaperPrev(pda
);
2731 case cmb1
: /* Printer combo */
2732 if(msg
== CBN_SELCHANGE
){
2733 char crPrinterName
[256];
2734 GetDlgItemTextA(hDlg
, id
, crPrinterName
, 255);
2735 PRINTDLG_PS_ChangeActivePrinterA(crPrinterName
, pda
);
2736 PRINTDLG_PS_ChangePrinterA(hDlg
, pda
);
2739 case cmb2
: /* Paper combo */
2740 if(msg
== CBN_SELCHANGE
){
2741 DWORD paperword
= SendDlgItemMessageA(hDlg
,cmb2
,CB_GETITEMDATA
,
2742 SendDlgItemMessageA(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0), 0);
2743 if (paperword
!= CB_ERR
) {
2744 PRINTDLG_PaperSizeA(&(pda
->pdlg
), paperword
,&(pda
->curdlg
.ptPaperSize
));
2745 pda
->curdlg
.ptPaperSize
.x
= _c_10mm2size(pda
->dlga
,pda
->curdlg
.ptPaperSize
.x
);
2746 pda
->curdlg
.ptPaperSize
.y
= _c_10mm2size(pda
->dlga
,pda
->curdlg
.ptPaperSize
.y
);
2748 if (IsDlgButtonChecked(hDlg
, rad2
)) {
2749 DWORD tmp
= pda
->curdlg
.ptPaperSize
.x
;
2750 pda
->curdlg
.ptPaperSize
.x
= pda
->curdlg
.ptPaperSize
.y
;
2751 pda
->curdlg
.ptPaperSize
.y
= tmp
;
2753 PRINTDLG_PS_ChangePaperPrev(pda
);
2755 FIXME("could not get dialog text for papersize cmbbox?\n");
2759 if(msg
== CBN_SELCHANGE
){
2760 DEVMODEA
*dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2761 dm
->dmDefaultSource
= SendDlgItemMessageA(hDlg
, cmb3
,CB_GETITEMDATA
,
2762 SendDlgItemMessageA(hDlg
, cmb3
, CB_GETCURSEL
, 0, 0), 0);
2763 GlobalUnlock(pda
->pdlg
.hDevMode
);
2766 case psh2
: /* Printer Properties button */
2769 char PrinterName
[256];
2774 GetDlgItemTextA(hDlg
, cmb1
, PrinterName
, 255);
2775 if (!OpenPrinterA(PrinterName
, &hPrinter
, NULL
)) {
2776 FIXME("Call to OpenPrinter did not succeed!\n");
2779 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
2780 DocumentPropertiesA(hDlg
, hPrinter
, PrinterName
, dm
, dm
,
2781 DM_IN_BUFFER
| DM_OUT_BUFFER
| DM_IN_PROMPT
);
2782 ClosePrinter(hPrinter
);
2783 /* Changing paper */
2784 PRINTDLG_PaperSizeA(&(pda
->pdlg
), dm
->u1
.s1
.dmPaperSize
, &(pda
->curdlg
.ptPaperSize
));
2785 pda
->curdlg
.ptPaperSize
.x
= _c_10mm2size(pda
->dlga
, pda
->curdlg
.ptPaperSize
.x
);
2786 pda
->curdlg
.ptPaperSize
.y
= _c_10mm2size(pda
->dlga
, pda
->curdlg
.ptPaperSize
.y
);
2787 if (dm
->u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
){
2788 DWORD tmp
= pda
->curdlg
.ptPaperSize
.x
;
2789 pda
->curdlg
.ptPaperSize
.x
= pda
->curdlg
.ptPaperSize
.y
;
2790 pda
->curdlg
.ptPaperSize
.y
= tmp
;
2791 CheckRadioButton(hDlg
, rad1
, rad2
, rad2
);
2794 CheckRadioButton(hDlg
, rad1
, rad2
, rad1
);
2795 /* Changing paper preview */
2796 PRINTDLG_PS_ChangePaperPrev(pda
);
2797 /* Selecting paper in combo */
2798 count
= SendDlgItemMessageA(hDlg
, cmb2
, CB_GETCOUNT
, 0, 0);
2799 if(count
!= CB_ERR
){
2800 for(i
=0; i
<count
; ++i
){
2801 if(SendDlgItemMessageA(hDlg
, cmb2
, CB_GETITEMDATA
, i
, 0) == dm
->u1
.s1
.dmPaperSize
) {
2802 SendDlgItemMessageA(hDlg
, cmb2
, CB_SETCURSEL
, i
, 0);
2808 GlobalUnlock(pda
->pdlg
.hDevMode
);
2812 GETVAL(id
, pda
->curdlg
.rtMargin
.left
);
2815 GETVAL(id
, pda
->curdlg
.rtMargin
.right
);
2818 GETVAL(id
, pda
->curdlg
.rtMargin
.top
);
2821 GETVAL(id
, pda
->curdlg
.rtMargin
.bottom
);
2824 InvalidateRect(GetDlgItem(hDlg
, rct1
), NULL
, TRUE
);
2830 PRINTDLG_PS_WMCommandW(
2831 HWND hDlg
, WPARAM wParam
, LPARAM lParam
, PageSetupDataW
*pda
2833 TRACE("loword (lparam) %d, wparam 0x%x, lparam %08lx\n",
2834 LOWORD(lParam
),wParam
,lParam
);
2835 switch (LOWORD(wParam
)) {
2837 if (!PRINTDLG_PS_UpdateDlgStructW(hDlg
, pda
))
2839 EndDialog(hDlg
, TRUE
);
2843 EndDialog(hDlg
, FALSE
);
2847 pda
->pdlg
.Flags
= 0;
2848 pda
->pdlg
.hwndOwner
= hDlg
;
2849 if (PrintDlgW(&(pda
->pdlg
)))
2850 PRINTDLG_PS_ChangePrinterW(hDlg
,pda
);
2858 /***********************************************************************
2859 * DefaultPagePaintHook
2860 * Default hook paint procedure that receives WM_PSD_* messages from the dialog box
2861 * whenever the sample page is redrawn.
2865 PRINTDLG_DefaultPagePaintHook(HWND hwndDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, PageSetupDataA
*pda
)
2867 LPRECT lprc
= (LPRECT
) lParam
;
2868 HDC hdc
= (HDC
) wParam
;
2871 HFONT hfont
, holdfont
;
2873 TRACE("uMsg: WM_USER+%d\n",uMsg
-WM_USER
);
2874 /* Call user paint hook if enable */
2875 if (pda
->dlga
->Flags
& PSD_ENABLEPAGEPAINTHOOK
)
2876 if (pda
->dlga
->lpfnPagePaintHook(hwndDlg
, uMsg
, wParam
, lParam
))
2880 /* LPPAGESETUPDLG in lParam */
2881 case WM_PSD_PAGESETUPDLG
:
2882 /* Inform about the sample page rectangle */
2883 case WM_PSD_FULLPAGERECT
:
2884 /* Inform about the margin rectangle */
2885 case WM_PSD_MINMARGINRECT
:
2888 /* Draw dashed rectangle showing margins */
2889 case WM_PSD_MARGINRECT
:
2890 hpen
= CreatePen(PS_DASH
, 1, GetSysColor(COLOR_3DSHADOW
));
2891 holdpen
= SelectObject(hdc
, hpen
);
2892 Rectangle(hdc
, lprc
->left
, lprc
->top
, lprc
->right
, lprc
->bottom
);
2893 DeleteObject(SelectObject(hdc
, holdpen
));
2895 /* Draw the fake document */
2896 case WM_PSD_GREEKTEXTRECT
:
2897 /* select a nice scalable font, because we want the text really small */
2898 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, sizeof(lf
), &lf
, 0);
2899 lf
.lfHeight
= 6; /* value chosen based on visual effect */
2900 hfont
= CreateFontIndirectW(&lf
);
2901 holdfont
= SelectObject(hdc
, hfont
);
2903 /* if text not loaded, then do so now */
2904 if (wszFakeDocumentText
[0] == '\0')
2905 LoadStringW(COMDLG32_hInstance
,
2907 wszFakeDocumentText
,
2908 sizeof(wszFakeDocumentText
)/sizeof(wszFakeDocumentText
[0]));
2910 oldbkmode
= SetBkMode(hdc
, TRANSPARENT
);
2911 DrawTextW(hdc
, wszFakeDocumentText
, -1, lprc
, DT_TOP
|DT_LEFT
|DT_NOPREFIX
|DT_WORDBREAK
);
2912 SetBkMode(hdc
, oldbkmode
);
2914 DeleteObject(SelectObject(hdc
, holdfont
));
2917 /* Envelope stamp */
2918 case WM_PSD_ENVSTAMPRECT
:
2919 /* Return address */
2920 case WM_PSD_YAFULLPAGERECT
:
2921 FIXME("envelope/stamp is not implemented\n");
2924 FIXME("Unknown message %x\n",uMsg
);
2930 /***********************************************************************
2932 * The main paint procedure for the PageSetupDlg function.
2933 * The Page Setup dialog box includes an image of a sample page that shows how
2934 * the user's selections affect the appearance of the printed output.
2935 * The image consists of a rectangle that represents the selected paper
2936 * or envelope type, with a dotted-line rectangle representing
2937 * the current margins, and partial (Greek text) characters
2938 * to show how text looks on the printed page.
2940 * The following messages in the order sends to user hook procedure:
2941 * WM_PSD_PAGESETUPDLG Draw the contents of the sample page
2942 * WM_PSD_FULLPAGERECT Inform about the bounding rectangle
2943 * WM_PSD_MINMARGINRECT Inform about the margin rectangle (min margin?)
2944 * WM_PSD_MARGINRECT Draw the margin rectangle
2945 * WM_PSD_GREEKTEXTRECT Draw the Greek text inside the margin rectangle
2946 * If any of first three messages returns TRUE, painting done.
2949 * hWnd [in] Handle to the Page Setup dialog box
2950 * uMsg [in] Received message
2953 * WM_PSD_ENVSTAMPRECT Draw in the envelope-stamp rectangle (for envelopes only)
2954 * WM_PSD_YAFULLPAGERECT Draw the return address portion (for envelopes and other paper sizes)
2957 * FALSE if all done correctly
2962 static LRESULT CALLBACK
2963 PRINTDLG_PagePaintProc(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
2966 RECT rcClient
, rcMargin
;
2969 HBRUSH hbrush
, holdbrush
;
2970 PageSetupDataA
*pda
;
2971 int papersize
=0, orientation
=0; /* FIXME: set this values for user paint hook */
2972 double scalx
, scaly
;
2973 #define CALLPAINTHOOK(msg,lprc) PRINTDLG_DefaultPagePaintHook( hWnd, msg, (WPARAM)hdc, (LPARAM)lprc, pda)
2975 if (uMsg
!= WM_PAINT
)
2976 return CallWindowProcA(lpfnStaticWndProc
, hWnd
, uMsg
, wParam
, lParam
);
2978 /* Processing WM_PAINT message */
2979 pda
= (PageSetupDataA
*)GetPropA(hWnd
, "__WINE_PAGESETUPDLGDATA");
2981 WARN("__WINE_PAGESETUPDLGDATA prop not set?\n");
2984 if (PRINTDLG_DefaultPagePaintHook(hWnd
, WM_PSD_PAGESETUPDLG
, MAKELONG(papersize
, orientation
), (LPARAM
)pda
->dlga
, pda
))
2987 hdc
= BeginPaint(hWnd
, &ps
);
2988 GetClientRect(hWnd
, &rcClient
);
2990 scalx
= rcClient
.right
/ (double)pda
->curdlg
.ptPaperSize
.x
;
2991 scaly
= rcClient
.bottom
/ (double)pda
->curdlg
.ptPaperSize
.y
;
2992 rcMargin
= rcClient
;
2994 rcMargin
.left
+= (LONG
)pda
->curdlg
.rtMargin
.left
* scalx
;
2995 rcMargin
.top
+= (LONG
)pda
->curdlg
.rtMargin
.top
* scalx
;
2996 rcMargin
.right
-= (LONG
)pda
->curdlg
.rtMargin
.right
* scaly
;
2997 rcMargin
.bottom
-= (LONG
)pda
->curdlg
.rtMargin
.bottom
* scaly
;
2999 /* if the space is too small then we make sure to not draw anything */
3000 rcMargin
.left
= min(rcMargin
.left
, rcMargin
.right
);
3001 rcMargin
.top
= min(rcMargin
.top
, rcMargin
.bottom
);
3003 if (!CALLPAINTHOOK(WM_PSD_FULLPAGERECT
, &rcClient
) &&
3004 !CALLPAINTHOOK(WM_PSD_MINMARGINRECT
, &rcMargin
) )
3006 /* fill background */
3007 hbrush
= GetSysColorBrush(COLOR_3DHIGHLIGHT
);
3008 FillRect(hdc
, &rcClient
, hbrush
);
3009 holdbrush
= SelectObject(hdc
, hbrush
);
3011 hpen
= CreatePen(PS_SOLID
, 1, GetSysColor(COLOR_3DSHADOW
));
3012 holdpen
= SelectObject(hdc
, hpen
);
3014 /* paint left edge */
3015 MoveToEx(hdc
, rcClient
.left
, rcClient
.top
, NULL
);
3016 LineTo(hdc
, rcClient
.left
, rcClient
.bottom
-1);
3018 /* paint top edge */
3019 MoveToEx(hdc
, rcClient
.left
, rcClient
.top
, NULL
);
3020 LineTo(hdc
, rcClient
.right
, rcClient
.top
);
3022 hpen
= CreatePen(PS_SOLID
, 1, GetSysColor(COLOR_3DDKSHADOW
));
3023 DeleteObject(SelectObject(hdc
, hpen
));
3025 /* paint right edge */
3026 MoveToEx(hdc
, rcClient
.right
-1, rcClient
.top
, NULL
);
3027 LineTo(hdc
, rcClient
.right
-1, rcClient
.bottom
);
3029 /* paint bottom edge */
3030 MoveToEx(hdc
, rcClient
.left
, rcClient
.bottom
-1, NULL
);
3031 LineTo(hdc
, rcClient
.right
, rcClient
.bottom
-1);
3033 DeleteObject(SelectObject(hdc
, holdpen
));
3034 DeleteObject(SelectObject(hdc
, holdbrush
));
3036 CALLPAINTHOOK(WM_PSD_MARGINRECT
, &rcMargin
);
3038 /* give text a bit of a space from the frame */
3041 rcMargin
.right
-= 2;
3042 rcMargin
.bottom
-= 2;
3044 /* if the space is too small then we make sure to not draw anything */
3045 rcMargin
.left
= min(rcMargin
.left
, rcMargin
.right
);
3046 rcMargin
.top
= min(rcMargin
.top
, rcMargin
.bottom
);
3048 CALLPAINTHOOK(WM_PSD_GREEKTEXTRECT
, &rcMargin
);
3051 EndPaint(hWnd
, &ps
);
3053 #undef CALLPAINTHOOK
3056 /***********************************************************************
3057 * PRINTDLG_PageDlgProcA
3058 * Message handler for PageSetupDlgA
3060 static INT_PTR CALLBACK
3061 PRINTDLG_PageDlgProcA(HWND hDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3064 PageSetupDataA
*pda
;
3065 INT_PTR res
= FALSE
;
3068 if (uMsg
== WM_INITDIALOG
) { /*Init dialog*/
3069 pda
= (PageSetupDataA
*)lParam
;
3070 pda
->hDlg
= hDlg
; /* saving handle to main window to PageSetupDataA structure */
3071 memcpy(&pda
->curdlg
, pda
->dlga
, sizeof(pda
->curdlg
));
3073 hDrawWnd
= GetDlgItem(hDlg
, rct1
);
3074 TRACE("set property to %p", pda
);
3075 SetPropA(hDlg
, "__WINE_PAGESETUPDLGDATA", pda
);
3076 SetPropA(hDrawWnd
, "__WINE_PAGESETUPDLGDATA", pda
);
3077 GetWindowRect(hDrawWnd
, &pda
->rtDrawRect
); /* Calculating rect in client coordinates where paper draws */
3078 ScreenToClient(hDlg
, (LPPOINT
)&pda
->rtDrawRect
);
3079 ScreenToClient(hDlg
, (LPPOINT
)(&pda
->rtDrawRect
.right
));
3080 lpfnStaticWndProc
= (WNDPROC
)SetWindowLongPtrW(
3083 (ULONG_PTR
)PRINTDLG_PagePaintProc
);
3085 /* FIXME: Paint hook. Must it be at begin of initializtion or at end? */
3087 if (pda
->dlga
->Flags
& PSD_ENABLEPAGESETUPHOOK
) {
3088 if (!pda
->dlga
->lpfnPageSetupHook(hDlg
,uMsg
,wParam
,(LPARAM
)pda
->dlga
))
3089 FIXME("Setup page hook failed?\n");
3092 /* if printer button disabled */
3093 if (pda
->dlga
->Flags
& PSD_DISABLEPRINTER
)
3094 EnableWindow(GetDlgItem(hDlg
, psh3
), FALSE
);
3095 /* if margin edit boxes disabled */
3096 if (pda
->dlga
->Flags
& PSD_DISABLEMARGINS
) {
3097 EnableWindow(GetDlgItem(hDlg
, edt4
), FALSE
);
3098 EnableWindow(GetDlgItem(hDlg
, edt5
), FALSE
);
3099 EnableWindow(GetDlgItem(hDlg
, edt6
), FALSE
);
3100 EnableWindow(GetDlgItem(hDlg
, edt7
), FALSE
);
3102 /* Set orientation radiobutton properly */
3103 dm
= GlobalLock(pda
->dlga
->hDevMode
);
3104 if (dm
->u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
)
3105 CheckRadioButton(hDlg
, rad1
, rad2
, rad2
);
3106 else /* this is default if papersize is not set */
3107 CheckRadioButton(hDlg
, rad1
, rad2
, rad1
);
3108 GlobalUnlock(pda
->dlga
->hDevMode
);
3110 /* if orientation disabled */
3111 if (pda
->dlga
->Flags
& PSD_DISABLEORIENTATION
) {
3112 EnableWindow(GetDlgItem(hDlg
,rad1
),FALSE
);
3113 EnableWindow(GetDlgItem(hDlg
,rad2
),FALSE
);
3115 /* We fill them out enabled or not */
3116 if (pda
->dlga
->Flags
& PSD_MARGINS
) {
3118 _c_size2strA(pda
,pda
->dlga
->rtMargin
.left
,str
);
3119 SetDlgItemTextA(hDlg
,edt4
,str
);
3120 _c_size2strA(pda
,pda
->dlga
->rtMargin
.top
,str
);
3121 SetDlgItemTextA(hDlg
,edt5
,str
);
3122 _c_size2strA(pda
,pda
->dlga
->rtMargin
.right
,str
);
3123 SetDlgItemTextA(hDlg
,edt6
,str
);
3124 _c_size2strA(pda
,pda
->dlga
->rtMargin
.bottom
,str
);
3125 SetDlgItemTextA(hDlg
,edt7
,str
);
3127 /* default is 1 inch */
3128 DWORD size
= _c_inch2size(pda
->dlga
,1000);
3130 _c_size2strA(pda
,size
,str
);
3131 SetDlgItemTextA(hDlg
,edt4
,str
);
3132 SetDlgItemTextA(hDlg
,edt5
,str
);
3133 SetDlgItemTextA(hDlg
,edt6
,str
);
3134 SetDlgItemTextA(hDlg
,edt7
,str
);
3135 pda
->curdlg
.rtMargin
.left
= size
;
3136 pda
->curdlg
.rtMargin
.top
= size
;
3137 pda
->curdlg
.rtMargin
.right
= size
;
3138 pda
->curdlg
.rtMargin
.bottom
= size
;
3140 /* if paper disabled */
3141 if (pda
->dlga
->Flags
& PSD_DISABLEPAPER
) {
3142 EnableWindow(GetDlgItem(hDlg
,cmb2
),FALSE
);
3143 EnableWindow(GetDlgItem(hDlg
,cmb3
),FALSE
);
3145 /* filling combos: printer, paper, source. selecting current printer (from DEVMODEA) */
3146 PRINTDLG_PS_ChangePrinterA(hDlg
, pda
);
3147 dm
= GlobalLock(pda
->pdlg
.hDevMode
);
3149 dm
->dmDefaultSource
= 15; /*FIXME: Automatic select. Does it always 15 at start? */
3150 PRINTDLG_PaperSizeA(&(pda
->pdlg
), dm
->u1
.s1
.dmPaperSize
, &pda
->curdlg
.ptPaperSize
);
3151 GlobalUnlock(pda
->pdlg
.hDevMode
);
3152 pda
->curdlg
.ptPaperSize
.x
= _c_10mm2size(pda
->dlga
, pda
->curdlg
.ptPaperSize
.x
);
3153 pda
->curdlg
.ptPaperSize
.y
= _c_10mm2size(pda
->dlga
, pda
->curdlg
.ptPaperSize
.y
);
3154 if (IsDlgButtonChecked(hDlg
, rad2
) == BST_CHECKED
) { /* Landscape orientation */
3155 DWORD tmp
= pda
->curdlg
.ptPaperSize
.y
;
3156 pda
->curdlg
.ptPaperSize
.y
= pda
->curdlg
.ptPaperSize
.x
;
3157 pda
->curdlg
.ptPaperSize
.x
= tmp
;
3160 WARN("GlobalLock(pda->pdlg.hDevMode) fail? hDevMode=%p", pda
->pdlg
.hDevMode
);
3161 /* Drawing paper prev */
3162 PRINTDLG_PS_ChangePaperPrev(pda
);
3165 pda
= (PageSetupDataA
*)GetPropA(hDlg
,"__WINE_PAGESETUPDLGDATA");
3167 WARN("__WINE_PAGESETUPDLGDATA prop not set?\n");
3170 if (pda
->dlga
->Flags
& PSD_ENABLEPAGESETUPHOOK
) {
3171 res
= pda
->dlga
->lpfnPageSetupHook(hDlg
,uMsg
,wParam
,lParam
);
3172 if (res
) return res
;
3177 return PRINTDLG_PS_WMCommandA(hDlg
, wParam
, lParam
, pda
);
3182 static INT_PTR CALLBACK
3183 PageDlgProcW(HWND hDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3185 const static WCHAR __WINE_PAGESETUPDLGDATA
[] =
3186 { '_', '_', 'W', 'I', 'N', 'E', '_', 'P', 'A', 'G', 'E',
3187 'S', 'E', 'T', 'U', 'P', 'D', 'L', 'G', 'D', 'A', 'T', 'A', 0 };
3188 PageSetupDataW
*pda
;
3191 if (uMsg
==WM_INITDIALOG
) {
3193 pda
= (PageSetupDataW
*)lParam
;
3194 SetPropW(hDlg
, __WINE_PAGESETUPDLGDATA
, pda
);
3195 if (pda
->dlga
->Flags
& PSD_ENABLEPAGESETUPHOOK
) {
3196 res
= pda
->dlga
->lpfnPageSetupHook(hDlg
,uMsg
,wParam
,(LPARAM
)pda
->dlga
);
3198 FIXME("Setup page hook failed?\n");
3203 if (pda
->dlga
->Flags
& PSD_ENABLEPAGEPAINTHOOK
) {
3204 FIXME("PagePaintHook not yet implemented!\n");
3206 if (pda
->dlga
->Flags
& PSD_DISABLEPRINTER
)
3207 EnableWindow(GetDlgItem(hDlg
, psh3
), FALSE
);
3208 if (pda
->dlga
->Flags
& PSD_DISABLEMARGINS
) {
3209 EnableWindow(GetDlgItem(hDlg
, edt4
), FALSE
);
3210 EnableWindow(GetDlgItem(hDlg
, edt5
), FALSE
);
3211 EnableWindow(GetDlgItem(hDlg
, edt6
), FALSE
);
3212 EnableWindow(GetDlgItem(hDlg
, edt7
), FALSE
);
3214 /* width larger as height -> landscape */
3215 if (pda
->dlga
->ptPaperSize
.x
> pda
->dlga
->ptPaperSize
.y
)
3216 CheckRadioButton(hDlg
, rad1
, rad2
, rad2
);
3217 else /* this is default if papersize is not set */
3218 CheckRadioButton(hDlg
, rad1
, rad2
, rad1
);
3219 if (pda
->dlga
->Flags
& PSD_DISABLEORIENTATION
) {
3220 EnableWindow(GetDlgItem(hDlg
,rad1
),FALSE
);
3221 EnableWindow(GetDlgItem(hDlg
,rad2
),FALSE
);
3223 /* We fill them out enabled or not */
3224 if (pda
->dlga
->Flags
& PSD_MARGINS
) {
3226 _c_size2strW(pda
,pda
->dlga
->rtMargin
.left
,str
);
3227 SetDlgItemTextW(hDlg
,edt4
,str
);
3228 _c_size2strW(pda
,pda
->dlga
->rtMargin
.top
,str
);
3229 SetDlgItemTextW(hDlg
,edt5
,str
);
3230 _c_size2strW(pda
,pda
->dlga
->rtMargin
.right
,str
);
3231 SetDlgItemTextW(hDlg
,edt6
,str
);
3232 _c_size2strW(pda
,pda
->dlga
->rtMargin
.bottom
,str
);
3233 SetDlgItemTextW(hDlg
,edt7
,str
);
3235 /* default is 1 inch */
3236 DWORD size
= _c_inch2size((LPPAGESETUPDLGA
)pda
->dlga
,1000);
3238 _c_size2strW(pda
,size
,str
);
3239 SetDlgItemTextW(hDlg
,edt4
,str
);
3240 SetDlgItemTextW(hDlg
,edt5
,str
);
3241 SetDlgItemTextW(hDlg
,edt6
,str
);
3242 SetDlgItemTextW(hDlg
,edt7
,str
);
3244 PRINTDLG_PS_ChangePrinterW(hDlg
,pda
);
3245 if (pda
->dlga
->Flags
& PSD_DISABLEPAPER
) {
3246 EnableWindow(GetDlgItem(hDlg
,cmb2
),FALSE
);
3247 EnableWindow(GetDlgItem(hDlg
,cmb3
),FALSE
);
3252 pda
= (PageSetupDataW
*)GetPropW(hDlg
, __WINE_PAGESETUPDLGDATA
);
3254 WARN("__WINE_PAGESETUPDLGDATA prop not set?\n");
3257 if (pda
->dlga
->Flags
& PSD_ENABLEPAGESETUPHOOK
) {
3258 res
= pda
->dlga
->lpfnPageSetupHook(hDlg
,uMsg
,wParam
,lParam
);
3259 if (res
) return res
;
3264 return PRINTDLG_PS_WMCommandW(hDlg
, wParam
, lParam
, pda
);
3269 /***********************************************************************
3270 * PageSetupDlgA (COMDLG32.@)
3272 * Displays the the PAGE SETUP dialog box, which enables the user to specify
3273 * specific properties of a printed page such as
3274 * size, source, orientation and the width of the page margins.
3277 * setupdlg [IO] PAGESETUPDLGA struct
3280 * TRUE if the user pressed the OK button
3281 * FALSE if the user cancelled the window or an error occurred
3284 * The values of hDevMode and hDevNames are filled on output and can be
3285 * changed in PAGESETUPDLG when they are passed in PageSetupDlg.
3289 BOOL WINAPI
PageSetupDlgA(LPPAGESETUPDLGA setupdlg
) {
3293 PageSetupDataA
*pda
;
3297 if(TRACE_ON(commdlg
)) {
3298 char flagstr
[1000] = "";
3299 struct pd_flags
*pflag
= psd_flags
;
3300 for( ; pflag
->name
; pflag
++) {
3301 if(setupdlg
->Flags
& pflag
->flag
) {
3302 strcat(flagstr
, pflag
->name
);
3303 strcat(flagstr
, "|");
3306 TRACE("(%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
3307 "hinst %p, flags %08lx (%s)\n",
3308 setupdlg
, setupdlg
->hwndOwner
, setupdlg
->hDevMode
,
3309 setupdlg
->hDevNames
,
3310 setupdlg
->hInstance
, setupdlg
->Flags
, flagstr
);
3312 /* Checking setupdlg structure */
3313 if (setupdlg
== NULL
) {
3314 COMDLG32_SetCommDlgExtendedError(CDERR_INITIALIZATION
);
3317 if(setupdlg
->lStructSize
!= sizeof(PAGESETUPDLGA
)) {
3318 COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE
);
3321 if ((setupdlg
->Flags
& PSD_ENABLEPAGEPAINTHOOK
) &&
3322 (setupdlg
->lpfnPagePaintHook
== NULL
)) {
3323 COMDLG32_SetCommDlgExtendedError(CDERR_NOHOOK
);
3327 /* First get default printer data, we need it right after that. */
3328 memset(&pdlg
,0,sizeof(pdlg
));
3329 pdlg
.lStructSize
= sizeof(pdlg
);
3330 pdlg
.Flags
= PD_RETURNDEFAULT
;
3331 bRet
= PrintDlgA(&pdlg
);
3333 if(!(setupdlg
->Flags
& PSD_NOWARNING
)){
3335 LoadStringA(COMDLG32_hInstance
, PD32_NO_DEFAULT_PRINTER
, errstr
, 255);
3336 MessageBoxA(setupdlg
->hwndOwner
, errstr
, 0, MB_OK
| MB_ICONERROR
);
3341 /* short cut exit, just return default values */
3342 if (setupdlg
->Flags
& PSD_RETURNDEFAULT
) {
3345 dm
= GlobalLock(pdlg
.hDevMode
);
3346 PRINTDLG_PaperSizeA(&pdlg
, dm
->u1
.s1
.dmPaperSize
, &setupdlg
->ptPaperSize
);
3347 GlobalUnlock(pdlg
.hDevMode
);
3348 setupdlg
->ptPaperSize
.x
=_c_10mm2size(setupdlg
,setupdlg
->ptPaperSize
.x
);
3349 setupdlg
->ptPaperSize
.y
=_c_10mm2size(setupdlg
,setupdlg
->ptPaperSize
.y
);
3353 /* get dialog template */
3354 hDlgTmpl
= PRINTDLG_GetPGSTemplateA(setupdlg
);
3356 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
3359 ptr
= LockResource( hDlgTmpl
);
3361 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
3365 pda
= HeapAlloc(GetProcessHeap(),0,sizeof(*pda
));
3366 pda
->dlga
= setupdlg
;
3367 memcpy(&pda
->pdlg
,&pdlg
,sizeof(pdlg
));
3369 bRet
= (0<DialogBoxIndirectParamA(
3370 setupdlg
->hInstance
,
3372 setupdlg
->hwndOwner
,
3373 PRINTDLG_PageDlgProcA
,
3377 HeapFree(GetProcessHeap(),0,pda
);
3380 /***********************************************************************
3381 * PageSetupDlgW (COMDLG32.@)
3383 BOOL WINAPI
PageSetupDlgW(LPPAGESETUPDLGW setupdlg
) {
3387 PageSetupDataW
*pdw
;
3390 FIXME("Unicode implementation is not done yet\n");
3391 if(TRACE_ON(commdlg
)) {
3392 char flagstr
[1000] = "";
3393 struct pd_flags
*pflag
= psd_flags
;
3394 for( ; pflag
->name
; pflag
++) {
3395 if(setupdlg
->Flags
& pflag
->flag
) {
3396 strcat(flagstr
, pflag
->name
);
3397 strcat(flagstr
, "|");
3400 TRACE("(%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
3401 "hinst %p, flags %08lx (%s)\n",
3402 setupdlg
, setupdlg
->hwndOwner
, setupdlg
->hDevMode
,
3403 setupdlg
->hDevNames
,
3404 setupdlg
->hInstance
, setupdlg
->Flags
, flagstr
);
3407 /* First get default printer data, we need it right after that. */
3408 memset(&pdlg
,0,sizeof(pdlg
));
3409 pdlg
.lStructSize
= sizeof(pdlg
);
3410 pdlg
.Flags
= PD_RETURNDEFAULT
;
3411 bRet
= PrintDlgW(&pdlg
);
3412 if (!bRet
) return FALSE
;
3414 /* short cut exit, just return default values */
3415 if (setupdlg
->Flags
& PSD_RETURNDEFAULT
) {
3416 static const WCHAR a4
[] = {'A','4',0};
3417 setupdlg
->hDevMode
= pdlg
.hDevMode
;
3418 setupdlg
->hDevNames
= pdlg
.hDevNames
;
3419 /* FIXME: Just return "A4" for now. */
3420 PRINTDLG_PaperSizeW(&pdlg
,a4
,&setupdlg
->ptPaperSize
);
3421 setupdlg
->ptPaperSize
.x
=_c_10mm2size((LPPAGESETUPDLGA
)setupdlg
,setupdlg
->ptPaperSize
.x
);
3422 setupdlg
->ptPaperSize
.y
=_c_10mm2size((LPPAGESETUPDLGA
)setupdlg
,setupdlg
->ptPaperSize
.y
);
3425 hDlgTmpl
= PRINTDLG_GetPGSTemplateW(setupdlg
);
3427 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
3430 ptr
= LockResource( hDlgTmpl
);
3432 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
3435 pdw
= HeapAlloc(GetProcessHeap(),0,sizeof(*pdw
));
3436 pdw
->dlga
= setupdlg
;
3437 memcpy(&pdw
->pdlg
,&pdlg
,sizeof(pdlg
));
3439 bRet
= (0<DialogBoxIndirectParamW(
3440 setupdlg
->hInstance
,
3442 setupdlg
->hwndOwner
,
3449 /***********************************************************************
3450 * PrintDlgExA (COMDLG32.@)
3452 HRESULT WINAPI
PrintDlgExA(LPPRINTDLGEXA lpPrintDlgExA
)
3458 /***********************************************************************
3459 * PrintDlgExW (COMDLG32.@)
3461 HRESULT WINAPI
PrintDlgExW(LPPRINTDLGEXW lpPrintDlgExW
)