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
8 * Copyright 2010 Vitaly Perov
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #define NONAMELESSUNION
32 #define NONAMELESSSTRUCT
40 #include "wine/unicode.h"
41 #include "wine/debug.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(commdlg
);
50 /* Yes these constants are the same, but we're just copying win98 */
51 #define UPDOWN_ID 0x270f
52 #define MAX_COPIES 9999
54 /* This PRINTDLGA internal structure stores
55 * pointers to several throughout useful structures.
61 LPPRINTDLGA lpPrintDlg
;
62 LPPRINTER_INFO_2A lpPrinterInfo
;
63 LPDRIVER_INFO_3A lpDriverInfo
;
65 HICON hCollateIcon
; /* PrintDlg only */
66 HICON hNoCollateIcon
; /* PrintDlg only */
67 HICON hPortraitIcon
; /* PrintSetupDlg only */
68 HICON hLandscapeIcon
; /* PrintSetupDlg only */
75 LPPRINTDLGW lpPrintDlg
;
76 LPPRINTER_INFO_2W lpPrinterInfo
;
77 LPDRIVER_INFO_3W lpDriverInfo
;
79 HICON hCollateIcon
; /* PrintDlg only */
80 HICON hNoCollateIcon
; /* PrintDlg only */
81 HICON hPortraitIcon
; /* PrintSetupDlg only */
82 HICON hLandscapeIcon
; /* PrintSetupDlg only */
93 static const struct pd_flags psd_flags
[] = {
94 {PSD_MINMARGINS
,"PSD_MINMARGINS"},
95 {PSD_MARGINS
,"PSD_MARGINS"},
96 {PSD_INTHOUSANDTHSOFINCHES
,"PSD_INTHOUSANDTHSOFINCHES"},
97 {PSD_INHUNDREDTHSOFMILLIMETERS
,"PSD_INHUNDREDTHSOFMILLIMETERS"},
98 {PSD_DISABLEMARGINS
,"PSD_DISABLEMARGINS"},
99 {PSD_DISABLEPRINTER
,"PSD_DISABLEPRINTER"},
100 {PSD_NOWARNING
,"PSD_NOWARNING"},
101 {PSD_DISABLEORIENTATION
,"PSD_DISABLEORIENTATION"},
102 {PSD_RETURNDEFAULT
,"PSD_RETURNDEFAULT"},
103 {PSD_DISABLEPAPER
,"PSD_DISABLEPAPER"},
104 {PSD_SHOWHELP
,"PSD_SHOWHELP"},
105 {PSD_ENABLEPAGESETUPHOOK
,"PSD_ENABLEPAGESETUPHOOK"},
106 {PSD_ENABLEPAGESETUPTEMPLATE
,"PSD_ENABLEPAGESETUPTEMPLATE"},
107 {PSD_ENABLEPAGESETUPTEMPLATEHANDLE
,"PSD_ENABLEPAGESETUPTEMPLATEHANDLE"},
108 {PSD_ENABLEPAGEPAINTHOOK
,"PSD_ENABLEPAGEPAINTHOOK"},
109 {PSD_DISABLEPAGEPAINTING
,"PSD_DISABLEPAGEPAINTING"},
113 static const struct pd_flags pd_flags
[] = {
114 {PD_SELECTION
, "PD_SELECTION "},
115 {PD_PAGENUMS
, "PD_PAGENUMS "},
116 {PD_NOSELECTION
, "PD_NOSELECTION "},
117 {PD_NOPAGENUMS
, "PD_NOPAGENUMS "},
118 {PD_COLLATE
, "PD_COLLATE "},
119 {PD_PRINTTOFILE
, "PD_PRINTTOFILE "},
120 {PD_PRINTSETUP
, "PD_PRINTSETUP "},
121 {PD_NOWARNING
, "PD_NOWARNING "},
122 {PD_RETURNDC
, "PD_RETURNDC "},
123 {PD_RETURNIC
, "PD_RETURNIC "},
124 {PD_RETURNDEFAULT
, "PD_RETURNDEFAULT "},
125 {PD_SHOWHELP
, "PD_SHOWHELP "},
126 {PD_ENABLEPRINTHOOK
, "PD_ENABLEPRINTHOOK "},
127 {PD_ENABLESETUPHOOK
, "PD_ENABLESETUPHOOK "},
128 {PD_ENABLEPRINTTEMPLATE
, "PD_ENABLEPRINTTEMPLATE "},
129 {PD_ENABLESETUPTEMPLATE
, "PD_ENABLESETUPTEMPLATE "},
130 {PD_ENABLEPRINTTEMPLATEHANDLE
, "PD_ENABLEPRINTTEMPLATEHANDLE "},
131 {PD_ENABLESETUPTEMPLATEHANDLE
, "PD_ENABLESETUPTEMPLATEHANDLE "},
132 {PD_USEDEVMODECOPIES
, "PD_USEDEVMODECOPIES[ANDCOLLATE] "},
133 {PD_DISABLEPRINTTOFILE
, "PD_DISABLEPRINTTOFILE "},
134 {PD_HIDEPRINTTOFILE
, "PD_HIDEPRINTTOFILE "},
135 {PD_NONETWORKBUTTON
, "PD_NONETWORKBUTTON "},
138 /* address of wndproc for subclassed Static control */
139 static WNDPROC lpfnStaticWndProc
;
140 static WNDPROC edit_wndproc
;
141 /* the text of the fake document to render for the Page Setup dialog */
142 static WCHAR wszFakeDocumentText
[1024];
143 static const WCHAR pd32_collateW
[] = { 'P', 'D', '3', '2', '_', 'C', 'O', 'L', 'L', 'A', 'T', 'E', 0 };
144 static const WCHAR pd32_nocollateW
[] = { 'P', 'D', '3', '2', '_', 'N', 'O', 'C', 'O', 'L', 'L', 'A', 'T', 'E', 0 };
145 static const WCHAR pd32_portraitW
[] = { 'P', 'D', '3', '2', '_', 'P', 'O', 'R', 'T', 'R', 'A', 'I', 'T', 0 };
146 static const WCHAR pd32_landscapeW
[] = { 'P', 'D', '3', '2', '_', 'L', 'A', 'N', 'D', 'S', 'C', 'A', 'P', 'E', 0 };
147 static const WCHAR printdlg_prop
[] = {'_','_','W','I','N','E','_','P','R','I','N','T','D','L','G','D','A','T','A',0};
148 static const WCHAR pagesetupdlg_prop
[] = { '_', '_', 'W', 'I', 'N', 'E', '_', 'P', 'A', 'G', 'E',
149 'S', 'E', 'T', 'U', 'P', 'D', 'L', 'G', 'D', 'A', 'T', 'A', 0 };
152 static LPWSTR
strdupW(LPCWSTR p
)
158 len
= (strlenW(p
) + 1) * sizeof(WCHAR
);
159 ret
= HeapAlloc(GetProcessHeap(), 0, len
);
164 /***********************************************************
165 * convert_to_devmodeA
167 * Creates an ansi copy of supplied devmode
169 static DEVMODEA
*convert_to_devmodeA(const DEVMODEW
*dmW
)
174 if (!dmW
) return NULL
;
175 size
= dmW
->dmSize
- CCHDEVICENAME
-
176 ((dmW
->dmSize
> FIELD_OFFSET(DEVMODEW
, dmFormName
)) ? CCHFORMNAME
: 0);
178 dmA
= HeapAlloc(GetProcessHeap(), 0, size
+ dmW
->dmDriverExtra
);
179 if (!dmA
) return NULL
;
181 WideCharToMultiByte(CP_ACP
, 0, dmW
->dmDeviceName
, -1,
182 (LPSTR
)dmA
->dmDeviceName
, CCHDEVICENAME
, NULL
, NULL
);
184 if (FIELD_OFFSET(DEVMODEW
, dmFormName
) >= dmW
->dmSize
)
186 memcpy(&dmA
->dmSpecVersion
, &dmW
->dmSpecVersion
,
187 dmW
->dmSize
- FIELD_OFFSET(DEVMODEW
, dmSpecVersion
));
191 memcpy(&dmA
->dmSpecVersion
, &dmW
->dmSpecVersion
,
192 FIELD_OFFSET(DEVMODEW
, dmFormName
) - FIELD_OFFSET(DEVMODEW
, dmSpecVersion
));
193 WideCharToMultiByte(CP_ACP
, 0, dmW
->dmFormName
, -1,
194 (LPSTR
)dmA
->dmFormName
, CCHFORMNAME
, NULL
, NULL
);
196 memcpy(&dmA
->dmLogPixels
, &dmW
->dmLogPixels
, dmW
->dmSize
- FIELD_OFFSET(DEVMODEW
, dmLogPixels
));
200 memcpy((char *)dmA
+ dmA
->dmSize
, (const char *)dmW
+ dmW
->dmSize
, dmW
->dmDriverExtra
);
204 /***********************************************************************
205 * PRINTDLG_OpenDefaultPrinter
207 * Returns a winspool printer handle to the default printer in *hprn
208 * Caller must call ClosePrinter on the handle
210 * Returns TRUE on success else FALSE
212 static BOOL
PRINTDLG_OpenDefaultPrinter(HANDLE
*hprn
)
215 DWORD dwBufLen
= sizeof(buf
) / sizeof(buf
[0]);
217 if(!GetDefaultPrinterW(buf
, &dwBufLen
))
219 res
= OpenPrinterW(buf
, hprn
, NULL
);
221 WARN("Could not open printer %s\n", debugstr_w(buf
));
225 /***********************************************************************
226 * PRINTDLG_SetUpPrinterListCombo
228 * Initializes printer list combox.
229 * hDlg: HWND of dialog
230 * id: Control id of combo
231 * name: Name of printer to select
233 * Initializes combo with list of available printers. Selects printer 'name'
234 * If name is NULL or does not exist select the default printer.
236 * Returns number of printers added to list.
238 static INT
PRINTDLG_SetUpPrinterListComboA(HWND hDlg
, UINT id
, LPCSTR name
)
242 LPPRINTER_INFO_2A pi
;
243 EnumPrintersA(PRINTER_ENUM_LOCAL
, NULL
, 2, NULL
, 0, &needed
, &num
);
244 pi
= HeapAlloc(GetProcessHeap(), 0, needed
);
245 EnumPrintersA(PRINTER_ENUM_LOCAL
, NULL
, 2, (LPBYTE
)pi
, needed
, &needed
,
248 SendDlgItemMessageA(hDlg
, id
, CB_RESETCONTENT
, 0, 0);
250 for(i
= 0; i
< num
; i
++) {
251 SendDlgItemMessageA(hDlg
, id
, CB_ADDSTRING
, 0,
252 (LPARAM
)pi
[i
].pPrinterName
);
254 HeapFree(GetProcessHeap(), 0, pi
);
256 (i
= SendDlgItemMessageA(hDlg
, id
, CB_FINDSTRINGEXACT
, -1,
257 (LPARAM
)name
)) == CB_ERR
) {
260 DWORD dwBufLen
= sizeof(buf
);
262 WARN("Can't find %s in printer list so trying to find default\n",
264 if(!GetDefaultPrinterA(buf
, &dwBufLen
))
266 i
= SendDlgItemMessageA(hDlg
, id
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)buf
);
268 FIXME("Can't find default printer in printer list\n");
270 SendDlgItemMessageA(hDlg
, id
, CB_SETCURSEL
, i
, 0);
274 static INT
PRINTDLG_SetUpPrinterListComboW(HWND hDlg
, UINT id
, LPCWSTR name
)
278 LPPRINTER_INFO_2W pi
;
279 EnumPrintersW(PRINTER_ENUM_LOCAL
, NULL
, 2, NULL
, 0, &needed
, &num
);
280 pi
= HeapAlloc(GetProcessHeap(), 0, needed
);
281 EnumPrintersW(PRINTER_ENUM_LOCAL
, NULL
, 2, (LPBYTE
)pi
, needed
, &needed
,
284 for(i
= 0; i
< num
; i
++) {
285 SendDlgItemMessageW(hDlg
, id
, CB_ADDSTRING
, 0,
286 (LPARAM
)pi
[i
].pPrinterName
);
288 HeapFree(GetProcessHeap(), 0, pi
);
290 (i
= SendDlgItemMessageW(hDlg
, id
, CB_FINDSTRINGEXACT
, -1,
291 (LPARAM
)name
)) == CB_ERR
) {
293 DWORD dwBufLen
= sizeof(buf
)/sizeof(buf
[0]);
295 WARN("Can't find %s in printer list so trying to find default\n",
297 if(!GetDefaultPrinterW(buf
, &dwBufLen
))
299 i
= SendDlgItemMessageW(hDlg
, id
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)buf
);
301 TRACE("Can't find default printer in printer list\n");
303 SendDlgItemMessageW(hDlg
, id
, CB_SETCURSEL
, i
, 0);
307 /***********************************************************************
308 * PRINTDLG_CreateDevNames [internal]
311 * creates a DevNames structure.
313 * (NB. when we handle unicode the offsets will be in wchars).
315 static BOOL
PRINTDLG_CreateDevNames(HGLOBAL
*hmem
, const char* DeviceDriverName
,
316 const char* DeviceName
, const char* OutputPort
)
319 char* pDevNamesSpace
;
321 LPDEVNAMES lpDevNames
;
323 DWORD dwBufLen
= sizeof(buf
);
325 size
= strlen(DeviceDriverName
) + 1
326 + strlen(DeviceName
) + 1
327 + strlen(OutputPort
) + 1
331 *hmem
= GlobalReAlloc(*hmem
, size
, GMEM_MOVEABLE
);
333 *hmem
= GlobalAlloc(GMEM_MOVEABLE
, size
);
337 pDevNamesSpace
= GlobalLock(*hmem
);
338 lpDevNames
= (LPDEVNAMES
) pDevNamesSpace
;
340 pTempPtr
= pDevNamesSpace
+ sizeof(DEVNAMES
);
341 strcpy(pTempPtr
, DeviceDriverName
);
342 lpDevNames
->wDriverOffset
= pTempPtr
- pDevNamesSpace
;
344 pTempPtr
+= strlen(DeviceDriverName
) + 1;
345 strcpy(pTempPtr
, DeviceName
);
346 lpDevNames
->wDeviceOffset
= pTempPtr
- pDevNamesSpace
;
348 pTempPtr
+= strlen(DeviceName
) + 1;
349 strcpy(pTempPtr
, OutputPort
);
350 lpDevNames
->wOutputOffset
= pTempPtr
- pDevNamesSpace
;
352 GetDefaultPrinterA(buf
, &dwBufLen
);
353 lpDevNames
->wDefault
= (strcmp(buf
, DeviceName
) == 0) ? 1 : 0;
358 static BOOL
PRINTDLG_CreateDevNamesW(HGLOBAL
*hmem
, LPCWSTR DeviceDriverName
,
359 LPCWSTR DeviceName
, LPCWSTR OutputPort
)
362 LPWSTR pDevNamesSpace
;
364 LPDEVNAMES lpDevNames
;
366 DWORD dwBufLen
= sizeof(bufW
) / sizeof(WCHAR
);
368 size
= sizeof(WCHAR
)*lstrlenW(DeviceDriverName
) + 2
369 + sizeof(WCHAR
)*lstrlenW(DeviceName
) + 2
370 + sizeof(WCHAR
)*lstrlenW(OutputPort
) + 2
374 *hmem
= GlobalReAlloc(*hmem
, size
, GMEM_MOVEABLE
);
376 *hmem
= GlobalAlloc(GMEM_MOVEABLE
, size
);
380 pDevNamesSpace
= GlobalLock(*hmem
);
381 lpDevNames
= (LPDEVNAMES
) pDevNamesSpace
;
383 pTempPtr
= (LPWSTR
)((LPDEVNAMES
)pDevNamesSpace
+ 1);
384 lstrcpyW(pTempPtr
, DeviceDriverName
);
385 lpDevNames
->wDriverOffset
= pTempPtr
- pDevNamesSpace
;
387 pTempPtr
+= lstrlenW(DeviceDriverName
) + 1;
388 lstrcpyW(pTempPtr
, DeviceName
);
389 lpDevNames
->wDeviceOffset
= pTempPtr
- pDevNamesSpace
;
391 pTempPtr
+= lstrlenW(DeviceName
) + 1;
392 lstrcpyW(pTempPtr
, OutputPort
);
393 lpDevNames
->wOutputOffset
= pTempPtr
- pDevNamesSpace
;
395 GetDefaultPrinterW(bufW
, &dwBufLen
);
396 lpDevNames
->wDefault
= (lstrcmpW(bufW
, DeviceName
) == 0) ? 1 : 0;
401 /***********************************************************************
402 * PRINTDLG_UpdatePrintDlg [internal]
405 * updates the PrintDlg structure for return values.
408 * FALSE if user is not allowed to close (i.e. wrong nTo or nFrom values)
409 * TRUE if successful.
411 static BOOL
PRINTDLG_UpdatePrintDlgA(HWND hDlg
,
412 PRINT_PTRA
* PrintStructures
)
414 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
415 PDEVMODEA lpdm
= PrintStructures
->lpDevMode
;
416 LPPRINTER_INFO_2A pi
= PrintStructures
->lpPrinterInfo
;
420 FIXME("No lpdm ptr?\n");
425 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
426 /* check whether nFromPage and nToPage are within range defined by
427 * nMinPage and nMaxPage
429 if (IsDlgButtonChecked(hDlg
, rad3
) == BST_CHECKED
) { /* Pages */
433 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
434 nToPage
= GetDlgItemInt(hDlg
, edt2
, &translated
, FALSE
);
436 /* if no ToPage value is entered, use the FromPage value */
437 if(!translated
) nToPage
= nFromPage
;
439 if (nFromPage
< lppd
->nMinPage
|| nFromPage
> lppd
->nMaxPage
||
440 nToPage
< lppd
->nMinPage
|| nToPage
> lppd
->nMaxPage
) {
441 WCHAR resourcestr
[256];
442 WCHAR resultstr
[256];
443 LoadStringW(COMDLG32_hInstance
, PD32_INVALID_PAGE_RANGE
, resourcestr
, 255);
444 wsprintfW(resultstr
,resourcestr
, lppd
->nMinPage
, lppd
->nMaxPage
);
445 LoadStringW(COMDLG32_hInstance
, PD32_PRINT_TITLE
, resourcestr
, 255);
446 MessageBoxW(hDlg
, resultstr
, resourcestr
, MB_OK
| MB_ICONWARNING
);
449 lppd
->nFromPage
= nFromPage
;
450 lppd
->nToPage
= nToPage
;
451 lppd
->Flags
|= PD_PAGENUMS
;
454 lppd
->Flags
&= ~PD_PAGENUMS
;
456 if (IsDlgButtonChecked(hDlg
, rad2
) == BST_CHECKED
) /* Selection */
457 lppd
->Flags
|= PD_SELECTION
;
459 lppd
->Flags
&= ~PD_SELECTION
;
461 if (IsDlgButtonChecked(hDlg
, chx1
) == BST_CHECKED
) {/* Print to file */
462 static char file
[] = "FILE:";
463 lppd
->Flags
|= PD_PRINTTOFILE
;
464 pi
->pPortName
= file
;
467 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
) { /* Collate */
468 FIXME("Collate lppd not yet implemented as output\n");
471 /* set PD_Collate and nCopies */
472 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
473 /* The application doesn't support multiple copies or collate...
475 lppd
->Flags
&= ~PD_COLLATE
;
477 /* if the printer driver supports it... store info there
478 * otherwise no collate & multiple copies !
480 if (lpdm
->dmFields
& DM_COLLATE
)
482 (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
);
483 if (lpdm
->dmFields
& DM_COPIES
)
484 lpdm
->u1
.s1
.dmCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
486 /* Application is responsible for multiple copies */
487 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
488 lppd
->Flags
|= PD_COLLATE
;
490 lppd
->Flags
&= ~PD_COLLATE
;
491 lppd
->nCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
492 /* multiple copies already included in the document. Driver must print only one copy */
493 lpdm
->u1
.s1
.dmCopies
= 1;
496 /* Print quality, PrintDlg16 */
497 if(GetDlgItem(hDlg
, cmb1
))
499 HWND hQuality
= GetDlgItem(hDlg
, cmb1
);
500 int Sel
= SendMessageA(hQuality
, CB_GETCURSEL
, 0, 0);
504 LONG dpi
= SendMessageA(hQuality
, CB_GETITEMDATA
, Sel
, 0);
505 lpdm
->dmFields
|= DM_PRINTQUALITY
| DM_YRESOLUTION
;
506 lpdm
->u1
.s1
.dmPrintQuality
= LOWORD(dpi
);
507 lpdm
->dmYResolution
= HIWORD(dpi
);
514 static BOOL
PRINTDLG_UpdatePrintDlgW(HWND hDlg
,
515 PRINT_PTRW
* PrintStructures
)
517 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
518 PDEVMODEW lpdm
= PrintStructures
->lpDevMode
;
519 LPPRINTER_INFO_2W pi
= PrintStructures
->lpPrinterInfo
;
523 FIXME("No lpdm ptr?\n");
528 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
529 /* check whether nFromPage and nToPage are within range defined by
530 * nMinPage and nMaxPage
532 if (IsDlgButtonChecked(hDlg
, rad3
) == BST_CHECKED
) { /* Pages */
536 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
537 nToPage
= GetDlgItemInt(hDlg
, edt2
, &translated
, FALSE
);
539 /* if no ToPage value is entered, use the FromPage value */
540 if(!translated
) nToPage
= nFromPage
;
542 if (nFromPage
< lppd
->nMinPage
|| nFromPage
> lppd
->nMaxPage
||
543 nToPage
< lppd
->nMinPage
|| nToPage
> lppd
->nMaxPage
) {
544 WCHAR resourcestr
[256];
545 WCHAR resultstr
[256];
546 LoadStringW(COMDLG32_hInstance
, PD32_INVALID_PAGE_RANGE
,
548 wsprintfW(resultstr
,resourcestr
, lppd
->nMinPage
, lppd
->nMaxPage
);
549 LoadStringW(COMDLG32_hInstance
, PD32_PRINT_TITLE
,
551 MessageBoxW(hDlg
, resultstr
, resourcestr
,
552 MB_OK
| MB_ICONWARNING
);
555 lppd
->nFromPage
= nFromPage
;
556 lppd
->nToPage
= nToPage
;
557 lppd
->Flags
|= PD_PAGENUMS
;
560 lppd
->Flags
&= ~PD_PAGENUMS
;
562 if (IsDlgButtonChecked(hDlg
, rad2
) == BST_CHECKED
) /* Selection */
563 lppd
->Flags
|= PD_SELECTION
;
565 lppd
->Flags
&= ~PD_SELECTION
;
567 if (IsDlgButtonChecked(hDlg
, chx1
) == BST_CHECKED
) {/* Print to file */
568 static WCHAR file
[] = {'F','I','L','E',':',0};
569 lppd
->Flags
|= PD_PRINTTOFILE
;
570 pi
->pPortName
= file
;
573 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
) { /* Collate */
574 FIXME("Collate lppd not yet implemented as output\n");
577 /* set PD_Collate and nCopies */
578 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
579 /* The application doesn't support multiple copies or collate...
581 lppd
->Flags
&= ~PD_COLLATE
;
583 /* if the printer driver supports it... store info there
584 * otherwise no collate & multiple copies !
586 if (lpdm
->dmFields
& DM_COLLATE
)
588 (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
);
589 if (lpdm
->dmFields
& DM_COPIES
)
590 lpdm
->u1
.s1
.dmCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
592 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
593 lppd
->Flags
|= PD_COLLATE
;
595 lppd
->Flags
&= ~PD_COLLATE
;
596 lppd
->nCopies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
602 /************************************************************************
603 * PRINTDLG_SetUpPaperComboBox
605 * Initialize either the papersize or inputslot combos of the Printer Setup
606 * dialog. We store the associated word (eg DMPAPER_A4) as the item data.
607 * We also try to re-select the old selection.
609 static BOOL
PRINTDLG_SetUpPaperComboBoxA(HWND hDlg
,
622 int fwCapability_Names
;
623 int fwCapability_Words
;
625 TRACE(" Printer: %s, Port: %s, ComboID: %d\n",PrinterName
,PortName
,nIDComboBox
);
627 /* query the dialog box for the current selected value */
628 Sel
= SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_GETCURSEL
, 0, 0);
630 /* we enter here only if a different printer is selected after
631 * the Print Setup dialog is opened. The current settings are
632 * stored into the newly selected printer.
634 oldWord
= SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_GETITEMDATA
,
637 if (nIDComboBox
== cmb2
)
638 dm
->u1
.s1
.dmPaperSize
= oldWord
;
640 dm
->u1
.s1
.dmDefaultSource
= oldWord
;
644 /* we enter here only when the Print setup dialog is initially
645 * opened. In this case the settings are restored from when
646 * the dialog was last closed.
649 if (nIDComboBox
== cmb2
)
650 oldWord
= dm
->u1
.s1
.dmPaperSize
;
652 oldWord
= dm
->u1
.s1
.dmDefaultSource
;
656 if (nIDComboBox
== cmb2
) {
658 fwCapability_Names
= DC_PAPERNAMES
;
659 fwCapability_Words
= DC_PAPERS
;
663 fwCapability_Names
= DC_BINNAMES
;
664 fwCapability_Words
= DC_BINS
;
667 NrOfEntries
= DeviceCapabilitiesA(PrinterName
, PortName
,
668 fwCapability_Names
, NULL
, dm
);
669 if (NrOfEntries
== 0)
670 WARN("no Name Entries found!\n");
671 else if (NrOfEntries
< 0)
674 if(DeviceCapabilitiesA(PrinterName
, PortName
, fwCapability_Words
, NULL
, dm
)
676 ERR("Number of caps is different\n");
680 Names
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(char)*NamesSize
);
681 Words
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(WORD
));
682 NrOfEntries
= DeviceCapabilitiesA(PrinterName
, PortName
,
683 fwCapability_Names
, Names
, dm
);
684 NrOfEntries
= DeviceCapabilitiesA(PrinterName
, PortName
,
685 fwCapability_Words
, (LPSTR
)Words
, dm
);
687 /* reset any current content in the combobox */
688 SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_RESETCONTENT
, 0, 0);
690 /* store new content */
691 for (i
= 0; i
< NrOfEntries
; i
++) {
692 DWORD pos
= SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_ADDSTRING
, 0,
693 (LPARAM
)(&Names
[i
*NamesSize
]) );
694 SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_SETITEMDATA
, pos
,
698 /* Look for old selection - can't do this is previous loop since
699 item order will change as more items are added */
701 for (i
= 0; i
< NrOfEntries
; i
++) {
702 if(SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_GETITEMDATA
, i
, 0) ==
708 SendDlgItemMessageA(hDlg
, nIDComboBox
, CB_SETCURSEL
, Sel
, 0);
710 HeapFree(GetProcessHeap(),0,Words
);
711 HeapFree(GetProcessHeap(),0,Names
);
715 static BOOL
PRINTDLG_SetUpPaperComboBoxW(HWND hDlg
,
717 const WCHAR
* PrinterName
,
718 const WCHAR
* PortName
,
728 int fwCapability_Names
;
729 int fwCapability_Words
;
731 TRACE(" Printer: %s, Port: %s, ComboID: %d\n",debugstr_w(PrinterName
),debugstr_w(PortName
),nIDComboBox
);
733 /* query the dialog box for the current selected value */
734 Sel
= SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_GETCURSEL
, 0, 0);
736 /* we enter here only if a different printer is selected after
737 * the Print Setup dialog is opened. The current settings are
738 * stored into the newly selected printer.
740 oldWord
= SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_GETITEMDATA
,
743 if (nIDComboBox
== cmb2
)
744 dm
->u1
.s1
.dmPaperSize
= oldWord
;
746 dm
->u1
.s1
.dmDefaultSource
= oldWord
;
750 /* we enter here only when the Print setup dialog is initially
751 * opened. In this case the settings are restored from when
752 * the dialog was last closed.
755 if (nIDComboBox
== cmb2
)
756 oldWord
= dm
->u1
.s1
.dmPaperSize
;
758 oldWord
= dm
->u1
.s1
.dmDefaultSource
;
762 if (nIDComboBox
== cmb2
) {
764 fwCapability_Names
= DC_PAPERNAMES
;
765 fwCapability_Words
= DC_PAPERS
;
769 fwCapability_Names
= DC_BINNAMES
;
770 fwCapability_Words
= DC_BINS
;
773 NrOfEntries
= DeviceCapabilitiesW(PrinterName
, PortName
,
774 fwCapability_Names
, NULL
, dm
);
775 if (NrOfEntries
== 0)
776 WARN("no Name Entries found!\n");
777 else if (NrOfEntries
< 0)
780 if(DeviceCapabilitiesW(PrinterName
, PortName
, fwCapability_Words
, NULL
, dm
)
782 ERR("Number of caps is different\n");
786 Names
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(WCHAR
)*NamesSize
);
787 Words
= HeapAlloc(GetProcessHeap(),0, NrOfEntries
*sizeof(WORD
));
788 NrOfEntries
= DeviceCapabilitiesW(PrinterName
, PortName
,
789 fwCapability_Names
, Names
, dm
);
790 NrOfEntries
= DeviceCapabilitiesW(PrinterName
, PortName
,
791 fwCapability_Words
, Words
, dm
);
793 /* reset any current content in the combobox */
794 SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_RESETCONTENT
, 0, 0);
796 /* store new content */
797 for (i
= 0; i
< NrOfEntries
; i
++) {
798 DWORD pos
= SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_ADDSTRING
, 0,
799 (LPARAM
)(&Names
[i
*NamesSize
]) );
800 SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_SETITEMDATA
, pos
,
804 /* Look for old selection - can't do this is previous loop since
805 item order will change as more items are added */
807 for (i
= 0; i
< NrOfEntries
; i
++) {
808 if(SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_GETITEMDATA
, i
, 0) ==
814 SendDlgItemMessageW(hDlg
, nIDComboBox
, CB_SETCURSEL
, Sel
, 0);
816 HeapFree(GetProcessHeap(),0,Words
);
817 HeapFree(GetProcessHeap(),0,Names
);
822 /***********************************************************************
823 * PRINTDLG_UpdatePrinterInfoTexts [internal]
825 static void PRINTDLG_UpdatePrinterInfoTextsA(HWND hDlg
, const PRINTER_INFO_2A
*pi
)
828 char ResourceString
[256];
834 /* add all status messages */
835 for (i
= 0; i
< 25; i
++) {
836 if (pi
->Status
& (1<<i
)) {
837 LoadStringA(COMDLG32_hInstance
, PD32_PRINTER_STATUS_PAUSED
+i
,
838 ResourceString
, 255);
839 strcat(StatusMsg
,ResourceString
);
843 /* FIXME: status==ready must only be appended if really so.
844 but how to detect? */
845 LoadStringA(COMDLG32_hInstance
, PD32_PRINTER_STATUS_READY
,
846 ResourceString
, 255);
847 strcat(StatusMsg
,ResourceString
);
848 SetDlgItemTextA(hDlg
, stc12
, StatusMsg
);
850 /* set all other printer info texts */
851 SetDlgItemTextA(hDlg
, stc11
, pi
->pDriverName
);
853 if (pi
->pLocation
!= NULL
&& pi
->pLocation
[0] != '\0')
854 SetDlgItemTextA(hDlg
, stc14
, pi
->pLocation
);
856 SetDlgItemTextA(hDlg
, stc14
, pi
->pPortName
);
857 SetDlgItemTextA(hDlg
, stc13
, pi
->pComment
? pi
->pComment
: "");
861 static void PRINTDLG_UpdatePrinterInfoTextsW(HWND hDlg
, const PRINTER_INFO_2W
*pi
)
863 WCHAR StatusMsg
[256];
864 WCHAR ResourceString
[256];
865 static const WCHAR emptyW
[] = {0};
871 /* add all status messages */
872 for (i
= 0; i
< 25; i
++) {
873 if (pi
->Status
& (1<<i
)) {
874 LoadStringW(COMDLG32_hInstance
, PD32_PRINTER_STATUS_PAUSED
+i
,
875 ResourceString
, 255);
876 lstrcatW(StatusMsg
,ResourceString
);
880 /* FIXME: status==ready must only be appended if really so.
881 but how to detect? */
882 LoadStringW(COMDLG32_hInstance
, PD32_PRINTER_STATUS_READY
,
883 ResourceString
, 255);
884 lstrcatW(StatusMsg
,ResourceString
);
885 SetDlgItemTextW(hDlg
, stc12
, StatusMsg
);
887 /* set all other printer info texts */
888 SetDlgItemTextW(hDlg
, stc11
, pi
->pDriverName
);
889 if (pi
->pLocation
!= NULL
&& pi
->pLocation
[0] != '\0')
890 SetDlgItemTextW(hDlg
, stc14
, pi
->pLocation
);
892 SetDlgItemTextW(hDlg
, stc14
, pi
->pPortName
);
893 SetDlgItemTextW(hDlg
, stc13
, pi
->pComment
? pi
->pComment
: emptyW
);
897 /*******************************************************************
899 * PRINTDLG_ChangePrinter
902 static BOOL
PRINTDLG_ChangePrinterA(HWND hDlg
, char *name
, PRINT_PTRA
*PrintStructures
)
904 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
905 LPDEVMODEA lpdm
= NULL
;
910 HeapFree(GetProcessHeap(),0, PrintStructures
->lpPrinterInfo
);
911 HeapFree(GetProcessHeap(),0, PrintStructures
->lpDriverInfo
);
912 if(!OpenPrinterA(name
, &hprn
, NULL
)) {
913 ERR("Can't open printer %s\n", name
);
916 GetPrinterA(hprn
, 2, NULL
, 0, &needed
);
917 PrintStructures
->lpPrinterInfo
= HeapAlloc(GetProcessHeap(),0,needed
);
918 GetPrinterA(hprn
, 2, (LPBYTE
)PrintStructures
->lpPrinterInfo
, needed
,
920 GetPrinterDriverA(hprn
, NULL
, 3, NULL
, 0, &needed
);
921 PrintStructures
->lpDriverInfo
= HeapAlloc(GetProcessHeap(),0,needed
);
922 if (!GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)PrintStructures
->lpDriverInfo
,
924 ERR("GetPrinterDriverA failed for %s, fix your config!\n",PrintStructures
->lpPrinterInfo
->pPrinterName
);
929 PRINTDLG_UpdatePrinterInfoTextsA(hDlg
, PrintStructures
->lpPrinterInfo
);
931 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
932 PrintStructures
->lpDevMode
= NULL
;
934 dmSize
= DocumentPropertiesA(0, 0, name
, NULL
, NULL
, 0);
936 ERR("DocumentProperties fails on %s\n", debugstr_a(name
));
939 PrintStructures
->lpDevMode
= HeapAlloc(GetProcessHeap(), 0, dmSize
);
940 dmSize
= DocumentPropertiesA(0, 0, name
, PrintStructures
->lpDevMode
, NULL
,
942 if(lppd
->hDevMode
&& (lpdm
= GlobalLock(lppd
->hDevMode
)) &&
943 !lstrcmpA( (LPSTR
) lpdm
->dmDeviceName
,
944 (LPSTR
) PrintStructures
->lpDevMode
->dmDeviceName
)) {
945 /* Supplied devicemode matches current printer so try to use it */
946 DocumentPropertiesA(0, 0, name
, PrintStructures
->lpDevMode
, lpdm
,
947 DM_OUT_BUFFER
| DM_IN_BUFFER
);
950 GlobalUnlock(lppd
->hDevMode
);
952 lpdm
= PrintStructures
->lpDevMode
; /* use this as a shortcut */
954 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
955 /* Print range (All/Range/Selection) */
956 if(lppd
->nFromPage
!= 0xffff)
957 SetDlgItemInt(hDlg
, edt1
, lppd
->nFromPage
, FALSE
);
958 if(lppd
->nToPage
!= 0xffff)
959 SetDlgItemInt(hDlg
, edt2
, lppd
->nToPage
, FALSE
);
961 CheckRadioButton(hDlg
, rad1
, rad3
, rad1
); /* default */
962 if (lppd
->Flags
& PD_NOSELECTION
)
963 EnableWindow(GetDlgItem(hDlg
, rad2
), FALSE
);
965 if (lppd
->Flags
& PD_SELECTION
)
966 CheckRadioButton(hDlg
, rad1
, rad3
, rad2
);
967 if (lppd
->Flags
& PD_NOPAGENUMS
) {
968 EnableWindow(GetDlgItem(hDlg
, rad3
), FALSE
);
969 EnableWindow(GetDlgItem(hDlg
, stc2
),FALSE
);
970 EnableWindow(GetDlgItem(hDlg
, edt1
), FALSE
);
971 EnableWindow(GetDlgItem(hDlg
, stc3
),FALSE
);
972 EnableWindow(GetDlgItem(hDlg
, edt2
), FALSE
);
974 if (lppd
->Flags
& PD_PAGENUMS
)
975 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
980 * FIXME: The ico3 is not displayed for some reason. I don't know why.
982 if (lppd
->Flags
& PD_COLLATE
) {
983 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
984 (LPARAM
)PrintStructures
->hCollateIcon
);
985 CheckDlgButton(hDlg
, chx2
, 1);
987 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
988 (LPARAM
)PrintStructures
->hNoCollateIcon
);
989 CheckDlgButton(hDlg
, chx2
, 0);
992 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
993 /* if printer doesn't support it: no Collate */
994 if (!(lpdm
->dmFields
& DM_COLLATE
)) {
995 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
996 EnableWindow(GetDlgItem(hDlg
, ico3
), FALSE
);
1003 if (lppd
->hDevMode
== 0)
1004 copies
= lppd
->nCopies
;
1006 copies
= lpdm
->u1
.s1
.dmCopies
;
1007 if(copies
== 0) copies
= 1;
1008 else if(copies
< 0) copies
= MAX_COPIES
;
1009 SetDlgItemInt(hDlg
, edt3
, copies
, FALSE
);
1012 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
1013 /* if printer doesn't support it: no nCopies */
1014 if (!(lpdm
->dmFields
& DM_COPIES
)) {
1015 EnableWindow(GetDlgItem(hDlg
, edt3
), FALSE
);
1016 EnableWindow(GetDlgItem(hDlg
, stc5
), FALSE
);
1021 CheckDlgButton(hDlg
, chx1
, (lppd
->Flags
& PD_PRINTTOFILE
) ? 1 : 0);
1022 if (lppd
->Flags
& PD_DISABLEPRINTTOFILE
)
1023 EnableWindow(GetDlgItem(hDlg
, chx1
), FALSE
);
1024 if (lppd
->Flags
& PD_HIDEPRINTTOFILE
)
1025 ShowWindow(GetDlgItem(hDlg
, chx1
), SW_HIDE
);
1027 /* Fill print quality combo, PrintDlg16 */
1028 if(GetDlgItem(hDlg
, cmb1
))
1030 DWORD numResolutions
= DeviceCapabilitiesA(PrintStructures
->lpPrinterInfo
->pPrinterName
,
1031 PrintStructures
->lpPrinterInfo
->pPortName
,
1032 DC_ENUMRESOLUTIONS
, NULL
, lpdm
);
1034 if(numResolutions
!= -1)
1036 HWND hQuality
= GetDlgItem(hDlg
, cmb1
);
1041 HDC hPrinterDC
= CreateDCA(PrintStructures
->lpPrinterInfo
->pDriverName
,
1042 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1045 Resolutions
= HeapAlloc(GetProcessHeap(), 0, numResolutions
*sizeof(LONG
)*2);
1046 DeviceCapabilitiesA(PrintStructures
->lpPrinterInfo
->pPrinterName
,
1047 PrintStructures
->lpPrinterInfo
->pPortName
,
1048 DC_ENUMRESOLUTIONS
, (LPSTR
)Resolutions
, lpdm
);
1050 dpiX
= GetDeviceCaps(hPrinterDC
, LOGPIXELSX
);
1051 dpiY
= GetDeviceCaps(hPrinterDC
, LOGPIXELSY
);
1052 DeleteDC(hPrinterDC
);
1054 SendMessageA(hQuality
, CB_RESETCONTENT
, 0, 0);
1055 for(i
= 0; i
< (numResolutions
* 2); i
+= 2)
1057 BOOL IsDefault
= FALSE
;
1060 if(Resolutions
[i
] == Resolutions
[i
+1])
1062 if(dpiX
== Resolutions
[i
])
1064 sprintf(buf
, "%d dpi", Resolutions
[i
]);
1067 if(dpiX
== Resolutions
[i
] && dpiY
== Resolutions
[i
+1])
1069 sprintf(buf
, "%d dpi x %d dpi", Resolutions
[i
], Resolutions
[i
+1]);
1072 Index
= SendMessageA(hQuality
, CB_ADDSTRING
, 0, (LPARAM
)buf
);
1075 SendMessageA(hQuality
, CB_SETCURSEL
, Index
, 0);
1077 SendMessageA(hQuality
, CB_SETITEMDATA
, Index
, MAKELONG(dpiX
,dpiY
));
1079 HeapFree(GetProcessHeap(), 0, Resolutions
);
1082 } else { /* PD_PRINTSETUP */
1083 BOOL bPortrait
= (lpdm
->u1
.s1
.dmOrientation
== DMORIENT_PORTRAIT
);
1085 PRINTDLG_SetUpPaperComboBoxA(hDlg
, cmb2
,
1086 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1087 PrintStructures
->lpPrinterInfo
->pPortName
,
1089 PRINTDLG_SetUpPaperComboBoxA(hDlg
, cmb3
,
1090 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1091 PrintStructures
->lpPrinterInfo
->pPortName
,
1093 CheckRadioButton(hDlg
, rad1
, rad2
, bPortrait
? rad1
: rad2
);
1094 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1095 (LPARAM
)(bPortrait
? PrintStructures
->hPortraitIcon
:
1096 PrintStructures
->hLandscapeIcon
));
1101 if ((lppd
->Flags
& PD_SHOWHELP
)==0) {
1102 /* hide if PD_SHOWHELP not specified */
1103 ShowWindow(GetDlgItem(hDlg
, pshHelp
), SW_HIDE
);
1108 static BOOL
PRINTDLG_ChangePrinterW(HWND hDlg
, WCHAR
*name
,
1109 PRINT_PTRW
*PrintStructures
)
1111 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
1112 LPDEVMODEW lpdm
= NULL
;
1117 HeapFree(GetProcessHeap(),0, PrintStructures
->lpPrinterInfo
);
1118 HeapFree(GetProcessHeap(),0, PrintStructures
->lpDriverInfo
);
1119 if(!OpenPrinterW(name
, &hprn
, NULL
)) {
1120 ERR("Can't open printer %s\n", debugstr_w(name
));
1123 GetPrinterW(hprn
, 2, NULL
, 0, &needed
);
1124 PrintStructures
->lpPrinterInfo
= HeapAlloc(GetProcessHeap(),0,needed
);
1125 GetPrinterW(hprn
, 2, (LPBYTE
)PrintStructures
->lpPrinterInfo
, needed
,
1127 GetPrinterDriverW(hprn
, NULL
, 3, NULL
, 0, &needed
);
1128 PrintStructures
->lpDriverInfo
= HeapAlloc(GetProcessHeap(),0,needed
);
1129 if (!GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)PrintStructures
->lpDriverInfo
,
1131 ERR("GetPrinterDriverA failed for %s, fix your config!\n",debugstr_w(PrintStructures
->lpPrinterInfo
->pPrinterName
));
1136 PRINTDLG_UpdatePrinterInfoTextsW(hDlg
, PrintStructures
->lpPrinterInfo
);
1138 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
1139 PrintStructures
->lpDevMode
= NULL
;
1141 dmSize
= DocumentPropertiesW(0, 0, name
, NULL
, NULL
, 0);
1143 ERR("DocumentProperties fails on %s\n", debugstr_w(name
));
1146 PrintStructures
->lpDevMode
= HeapAlloc(GetProcessHeap(), 0, dmSize
);
1147 dmSize
= DocumentPropertiesW(0, 0, name
, PrintStructures
->lpDevMode
, NULL
,
1149 if(lppd
->hDevMode
&& (lpdm
= GlobalLock(lppd
->hDevMode
)) &&
1150 !lstrcmpW(lpdm
->dmDeviceName
,
1151 PrintStructures
->lpDevMode
->dmDeviceName
)) {
1152 /* Supplied devicemode matches current printer so try to use it */
1153 DocumentPropertiesW(0, 0, name
, PrintStructures
->lpDevMode
, lpdm
,
1154 DM_OUT_BUFFER
| DM_IN_BUFFER
);
1157 GlobalUnlock(lppd
->hDevMode
);
1159 lpdm
= PrintStructures
->lpDevMode
; /* use this as a shortcut */
1161 if(!(lppd
->Flags
& PD_PRINTSETUP
)) {
1162 /* Print range (All/Range/Selection) */
1163 if(lppd
->nFromPage
!= 0xffff)
1164 SetDlgItemInt(hDlg
, edt1
, lppd
->nFromPage
, FALSE
);
1165 if(lppd
->nToPage
!= 0xffff)
1166 SetDlgItemInt(hDlg
, edt2
, lppd
->nToPage
, FALSE
);
1168 CheckRadioButton(hDlg
, rad1
, rad3
, rad1
); /* default */
1169 if (lppd
->Flags
& PD_NOSELECTION
)
1170 EnableWindow(GetDlgItem(hDlg
, rad2
), FALSE
);
1172 if (lppd
->Flags
& PD_SELECTION
)
1173 CheckRadioButton(hDlg
, rad1
, rad3
, rad2
);
1174 if (lppd
->Flags
& PD_NOPAGENUMS
) {
1175 EnableWindow(GetDlgItem(hDlg
, rad3
), FALSE
);
1176 EnableWindow(GetDlgItem(hDlg
, stc2
),FALSE
);
1177 EnableWindow(GetDlgItem(hDlg
, edt1
), FALSE
);
1178 EnableWindow(GetDlgItem(hDlg
, stc3
),FALSE
);
1179 EnableWindow(GetDlgItem(hDlg
, edt2
), FALSE
);
1181 if (lppd
->Flags
& PD_PAGENUMS
)
1182 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
1187 * FIXME: The ico3 is not displayed for some reason. I don't know why.
1189 if (lppd
->Flags
& PD_COLLATE
) {
1190 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1191 (LPARAM
)PrintStructures
->hCollateIcon
);
1192 CheckDlgButton(hDlg
, chx2
, 1);
1194 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1195 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1196 CheckDlgButton(hDlg
, chx2
, 0);
1199 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
1200 /* if printer doesn't support it: no Collate */
1201 if (!(lpdm
->dmFields
& DM_COLLATE
)) {
1202 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
1203 EnableWindow(GetDlgItem(hDlg
, ico3
), FALSE
);
1210 if (lppd
->hDevMode
== 0)
1211 copies
= lppd
->nCopies
;
1213 copies
= lpdm
->u1
.s1
.dmCopies
;
1214 if(copies
== 0) copies
= 1;
1215 else if(copies
< 0) copies
= MAX_COPIES
;
1216 SetDlgItemInt(hDlg
, edt3
, copies
, FALSE
);
1219 if (lppd
->Flags
& PD_USEDEVMODECOPIESANDCOLLATE
) {
1220 /* if printer doesn't support it: no nCopies */
1221 if (!(lpdm
->dmFields
& DM_COPIES
)) {
1222 EnableWindow(GetDlgItem(hDlg
, edt3
), FALSE
);
1223 EnableWindow(GetDlgItem(hDlg
, stc5
), FALSE
);
1228 CheckDlgButton(hDlg
, chx1
, (lppd
->Flags
& PD_PRINTTOFILE
) ? 1 : 0);
1229 if (lppd
->Flags
& PD_DISABLEPRINTTOFILE
)
1230 EnableWindow(GetDlgItem(hDlg
, chx1
), FALSE
);
1231 if (lppd
->Flags
& PD_HIDEPRINTTOFILE
)
1232 ShowWindow(GetDlgItem(hDlg
, chx1
), SW_HIDE
);
1234 } else { /* PD_PRINTSETUP */
1235 BOOL bPortrait
= (lpdm
->u1
.s1
.dmOrientation
== DMORIENT_PORTRAIT
);
1237 PRINTDLG_SetUpPaperComboBoxW(hDlg
, cmb2
,
1238 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1239 PrintStructures
->lpPrinterInfo
->pPortName
,
1241 PRINTDLG_SetUpPaperComboBoxW(hDlg
, cmb3
,
1242 PrintStructures
->lpPrinterInfo
->pPrinterName
,
1243 PrintStructures
->lpPrinterInfo
->pPortName
,
1245 CheckRadioButton(hDlg
, rad1
, rad2
, bPortrait
? rad1
: rad2
);
1246 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1247 (LPARAM
)(bPortrait
? PrintStructures
->hPortraitIcon
:
1248 PrintStructures
->hLandscapeIcon
));
1253 if ((lppd
->Flags
& PD_SHOWHELP
)==0) {
1254 /* hide if PD_SHOWHELP not specified */
1255 ShowWindow(GetDlgItem(hDlg
, pshHelp
), SW_HIDE
);
1260 /***********************************************************************
1261 * check_printer_setup [internal]
1263 static LRESULT
check_printer_setup(HWND hDlg
)
1266 WCHAR resourcestr
[256],resultstr
[256];
1268 EnumPrintersW(PRINTER_ENUM_LOCAL
, NULL
, 2, NULL
, 0, &needed
, &num
);
1271 EnumPrintersW(PRINTER_ENUM_CONNECTIONS
, NULL
, 2, NULL
, 0, &needed
, &num
);
1277 LoadStringW(COMDLG32_hInstance
, PD32_NO_DEVICES
,resultstr
, 255);
1278 LoadStringW(COMDLG32_hInstance
, PD32_PRINT_TITLE
,resourcestr
, 255);
1279 MessageBoxW(hDlg
, resultstr
, resourcestr
,MB_OK
| MB_ICONWARNING
);
1284 /***********************************************************************
1285 * PRINTDLG_WMInitDialog [internal]
1287 static LRESULT
PRINTDLG_WMInitDialog(HWND hDlg
,
1288 PRINT_PTRA
* PrintStructures
)
1290 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
1294 UINT comboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1296 /* load Collate ICONs */
1297 /* We load these with LoadImage because they are not a standard
1298 size and we don't want them rescaled */
1299 PrintStructures
->hCollateIcon
=
1300 LoadImageA(COMDLG32_hInstance
, "PD32_COLLATE", IMAGE_ICON
, 0, 0, 0);
1301 PrintStructures
->hNoCollateIcon
=
1302 LoadImageA(COMDLG32_hInstance
, "PD32_NOCOLLATE", IMAGE_ICON
, 0, 0, 0);
1304 /* These can be done with LoadIcon */
1305 PrintStructures
->hPortraitIcon
=
1306 LoadIconA(COMDLG32_hInstance
, "PD32_PORTRAIT");
1307 PrintStructures
->hLandscapeIcon
=
1308 LoadIconA(COMDLG32_hInstance
, "PD32_LANDSCAPE");
1310 /* display the collate/no_collate icon */
1311 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1312 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1314 if(PrintStructures
->hCollateIcon
== 0 ||
1315 PrintStructures
->hNoCollateIcon
== 0 ||
1316 PrintStructures
->hPortraitIcon
== 0 ||
1317 PrintStructures
->hLandscapeIcon
== 0) {
1318 ERR("no icon in resourcefile\n");
1319 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
1320 EndDialog(hDlg
, FALSE
);
1324 * if lppd->Flags PD_SHOWHELP is specified, a HELPMESGSTRING message
1325 * must be registered and the Help button must be shown.
1327 if (lppd
->Flags
& PD_SHOWHELP
) {
1328 if((PrintStructures
->HelpMessageID
=
1329 RegisterWindowMessageA(HELPMSGSTRINGA
)) == 0) {
1330 COMDLG32_SetCommDlgExtendedError(CDERR_REGISTERMSGFAIL
);
1334 PrintStructures
->HelpMessageID
= 0;
1336 if(!(lppd
->Flags
&PD_PRINTSETUP
)) {
1337 PrintStructures
->hwndUpDown
=
1338 CreateUpDownControl(WS_CHILD
| WS_VISIBLE
| WS_BORDER
|
1339 UDS_NOTHOUSANDS
| UDS_ARROWKEYS
|
1340 UDS_ALIGNRIGHT
| UDS_SETBUDDYINT
, 0, 0, 0, 0,
1341 hDlg
, UPDOWN_ID
, COMDLG32_hInstance
,
1342 GetDlgItem(hDlg
, edt3
), MAX_COPIES
, 1, 1);
1345 /* FIXME: I allow more freedom than either Win95 or WinNT,
1346 * which do not agree to what errors should be thrown or not
1347 * in case nToPage or nFromPage is out-of-range.
1349 if (lppd
->nMaxPage
< lppd
->nMinPage
)
1350 lppd
->nMaxPage
= lppd
->nMinPage
;
1351 if (lppd
->nMinPage
== lppd
->nMaxPage
)
1352 lppd
->Flags
|= PD_NOPAGENUMS
;
1353 if (lppd
->nToPage
< lppd
->nMinPage
)
1354 lppd
->nToPage
= lppd
->nMinPage
;
1355 if (lppd
->nToPage
> lppd
->nMaxPage
)
1356 lppd
->nToPage
= lppd
->nMaxPage
;
1357 if (lppd
->nFromPage
< lppd
->nMinPage
)
1358 lppd
->nFromPage
= lppd
->nMinPage
;
1359 if (lppd
->nFromPage
> lppd
->nMaxPage
)
1360 lppd
->nFromPage
= lppd
->nMaxPage
;
1362 /* if we have the combo box, fill it */
1363 if (GetDlgItem(hDlg
,comboID
)) {
1366 pdn
= GlobalLock(lppd
->hDevNames
);
1367 pdm
= GlobalLock(lppd
->hDevMode
);
1369 name
= (char*)pdn
+ pdn
->wDeviceOffset
;
1371 name
= (char*)pdm
->dmDeviceName
;
1372 PRINTDLG_SetUpPrinterListComboA(hDlg
, comboID
, name
);
1373 if(pdm
) GlobalUnlock(lppd
->hDevMode
);
1374 if(pdn
) GlobalUnlock(lppd
->hDevNames
);
1376 /* Now find selected printer and update rest of dlg */
1377 name
= HeapAlloc(GetProcessHeap(),0,256);
1378 if (GetDlgItemTextA(hDlg
, comboID
, name
, 255))
1379 PRINTDLG_ChangePrinterA(hDlg
, name
, PrintStructures
);
1380 HeapFree(GetProcessHeap(),0,name
);
1382 /* else use default printer */
1384 DWORD dwBufLen
= sizeof(name
);
1385 BOOL ret
= GetDefaultPrinterA(name
, &dwBufLen
);
1388 PRINTDLG_ChangePrinterA(hDlg
, name
, PrintStructures
);
1390 FIXME("No default printer found, expect problems!\n");
1395 static LRESULT
PRINTDLG_WMInitDialogW(HWND hDlg
,
1396 PRINT_PTRW
* PrintStructures
)
1398 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
1402 UINT comboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1404 /* load Collate ICONs */
1405 /* We load these with LoadImage because they are not a standard
1406 size and we don't want them rescaled */
1407 PrintStructures
->hCollateIcon
=
1408 LoadImageW(COMDLG32_hInstance
, pd32_collateW
, IMAGE_ICON
, 0, 0, 0);
1409 PrintStructures
->hNoCollateIcon
=
1410 LoadImageW(COMDLG32_hInstance
, pd32_nocollateW
, IMAGE_ICON
, 0, 0, 0);
1412 /* These can be done with LoadIcon */
1413 PrintStructures
->hPortraitIcon
=
1414 LoadIconW(COMDLG32_hInstance
, pd32_portraitW
);
1415 PrintStructures
->hLandscapeIcon
=
1416 LoadIconW(COMDLG32_hInstance
, pd32_landscapeW
);
1418 /* display the collate/no_collate icon */
1419 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1420 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1422 if(PrintStructures
->hCollateIcon
== 0 ||
1423 PrintStructures
->hNoCollateIcon
== 0 ||
1424 PrintStructures
->hPortraitIcon
== 0 ||
1425 PrintStructures
->hLandscapeIcon
== 0) {
1426 ERR("no icon in resourcefile\n");
1427 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
1428 EndDialog(hDlg
, FALSE
);
1432 * if lppd->Flags PD_SHOWHELP is specified, a HELPMESGSTRING message
1433 * must be registered and the Help button must be shown.
1435 if (lppd
->Flags
& PD_SHOWHELP
) {
1436 if((PrintStructures
->HelpMessageID
=
1437 RegisterWindowMessageW(HELPMSGSTRINGW
)) == 0) {
1438 COMDLG32_SetCommDlgExtendedError(CDERR_REGISTERMSGFAIL
);
1442 PrintStructures
->HelpMessageID
= 0;
1444 if(!(lppd
->Flags
&PD_PRINTSETUP
)) {
1445 PrintStructures
->hwndUpDown
=
1446 CreateUpDownControl(WS_CHILD
| WS_VISIBLE
| WS_BORDER
|
1447 UDS_NOTHOUSANDS
| UDS_ARROWKEYS
|
1448 UDS_ALIGNRIGHT
| UDS_SETBUDDYINT
, 0, 0, 0, 0,
1449 hDlg
, UPDOWN_ID
, COMDLG32_hInstance
,
1450 GetDlgItem(hDlg
, edt3
), MAX_COPIES
, 1, 1);
1453 /* FIXME: I allow more freedom than either Win95 or WinNT,
1454 * which do not agree to what errors should be thrown or not
1455 * in case nToPage or nFromPage is out-of-range.
1457 if (lppd
->nMaxPage
< lppd
->nMinPage
)
1458 lppd
->nMaxPage
= lppd
->nMinPage
;
1459 if (lppd
->nMinPage
== lppd
->nMaxPage
)
1460 lppd
->Flags
|= PD_NOPAGENUMS
;
1461 if (lppd
->nToPage
< lppd
->nMinPage
)
1462 lppd
->nToPage
= lppd
->nMinPage
;
1463 if (lppd
->nToPage
> lppd
->nMaxPage
)
1464 lppd
->nToPage
= lppd
->nMaxPage
;
1465 if (lppd
->nFromPage
< lppd
->nMinPage
)
1466 lppd
->nFromPage
= lppd
->nMinPage
;
1467 if (lppd
->nFromPage
> lppd
->nMaxPage
)
1468 lppd
->nFromPage
= lppd
->nMaxPage
;
1470 /* if we have the combo box, fill it */
1471 if (GetDlgItem(hDlg
,comboID
)) {
1474 pdn
= GlobalLock(lppd
->hDevNames
);
1475 pdm
= GlobalLock(lppd
->hDevMode
);
1477 name
= (WCHAR
*)pdn
+ pdn
->wDeviceOffset
;
1479 name
= pdm
->dmDeviceName
;
1480 PRINTDLG_SetUpPrinterListComboW(hDlg
, comboID
, name
);
1481 if(pdm
) GlobalUnlock(lppd
->hDevMode
);
1482 if(pdn
) GlobalUnlock(lppd
->hDevNames
);
1484 /* Now find selected printer and update rest of dlg */
1485 /* ansi is ok here */
1486 name
= HeapAlloc(GetProcessHeap(),0,256*sizeof(WCHAR
));
1487 if (GetDlgItemTextW(hDlg
, comboID
, name
, 255))
1488 PRINTDLG_ChangePrinterW(hDlg
, name
, PrintStructures
);
1489 HeapFree(GetProcessHeap(),0,name
);
1491 /* else use default printer */
1493 DWORD dwBufLen
= sizeof(name
) / sizeof(WCHAR
);
1494 BOOL ret
= GetDefaultPrinterW(name
, &dwBufLen
);
1497 PRINTDLG_ChangePrinterW(hDlg
, name
, PrintStructures
);
1499 FIXME("No default printer found, expect problems!\n");
1504 /***********************************************************************
1505 * PRINTDLG_WMCommand [internal]
1507 static LRESULT
PRINTDLG_WMCommandA(HWND hDlg
, WPARAM wParam
,
1508 PRINT_PTRA
* PrintStructures
)
1510 LPPRINTDLGA lppd
= PrintStructures
->lpPrintDlg
;
1511 UINT PrinterComboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1512 LPDEVMODEA lpdm
= PrintStructures
->lpDevMode
;
1514 switch (LOWORD(wParam
)) {
1516 TRACE(" OK button was hit\n");
1517 if (!PRINTDLG_UpdatePrintDlgA(hDlg
, PrintStructures
)) {
1518 FIXME("Update printdlg was not successful!\n");
1521 EndDialog(hDlg
, TRUE
);
1525 TRACE(" CANCEL button was hit\n");
1526 EndDialog(hDlg
, FALSE
);
1530 TRACE(" HELP button was hit\n");
1531 SendMessageA(lppd
->hwndOwner
, PrintStructures
->HelpMessageID
,
1532 (WPARAM
) hDlg
, (LPARAM
) lppd
);
1535 case chx2
: /* collate pages checkbox */
1536 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
1537 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1538 (LPARAM
)PrintStructures
->hCollateIcon
);
1540 SendDlgItemMessageA(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1541 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1543 case edt1
: /* from page nr editbox */
1544 case edt2
: /* to page nr editbox */
1545 if (HIWORD(wParam
)==EN_CHANGE
) {
1548 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
1549 nToPage
= GetDlgItemInt(hDlg
, edt2
, NULL
, FALSE
);
1550 if (nFromPage
!= lppd
->nFromPage
|| nToPage
!= lppd
->nToPage
)
1551 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
1556 if(HIWORD(wParam
) == EN_CHANGE
) {
1557 INT copies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
1559 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
1561 EnableWindow(GetDlgItem(hDlg
, chx2
), TRUE
);
1565 case psh2
: /* Properties button */
1568 char PrinterName
[256];
1570 GetDlgItemTextA(hDlg
, PrinterComboID
, PrinterName
, 255);
1571 if (!OpenPrinterA(PrinterName
, &hPrinter
, NULL
)) {
1572 FIXME(" Call to OpenPrinter did not succeed!\n");
1575 DocumentPropertiesA(hDlg
, hPrinter
, PrinterName
,
1576 PrintStructures
->lpDevMode
,
1577 PrintStructures
->lpDevMode
,
1578 DM_IN_BUFFER
| DM_OUT_BUFFER
| DM_IN_PROMPT
);
1579 ClosePrinter(hPrinter
);
1583 case rad1
: /* Paperorientation */
1584 if (lppd
->Flags
& PD_PRINTSETUP
)
1586 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1587 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1588 (LPARAM
)(PrintStructures
->hPortraitIcon
));
1592 case rad2
: /* Paperorientation */
1593 if (lppd
->Flags
& PD_PRINTSETUP
)
1595 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1596 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1597 (LPARAM
)(PrintStructures
->hLandscapeIcon
));
1601 case cmb1
: /* Printer Combobox in PRINT SETUP, quality combobox in PRINT16 */
1602 if (PrinterComboID
!= LOWORD(wParam
)) {
1606 case cmb4
: /* Printer combobox */
1607 if (HIWORD(wParam
)==CBN_SELCHANGE
) {
1608 char PrinterName
[256];
1609 GetDlgItemTextA(hDlg
, LOWORD(wParam
), PrinterName
, 255);
1610 PRINTDLG_ChangePrinterA(hDlg
, PrinterName
, PrintStructures
);
1614 case cmb2
: /* Papersize */
1616 DWORD Sel
= SendDlgItemMessageA(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0);
1618 lpdm
->u1
.s1
.dmPaperSize
= SendDlgItemMessageA(hDlg
, cmb2
,
1624 case cmb3
: /* Bin */
1626 DWORD Sel
= SendDlgItemMessageA(hDlg
, cmb3
, CB_GETCURSEL
, 0, 0);
1628 lpdm
->u1
.s1
.dmDefaultSource
= SendDlgItemMessageA(hDlg
, cmb3
,
1629 CB_GETITEMDATA
, Sel
,
1634 if(lppd
->Flags
& PD_PRINTSETUP
) {
1635 switch (LOWORD(wParam
)) {
1636 case rad1
: /* orientation */
1638 if (IsDlgButtonChecked(hDlg
, rad1
) == BST_CHECKED
) {
1639 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_PORTRAIT
) {
1640 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1641 SendDlgItemMessageA(hDlg
, stc10
, STM_SETIMAGE
, IMAGE_ICON
,
1642 (LPARAM
)PrintStructures
->hPortraitIcon
);
1643 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1644 (LPARAM
)PrintStructures
->hPortraitIcon
);
1647 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_LANDSCAPE
) {
1648 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1649 SendDlgItemMessageA(hDlg
, stc10
, STM_SETIMAGE
, IMAGE_ICON
,
1650 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1651 SendDlgItemMessageA(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1652 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1661 static LRESULT
PRINTDLG_WMCommandW(HWND hDlg
, WPARAM wParam
,
1662 PRINT_PTRW
* PrintStructures
)
1664 LPPRINTDLGW lppd
= PrintStructures
->lpPrintDlg
;
1665 UINT PrinterComboID
= (lppd
->Flags
& PD_PRINTSETUP
) ? cmb1
: cmb4
;
1666 LPDEVMODEW lpdm
= PrintStructures
->lpDevMode
;
1668 switch (LOWORD(wParam
)) {
1670 TRACE(" OK button was hit\n");
1671 if (!PRINTDLG_UpdatePrintDlgW(hDlg
, PrintStructures
)) {
1672 FIXME("Update printdlg was not successful!\n");
1675 EndDialog(hDlg
, TRUE
);
1679 TRACE(" CANCEL button was hit\n");
1680 EndDialog(hDlg
, FALSE
);
1684 TRACE(" HELP button was hit\n");
1685 SendMessageW(lppd
->hwndOwner
, PrintStructures
->HelpMessageID
,
1686 (WPARAM
) hDlg
, (LPARAM
) lppd
);
1689 case chx2
: /* collate pages checkbox */
1690 if (IsDlgButtonChecked(hDlg
, chx2
) == BST_CHECKED
)
1691 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1692 (LPARAM
)PrintStructures
->hCollateIcon
);
1694 SendDlgItemMessageW(hDlg
, ico3
, STM_SETIMAGE
, IMAGE_ICON
,
1695 (LPARAM
)PrintStructures
->hNoCollateIcon
);
1697 case edt1
: /* from page nr editbox */
1698 case edt2
: /* to page nr editbox */
1699 if (HIWORD(wParam
)==EN_CHANGE
) {
1702 nFromPage
= GetDlgItemInt(hDlg
, edt1
, NULL
, FALSE
);
1703 nToPage
= GetDlgItemInt(hDlg
, edt2
, NULL
, FALSE
);
1704 if (nFromPage
!= lppd
->nFromPage
|| nToPage
!= lppd
->nToPage
)
1705 CheckRadioButton(hDlg
, rad1
, rad3
, rad3
);
1710 if(HIWORD(wParam
) == EN_CHANGE
) {
1711 INT copies
= GetDlgItemInt(hDlg
, edt3
, NULL
, FALSE
);
1713 EnableWindow(GetDlgItem(hDlg
, chx2
), FALSE
);
1715 EnableWindow(GetDlgItem(hDlg
, chx2
), TRUE
);
1719 case psh2
: /* Properties button */
1722 WCHAR PrinterName
[256];
1724 if (!GetDlgItemTextW(hDlg
, PrinterComboID
, PrinterName
, 255)) break;
1725 if (!OpenPrinterW(PrinterName
, &hPrinter
, NULL
)) {
1726 FIXME(" Call to OpenPrinter did not succeed!\n");
1729 DocumentPropertiesW(hDlg
, hPrinter
, PrinterName
,
1730 PrintStructures
->lpDevMode
,
1731 PrintStructures
->lpDevMode
,
1732 DM_IN_BUFFER
| DM_OUT_BUFFER
| DM_IN_PROMPT
);
1733 ClosePrinter(hPrinter
);
1737 case rad1
: /* Paperorientation */
1738 if (lppd
->Flags
& PD_PRINTSETUP
)
1740 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1741 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1742 (LPARAM
)(PrintStructures
->hPortraitIcon
));
1746 case rad2
: /* Paperorientation */
1747 if (lppd
->Flags
& PD_PRINTSETUP
)
1749 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1750 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1751 (LPARAM
)(PrintStructures
->hLandscapeIcon
));
1755 case cmb1
: /* Printer Combobox in PRINT SETUP */
1757 case cmb4
: /* Printer combobox */
1758 if (HIWORD(wParam
)==CBN_SELCHANGE
) {
1759 WCHAR PrinterName
[256];
1760 GetDlgItemTextW(hDlg
, LOWORD(wParam
), PrinterName
, 255);
1761 PRINTDLG_ChangePrinterW(hDlg
, PrinterName
, PrintStructures
);
1765 case cmb2
: /* Papersize */
1767 DWORD Sel
= SendDlgItemMessageW(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0);
1769 lpdm
->u1
.s1
.dmPaperSize
= SendDlgItemMessageW(hDlg
, cmb2
,
1775 case cmb3
: /* Bin */
1777 DWORD Sel
= SendDlgItemMessageW(hDlg
, cmb3
, CB_GETCURSEL
, 0, 0);
1779 lpdm
->u1
.s1
.dmDefaultSource
= SendDlgItemMessageW(hDlg
, cmb3
,
1780 CB_GETITEMDATA
, Sel
,
1785 if(lppd
->Flags
& PD_PRINTSETUP
) {
1786 switch (LOWORD(wParam
)) {
1787 case rad1
: /* orientation */
1789 if (IsDlgButtonChecked(hDlg
, rad1
) == BST_CHECKED
) {
1790 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_PORTRAIT
) {
1791 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_PORTRAIT
;
1792 SendDlgItemMessageW(hDlg
, stc10
, STM_SETIMAGE
, IMAGE_ICON
,
1793 (LPARAM
)PrintStructures
->hPortraitIcon
);
1794 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1795 (LPARAM
)PrintStructures
->hPortraitIcon
);
1798 if(lpdm
->u1
.s1
.dmOrientation
!= DMORIENT_LANDSCAPE
) {
1799 lpdm
->u1
.s1
.dmOrientation
= DMORIENT_LANDSCAPE
;
1800 SendDlgItemMessageW(hDlg
, stc10
, STM_SETIMAGE
, IMAGE_ICON
,
1801 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1802 SendDlgItemMessageW(hDlg
, ico1
, STM_SETIMAGE
, IMAGE_ICON
,
1803 (LPARAM
)PrintStructures
->hLandscapeIcon
);
1812 /***********************************************************************
1813 * PrintDlgProcA [internal]
1815 static INT_PTR CALLBACK
PrintDlgProcA(HWND hDlg
, UINT uMsg
, WPARAM wParam
,
1818 PRINT_PTRA
* PrintStructures
;
1819 INT_PTR res
= FALSE
;
1821 if (uMsg
!=WM_INITDIALOG
) {
1822 PrintStructures
= GetPropW(hDlg
, printdlg_prop
);
1823 if (!PrintStructures
)
1826 PrintStructures
= (PRINT_PTRA
*) lParam
;
1827 SetPropW(hDlg
, printdlg_prop
, PrintStructures
);
1828 if(!check_printer_setup(hDlg
))
1830 EndDialog(hDlg
,FALSE
);
1833 res
= PRINTDLG_WMInitDialog(hDlg
, PrintStructures
);
1835 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
)
1836 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(
1837 hDlg
, uMsg
, wParam
, (LPARAM
)PrintStructures
->lpPrintDlg
1842 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
) {
1843 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(hDlg
,uMsg
,wParam
,
1850 return PRINTDLG_WMCommandA(hDlg
, wParam
, PrintStructures
);
1853 DestroyIcon(PrintStructures
->hCollateIcon
);
1854 DestroyIcon(PrintStructures
->hNoCollateIcon
);
1855 DestroyIcon(PrintStructures
->hPortraitIcon
);
1856 DestroyIcon(PrintStructures
->hLandscapeIcon
);
1857 if(PrintStructures
->hwndUpDown
)
1858 DestroyWindow(PrintStructures
->hwndUpDown
);
1864 static INT_PTR CALLBACK
PrintDlgProcW(HWND hDlg
, UINT uMsg
, WPARAM wParam
,
1867 PRINT_PTRW
* PrintStructures
;
1868 INT_PTR res
= FALSE
;
1870 if (uMsg
!=WM_INITDIALOG
) {
1871 PrintStructures
= GetPropW(hDlg
, printdlg_prop
);
1872 if (!PrintStructures
)
1875 PrintStructures
= (PRINT_PTRW
*) lParam
;
1876 SetPropW(hDlg
, printdlg_prop
, PrintStructures
);
1877 if(!check_printer_setup(hDlg
))
1879 EndDialog(hDlg
,FALSE
);
1882 res
= PRINTDLG_WMInitDialogW(hDlg
, PrintStructures
);
1884 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
)
1885 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(hDlg
, uMsg
, wParam
, (LPARAM
)PrintStructures
->lpPrintDlg
);
1889 if(PrintStructures
->lpPrintDlg
->Flags
& PD_ENABLEPRINTHOOK
) {
1890 res
= PrintStructures
->lpPrintDlg
->lpfnPrintHook(hDlg
,uMsg
,wParam
, lParam
);
1896 return PRINTDLG_WMCommandW(hDlg
, wParam
, PrintStructures
);
1899 DestroyIcon(PrintStructures
->hCollateIcon
);
1900 DestroyIcon(PrintStructures
->hNoCollateIcon
);
1901 DestroyIcon(PrintStructures
->hPortraitIcon
);
1902 DestroyIcon(PrintStructures
->hLandscapeIcon
);
1903 if(PrintStructures
->hwndUpDown
)
1904 DestroyWindow(PrintStructures
->hwndUpDown
);
1910 /************************************************************
1912 * PRINTDLG_GetDlgTemplate
1915 static HGLOBAL
PRINTDLG_GetDlgTemplateA(const PRINTDLGA
*lppd
)
1920 if (lppd
->Flags
& PD_PRINTSETUP
) {
1921 if(lppd
->Flags
& PD_ENABLESETUPTEMPLATEHANDLE
) {
1922 hDlgTmpl
= lppd
->hSetupTemplate
;
1923 } else if(lppd
->Flags
& PD_ENABLESETUPTEMPLATE
) {
1924 hResInfo
= FindResourceA(lppd
->hInstance
,
1925 lppd
->lpSetupTemplateName
, (LPSTR
)RT_DIALOG
);
1926 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1928 hResInfo
= FindResourceA(COMDLG32_hInstance
, "PRINT32_SETUP",
1930 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1933 if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATEHANDLE
) {
1934 hDlgTmpl
= lppd
->hPrintTemplate
;
1935 } else if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATE
) {
1936 hResInfo
= FindResourceA(lppd
->hInstance
,
1937 lppd
->lpPrintTemplateName
,
1939 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1941 hResInfo
= FindResourceA(COMDLG32_hInstance
, "PRINT32",
1943 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1949 static HGLOBAL
PRINTDLG_GetDlgTemplateW(const PRINTDLGW
*lppd
)
1953 static const WCHAR xpsetup
[] = { 'P','R','I','N','T','3','2','_','S','E','T','U','P',0};
1954 static const WCHAR xprint
[] = { 'P','R','I','N','T','3','2',0};
1956 if (lppd
->Flags
& PD_PRINTSETUP
) {
1957 if(lppd
->Flags
& PD_ENABLESETUPTEMPLATEHANDLE
) {
1958 hDlgTmpl
= lppd
->hSetupTemplate
;
1959 } else if(lppd
->Flags
& PD_ENABLESETUPTEMPLATE
) {
1960 hResInfo
= FindResourceW(lppd
->hInstance
,
1961 lppd
->lpSetupTemplateName
, (LPWSTR
)RT_DIALOG
);
1962 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1964 hResInfo
= FindResourceW(COMDLG32_hInstance
, xpsetup
, (LPWSTR
)RT_DIALOG
);
1965 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1968 if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATEHANDLE
) {
1969 hDlgTmpl
= lppd
->hPrintTemplate
;
1970 } else if(lppd
->Flags
& PD_ENABLEPRINTTEMPLATE
) {
1971 hResInfo
= FindResourceW(lppd
->hInstance
,
1972 lppd
->lpPrintTemplateName
,
1974 hDlgTmpl
= LoadResource(lppd
->hInstance
, hResInfo
);
1976 hResInfo
= FindResourceW(COMDLG32_hInstance
, xprint
, (LPWSTR
)RT_DIALOG
);
1977 hDlgTmpl
= LoadResource(COMDLG32_hInstance
, hResInfo
);
1983 /***********************************************************************
1988 static BOOL
PRINTDLG_CreateDCA(LPPRINTDLGA lppd
)
1990 DEVNAMES
*pdn
= GlobalLock(lppd
->hDevNames
);
1991 DEVMODEA
*pdm
= GlobalLock(lppd
->hDevMode
);
1993 if(lppd
->Flags
& PD_RETURNDC
) {
1994 lppd
->hDC
= CreateDCA((char*)pdn
+ pdn
->wDriverOffset
,
1995 (char*)pdn
+ pdn
->wDeviceOffset
,
1996 (char*)pdn
+ pdn
->wOutputOffset
,
1998 } else if(lppd
->Flags
& PD_RETURNIC
) {
1999 lppd
->hDC
= CreateICA((char*)pdn
+ pdn
->wDriverOffset
,
2000 (char*)pdn
+ pdn
->wDeviceOffset
,
2001 (char*)pdn
+ pdn
->wOutputOffset
,
2004 GlobalUnlock(lppd
->hDevNames
);
2005 GlobalUnlock(lppd
->hDevMode
);
2006 return lppd
->hDC
? TRUE
: FALSE
;
2009 static BOOL
PRINTDLG_CreateDCW(LPPRINTDLGW lppd
)
2011 DEVNAMES
*pdn
= GlobalLock(lppd
->hDevNames
);
2012 DEVMODEW
*pdm
= GlobalLock(lppd
->hDevMode
);
2014 if(lppd
->Flags
& PD_RETURNDC
) {
2015 lppd
->hDC
= CreateDCW((WCHAR
*)pdn
+ pdn
->wDriverOffset
,
2016 (WCHAR
*)pdn
+ pdn
->wDeviceOffset
,
2017 (WCHAR
*)pdn
+ pdn
->wOutputOffset
,
2019 } else if(lppd
->Flags
& PD_RETURNIC
) {
2020 lppd
->hDC
= CreateICW((WCHAR
*)pdn
+ pdn
->wDriverOffset
,
2021 (WCHAR
*)pdn
+ pdn
->wDeviceOffset
,
2022 (WCHAR
*)pdn
+ pdn
->wOutputOffset
,
2025 GlobalUnlock(lppd
->hDevNames
);
2026 GlobalUnlock(lppd
->hDevMode
);
2027 return lppd
->hDC
? TRUE
: FALSE
;
2030 /***********************************************************************
2031 * PrintDlgA (COMDLG32.@)
2033 * Displays the PRINT dialog box, which enables the user to specify
2034 * specific properties of the print job.
2037 * lppd [IO] ptr to PRINTDLG32 struct
2040 * nonzero if the user pressed the OK button
2041 * zero if the user cancelled the window or an error occurred
2045 * * The Collate Icons do not display, even though they are in the code.
2046 * * The Properties Button(s) should call DocumentPropertiesA().
2049 BOOL WINAPI
PrintDlgA(LPPRINTDLGA lppd
)
2057 COMDLG32_SetCommDlgExtendedError(CDERR_INITIALIZATION
);
2061 if(TRACE_ON(commdlg
)) {
2062 char flagstr
[1000] = "";
2063 const struct pd_flags
*pflag
= pd_flags
;
2064 for( ; pflag
->name
; pflag
++) {
2065 if(lppd
->Flags
& pflag
->flag
)
2066 strcat(flagstr
, pflag
->name
);
2068 TRACE("(%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
2069 "pp. %d-%d, min p %d, max p %d, copies %d, hinst %p\n"
2070 "flags %08x (%s)\n",
2071 lppd
, lppd
->hwndOwner
, lppd
->hDevMode
, lppd
->hDevNames
,
2072 lppd
->nFromPage
, lppd
->nToPage
, lppd
->nMinPage
, lppd
->nMaxPage
,
2073 lppd
->nCopies
, lppd
->hInstance
, lppd
->Flags
, flagstr
);
2076 if(lppd
->lStructSize
!= sizeof(PRINTDLGA
)) {
2077 WARN("structure size failure !!!\n");
2078 COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE
);
2082 if(lppd
->Flags
& PD_RETURNDEFAULT
) {
2083 PRINTER_INFO_2A
*pbuf
;
2084 DRIVER_INFO_3A
*dbuf
;
2088 if(lppd
->hDevMode
|| lppd
->hDevNames
) {
2089 WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
2090 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2093 if(!PRINTDLG_OpenDefaultPrinter(&hprn
)) {
2094 WARN("Can't find default printer\n");
2095 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
2099 GetPrinterA(hprn
, 2, NULL
, 0, &needed
);
2100 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
2101 GetPrinterA(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
2103 GetPrinterDriverA(hprn
, NULL
, 3, NULL
, 0, &needed
);
2104 dbuf
= HeapAlloc(GetProcessHeap(),0,needed
);
2105 if (!GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
)) {
2106 ERR("GetPrinterDriverA failed, le %d, fix your config for printer %s!\n",
2107 GetLastError(),pbuf
->pPrinterName
);
2108 HeapFree(GetProcessHeap(), 0, dbuf
);
2109 HeapFree(GetProcessHeap(), 0, pbuf
);
2110 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2115 PRINTDLG_CreateDevNames(&(lppd
->hDevNames
),
2119 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, pbuf
->pDevMode
->dmSize
+
2120 pbuf
->pDevMode
->dmDriverExtra
);
2121 ptr
= GlobalLock(lppd
->hDevMode
);
2122 memcpy(ptr
, pbuf
->pDevMode
, pbuf
->pDevMode
->dmSize
+
2123 pbuf
->pDevMode
->dmDriverExtra
);
2124 GlobalUnlock(lppd
->hDevMode
);
2125 HeapFree(GetProcessHeap(), 0, pbuf
);
2126 HeapFree(GetProcessHeap(), 0, dbuf
);
2130 PRINT_PTRA
*PrintStructures
;
2132 /* load Dialog resources,
2133 * depending on Flags indicates Print32 or Print32_setup dialog
2135 hDlgTmpl
= PRINTDLG_GetDlgTemplateA(lppd
);
2137 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2140 ptr
= LockResource( hDlgTmpl
);
2142 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2146 PrintStructures
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2147 sizeof(PRINT_PTRA
));
2148 PrintStructures
->lpPrintDlg
= lppd
;
2150 /* and create & process the dialog .
2151 * -1 is failure, 0 is broken hwnd, everything else is ok.
2153 hInst
= COMDLG32_hInstance
;
2154 if (lppd
->Flags
& (PD_ENABLESETUPTEMPLATE
| PD_ENABLEPRINTTEMPLATE
)) hInst
= lppd
->hInstance
;
2155 bRet
= (0<DialogBoxIndirectParamA(hInst
, ptr
, lppd
->hwndOwner
,
2157 (LPARAM
)PrintStructures
));
2160 DEVMODEA
*lpdm
= PrintStructures
->lpDevMode
, *lpdmReturn
;
2161 PRINTER_INFO_2A
*pi
= PrintStructures
->lpPrinterInfo
;
2162 DRIVER_INFO_3A
*di
= PrintStructures
->lpDriverInfo
;
2164 if (lppd
->hDevMode
== 0) {
2165 TRACE(" No hDevMode yet... Need to create my own\n");
2166 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
,
2167 lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2169 lppd
->hDevMode
= GlobalReAlloc(lppd
->hDevMode
,
2170 lpdm
->dmSize
+ lpdm
->dmDriverExtra
,
2173 lpdmReturn
= GlobalLock(lppd
->hDevMode
);
2174 memcpy(lpdmReturn
, lpdm
, lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2176 PRINTDLG_CreateDevNames(&(lppd
->hDevNames
),
2181 GlobalUnlock(lppd
->hDevMode
);
2183 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
2184 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpPrinterInfo
);
2185 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDriverInfo
);
2186 HeapFree(GetProcessHeap(), 0, PrintStructures
);
2188 if(bRet
&& (lppd
->Flags
& PD_RETURNDC
|| lppd
->Flags
& PD_RETURNIC
))
2189 bRet
= PRINTDLG_CreateDCA(lppd
);
2191 TRACE("exit! (%d)\n", bRet
);
2195 /***********************************************************************
2196 * PrintDlgW (COMDLG32.@)
2200 BOOL WINAPI
PrintDlgW(LPPRINTDLGW lppd
)
2208 COMDLG32_SetCommDlgExtendedError(CDERR_INITIALIZATION
);
2212 if(TRACE_ON(commdlg
)) {
2213 char flagstr
[1000] = "";
2214 const struct pd_flags
*pflag
= pd_flags
;
2215 for( ; pflag
->name
; pflag
++) {
2216 if(lppd
->Flags
& pflag
->flag
)
2217 strcat(flagstr
, pflag
->name
);
2219 TRACE("(%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
2220 "pp. %d-%d, min p %d, max p %d, copies %d, hinst %p\n"
2221 "flags %08x (%s)\n",
2222 lppd
, lppd
->hwndOwner
, lppd
->hDevMode
, lppd
->hDevNames
,
2223 lppd
->nFromPage
, lppd
->nToPage
, lppd
->nMinPage
, lppd
->nMaxPage
,
2224 lppd
->nCopies
, lppd
->hInstance
, lppd
->Flags
, flagstr
);
2227 if(lppd
->lStructSize
!= sizeof(PRINTDLGW
)) {
2228 WARN("structure size failure !!!\n");
2229 COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE
);
2233 if(lppd
->Flags
& PD_RETURNDEFAULT
) {
2234 PRINTER_INFO_2W
*pbuf
;
2235 DRIVER_INFO_3W
*dbuf
;
2239 if(lppd
->hDevMode
|| lppd
->hDevNames
) {
2240 WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
2241 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2244 if(!PRINTDLG_OpenDefaultPrinter(&hprn
)) {
2245 WARN("Can't find default printer\n");
2246 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
2250 GetPrinterW(hprn
, 2, NULL
, 0, &needed
);
2251 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
2252 GetPrinterW(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
2254 GetPrinterDriverW(hprn
, NULL
, 3, NULL
, 0, &needed
);
2255 dbuf
= HeapAlloc(GetProcessHeap(),0,needed
);
2256 if (!GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
)) {
2257 ERR("GetPrinterDriverA failed, le %d, fix your config for printer %s!\n",
2258 GetLastError(),debugstr_w(pbuf
->pPrinterName
));
2259 HeapFree(GetProcessHeap(), 0, dbuf
);
2260 HeapFree(GetProcessHeap(), 0, pbuf
);
2261 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
2266 PRINTDLG_CreateDevNamesW(&(lppd
->hDevNames
),
2270 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, pbuf
->pDevMode
->dmSize
+
2271 pbuf
->pDevMode
->dmDriverExtra
);
2272 ptr
= GlobalLock(lppd
->hDevMode
);
2273 memcpy(ptr
, pbuf
->pDevMode
, pbuf
->pDevMode
->dmSize
+
2274 pbuf
->pDevMode
->dmDriverExtra
);
2275 GlobalUnlock(lppd
->hDevMode
);
2276 HeapFree(GetProcessHeap(), 0, pbuf
);
2277 HeapFree(GetProcessHeap(), 0, dbuf
);
2281 PRINT_PTRW
*PrintStructures
;
2283 /* load Dialog resources,
2284 * depending on Flags indicates Print32 or Print32_setup dialog
2286 hDlgTmpl
= PRINTDLG_GetDlgTemplateW(lppd
);
2288 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2291 ptr
= LockResource( hDlgTmpl
);
2293 COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE
);
2297 PrintStructures
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2298 sizeof(PRINT_PTRW
));
2299 PrintStructures
->lpPrintDlg
= lppd
;
2301 /* and create & process the dialog .
2302 * -1 is failure, 0 is broken hwnd, everything else is ok.
2304 hInst
= COMDLG32_hInstance
;
2305 if (lppd
->Flags
& (PD_ENABLESETUPTEMPLATE
| PD_ENABLEPRINTTEMPLATE
)) hInst
= lppd
->hInstance
;
2306 bRet
= (0<DialogBoxIndirectParamW(hInst
, ptr
, lppd
->hwndOwner
,
2308 (LPARAM
)PrintStructures
));
2311 DEVMODEW
*lpdm
= PrintStructures
->lpDevMode
, *lpdmReturn
;
2312 PRINTER_INFO_2W
*pi
= PrintStructures
->lpPrinterInfo
;
2313 DRIVER_INFO_3W
*di
= PrintStructures
->lpDriverInfo
;
2315 if (lppd
->hDevMode
== 0) {
2316 TRACE(" No hDevMode yet... Need to create my own\n");
2317 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
,
2318 lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2321 if((locks
= (GlobalFlags(lppd
->hDevMode
) & GMEM_LOCKCOUNT
))) {
2322 WARN("hDevMode has %d locks on it. Unlocking it now\n", locks
);
2324 GlobalUnlock(lppd
->hDevMode
);
2325 TRACE("Now got %d locks\n", locks
);
2328 lppd
->hDevMode
= GlobalReAlloc(lppd
->hDevMode
,
2329 lpdm
->dmSize
+ lpdm
->dmDriverExtra
,
2332 lpdmReturn
= GlobalLock(lppd
->hDevMode
);
2333 memcpy(lpdmReturn
, lpdm
, lpdm
->dmSize
+ lpdm
->dmDriverExtra
);
2335 if (lppd
->hDevNames
!= 0) {
2337 if((locks
= (GlobalFlags(lppd
->hDevNames
) & GMEM_LOCKCOUNT
))) {
2338 WARN("hDevNames has %d locks on it. Unlocking it now\n", locks
);
2340 GlobalUnlock(lppd
->hDevNames
);
2343 PRINTDLG_CreateDevNamesW(&(lppd
->hDevNames
),
2348 GlobalUnlock(lppd
->hDevMode
);
2350 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDevMode
);
2351 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpPrinterInfo
);
2352 HeapFree(GetProcessHeap(), 0, PrintStructures
->lpDriverInfo
);
2353 HeapFree(GetProcessHeap(), 0, PrintStructures
);
2355 if(bRet
&& (lppd
->Flags
& PD_RETURNDC
|| lppd
->Flags
& PD_RETURNIC
))
2356 bRet
= PRINTDLG_CreateDCW(lppd
);
2358 TRACE("exit! (%d)\n", bRet
);
2362 /***********************************************************************
2367 * cmb1 - printer select (not in standard dialog template)
2369 * cmb3 - source (tray?)
2370 * edt4 - border left
2372 * edt6 - border right
2373 * edt7 - border bottom
2374 * psh3 - "Printer..."
2382 LPPAGESETUPDLGA dlga
;
2383 LPPAGESETUPDLGW dlgw
;
2385 HWND hDlg
; /* Page Setup dialog handle */
2386 RECT rtDrawRect
; /* Drawing rect for page */
2389 static inline DWORD
pagesetup_get_flags(const pagesetup_data
*data
)
2391 return data
->u
.dlgw
->Flags
;
2394 static inline BOOL
is_metric(const pagesetup_data
*data
)
2396 return pagesetup_get_flags(data
) & PSD_INHUNDREDTHSOFMILLIMETERS
;
2399 static inline LONG
tenths_mm_to_size(const pagesetup_data
*data
, LONG size
)
2401 if (is_metric(data
))
2404 return 10 * size
* 100 / 254;
2407 static inline LONG
thousandths_inch_to_size(const pagesetup_data
*data
, LONG size
)
2409 if (is_metric(data
))
2410 return size
* 254 / 100;
2415 static WCHAR
get_decimal_sep(void)
2421 WCHAR buf
[2] = {'.',0};
2422 GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_SDECIMAL
, buf
, sizeof(buf
) / sizeof(buf
[0]));
2428 static void size2str(const pagesetup_data
*data
, DWORD size
, LPWSTR strout
)
2430 WCHAR integer_fmt
[] = {'%','d',0};
2431 WCHAR hundredths_fmt
[] = {'%','d','%','c','%','0','2','d',0};
2432 WCHAR thousandths_fmt
[] = {'%','d','%','c','%','0','3','d',0};
2434 /* FIXME use LOCALE_SDECIMAL when the edit parsing code can cope */
2436 if (is_metric(data
))
2439 wsprintfW(strout
, hundredths_fmt
, size
/ 100, get_decimal_sep(), size
% 100);
2441 wsprintfW(strout
, integer_fmt
, size
/ 100);
2446 wsprintfW(strout
, thousandths_fmt
, size
/ 1000, get_decimal_sep(), size
% 1000);
2448 wsprintfW(strout
, integer_fmt
, size
/ 1000);
2453 static inline BOOL
is_default_metric(void)
2456 GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_IMEASURE
| LOCALE_RETURN_NUMBER
,
2457 (LPWSTR
)&system
, sizeof(system
));
2461 /**********************************************
2463 * Cyclically permute the four members of rc
2464 * If sense is TRUE l -> t -> r -> b
2465 * otherwise l <- t <- r <- b
2467 static inline void rotate_rect(RECT
*rc
, BOOL sense
)
2473 rc
->bottom
= rc
->right
;
2474 rc
->right
= rc
->top
;
2482 rc
->top
= rc
->right
;
2483 rc
->right
= rc
->bottom
;
2488 static void pagesetup_set_orientation(pagesetup_data
*data
, WORD orient
)
2490 DEVMODEW
*dm
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2492 assert(orient
== DMORIENT_PORTRAIT
|| orient
== DMORIENT_LANDSCAPE
);
2495 dm
->u1
.s1
.dmOrientation
= orient
;
2498 DEVMODEA
*dmA
= (DEVMODEA
*)dm
;
2499 dmA
->u1
.s1
.dmOrientation
= orient
;
2501 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2504 static WORD
pagesetup_get_orientation(const pagesetup_data
*data
)
2506 DEVMODEW
*dm
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2510 orient
= dm
->u1
.s1
.dmOrientation
;
2513 DEVMODEA
*dmA
= (DEVMODEA
*)dm
;
2514 orient
= dmA
->u1
.s1
.dmOrientation
;
2516 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2520 static void pagesetup_set_papersize(pagesetup_data
*data
, WORD paper
)
2522 DEVMODEW
*dm
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2525 dm
->u1
.s1
.dmPaperSize
= paper
;
2528 DEVMODEA
*dmA
= (DEVMODEA
*)dm
;
2529 dmA
->u1
.s1
.dmPaperSize
= paper
;
2531 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2534 static WORD
pagesetup_get_papersize(const pagesetup_data
*data
)
2536 DEVMODEW
*dm
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2540 paper
= dm
->u1
.s1
.dmPaperSize
;
2543 DEVMODEA
*dmA
= (DEVMODEA
*)dm
;
2544 paper
= dmA
->u1
.s1
.dmPaperSize
;
2546 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2550 static void pagesetup_set_defaultsource(pagesetup_data
*data
, WORD source
)
2552 DEVMODEW
*dm
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2555 dm
->u1
.s1
.dmDefaultSource
= source
;
2558 DEVMODEA
*dmA
= (DEVMODEA
*)dm
;
2559 dmA
->u1
.s1
.dmDefaultSource
= source
;
2561 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2566 devnames_driver_name
,
2567 devnames_device_name
,
2568 devnames_output_name
2572 static inline WORD
get_devname_offset(const DEVNAMES
*dn
, devnames_name which
)
2576 case devnames_driver_name
: return dn
->wDriverOffset
;
2577 case devnames_device_name
: return dn
->wDeviceOffset
;
2578 case devnames_output_name
: return dn
->wOutputOffset
;
2580 ERR("Souldn't be here\n");
2584 static WCHAR
*pagesetup_get_a_devname(const pagesetup_data
*data
, devnames_name which
)
2589 dn
= GlobalLock(data
->u
.dlgw
->hDevNames
);
2591 name
= strdupW((WCHAR
*)dn
+ get_devname_offset(dn
, which
));
2594 int len
= MultiByteToWideChar(CP_ACP
, 0, (char*)dn
+ get_devname_offset(dn
, which
), -1, NULL
, 0);
2595 name
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
2596 MultiByteToWideChar(CP_ACP
, 0, (char*)dn
+ get_devname_offset(dn
, which
), -1, name
, len
);
2598 GlobalUnlock(data
->u
.dlgw
->hDevNames
);
2602 static WCHAR
*pagesetup_get_drvname(const pagesetup_data
*data
)
2604 return pagesetup_get_a_devname(data
, devnames_driver_name
);
2607 static WCHAR
*pagesetup_get_devname(const pagesetup_data
*data
)
2609 return pagesetup_get_a_devname(data
, devnames_device_name
);
2612 static WCHAR
*pagesetup_get_portname(const pagesetup_data
*data
)
2614 return pagesetup_get_a_devname(data
, devnames_output_name
);
2617 static void pagesetup_release_a_devname(const pagesetup_data
*data
, WCHAR
*name
)
2619 HeapFree(GetProcessHeap(), 0, name
);
2622 static void pagesetup_set_devnames(pagesetup_data
*data
, LPCWSTR drv
, LPCWSTR devname
, LPCWSTR port
)
2626 DWORD len
= sizeof(DEVNAMES
), drv_len
, dev_len
, port_len
;
2630 drv_len
= (strlenW(drv
) + 1) * sizeof(WCHAR
);
2631 dev_len
= (strlenW(devname
) + 1) * sizeof(WCHAR
);
2632 port_len
= (strlenW(port
) + 1) * sizeof(WCHAR
);
2636 drv_len
= WideCharToMultiByte(CP_ACP
, 0, drv
, -1, NULL
, 0, NULL
, NULL
);
2637 dev_len
= WideCharToMultiByte(CP_ACP
, 0, devname
, -1, NULL
, 0, NULL
, NULL
);
2638 port_len
= WideCharToMultiByte(CP_ACP
, 0, port
, -1, NULL
, 0, NULL
, NULL
);
2640 len
+= drv_len
+ dev_len
+ port_len
;
2642 if(data
->u
.dlgw
->hDevNames
)
2643 data
->u
.dlgw
->hDevNames
= GlobalReAlloc(data
->u
.dlgw
->hDevNames
, len
, GMEM_MOVEABLE
);
2645 data
->u
.dlgw
->hDevNames
= GlobalAlloc(GMEM_MOVEABLE
, len
);
2647 dn
= GlobalLock(data
->u
.dlgw
->hDevNames
);
2651 WCHAR
*ptr
= (WCHAR
*)(dn
+ 1);
2652 len
= sizeof(DEVNAMES
) / sizeof(WCHAR
);
2653 dn
->wDriverOffset
= len
;
2655 ptr
+= drv_len
/ sizeof(WCHAR
);
2656 len
+= drv_len
/ sizeof(WCHAR
);
2657 dn
->wDeviceOffset
= len
;
2658 strcpyW(ptr
, devname
);
2659 ptr
+= dev_len
/ sizeof(WCHAR
);
2660 len
+= dev_len
/ sizeof(WCHAR
);
2661 dn
->wOutputOffset
= len
;
2666 char *ptr
= (char *)(dn
+ 1);
2667 len
= sizeof(DEVNAMES
);
2668 dn
->wDriverOffset
= len
;
2669 WideCharToMultiByte(CP_ACP
, 0, drv
, -1, ptr
, drv_len
, NULL
, NULL
);
2672 dn
->wDeviceOffset
= len
;
2673 WideCharToMultiByte(CP_ACP
, 0, devname
, -1, ptr
, dev_len
, NULL
, NULL
);
2676 dn
->wOutputOffset
= len
;
2677 WideCharToMultiByte(CP_ACP
, 0, port
, -1, ptr
, port_len
, NULL
, NULL
);
2681 len
= sizeof(def
) / sizeof(def
[0]);
2682 GetDefaultPrinterW(def
, &len
);
2683 if(!lstrcmpW(def
, devname
))
2686 GlobalUnlock(data
->u
.dlgw
->hDevNames
);
2689 static DEVMODEW
*pagesetup_get_devmode(const pagesetup_data
*data
)
2691 DEVMODEW
*dm
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2696 /* We make a copy even in the unicode case because the ptr
2697 may get passed back to us in pagesetup_set_devmode. */
2698 ret
= HeapAlloc(GetProcessHeap(), 0, dm
->dmSize
+ dm
->dmDriverExtra
);
2699 memcpy(ret
, dm
, dm
->dmSize
+ dm
->dmDriverExtra
);
2702 ret
= GdiConvertToDevmodeW((DEVMODEA
*)dm
);
2704 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2708 static void pagesetup_release_devmode(const pagesetup_data
*data
, DEVMODEW
*dm
)
2710 HeapFree(GetProcessHeap(), 0, dm
);
2713 static void pagesetup_set_devmode(pagesetup_data
*data
, DEVMODEW
*dm
)
2715 DEVMODEA
*dmA
= NULL
;
2721 size
= dm
->dmSize
+ dm
->dmDriverExtra
;
2726 dmA
= convert_to_devmodeA(dm
);
2727 size
= dmA
->dmSize
+ dmA
->dmDriverExtra
;
2731 if(data
->u
.dlgw
->hDevMode
)
2732 data
->u
.dlgw
->hDevMode
= GlobalReAlloc(data
->u
.dlgw
->hDevMode
, size
,
2735 data
->u
.dlgw
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, size
);
2737 dst
= GlobalLock(data
->u
.dlgw
->hDevMode
);
2738 memcpy(dst
, src
, size
);
2739 GlobalUnlock(data
->u
.dlgw
->hDevMode
);
2740 HeapFree(GetProcessHeap(), 0, dmA
);
2743 static inline POINT
*pagesetup_get_papersize_pt(const pagesetup_data
*data
)
2745 return &data
->u
.dlgw
->ptPaperSize
;
2748 static inline RECT
*pagesetup_get_margin_rect(const pagesetup_data
*data
)
2750 return &data
->u
.dlgw
->rtMargin
;
2759 static inline LPPAGESETUPHOOK
pagesetup_get_hook(const pagesetup_data
*data
, hook_type which
)
2763 case page_setup_hook
: return data
->u
.dlgw
->lpfnPageSetupHook
;
2764 case page_paint_hook
: return data
->u
.dlgw
->lpfnPagePaintHook
;
2769 /* This should only be used in calls to hook procs so we return the ptr
2770 already cast to LPARAM */
2771 static inline LPARAM
pagesetup_get_dlg_struct(const pagesetup_data
*data
)
2773 return (LPARAM
)data
->u
.dlgw
;
2776 static inline void swap_point(POINT
*pt
)
2783 static BOOL
pagesetup_update_papersize(pagesetup_data
*data
)
2786 LPWSTR devname
, portname
;
2788 WORD
*words
= NULL
, paperword
;
2789 POINT
*points
= NULL
;
2790 BOOL retval
= FALSE
;
2792 dm
= pagesetup_get_devmode(data
);
2793 devname
= pagesetup_get_devname(data
);
2794 portname
= pagesetup_get_portname(data
);
2796 num
= DeviceCapabilitiesW(devname
, portname
, DC_PAPERS
, NULL
, dm
);
2799 FIXME("No papernames found for %s/%s\n", debugstr_w(devname
), debugstr_w(portname
));
2803 words
= HeapAlloc(GetProcessHeap(), 0, num
* sizeof(WORD
));
2804 points
= HeapAlloc(GetProcessHeap(), 0, num
* sizeof(POINT
));
2806 if (num
!= DeviceCapabilitiesW(devname
, portname
, DC_PAPERS
, (LPWSTR
)words
, dm
))
2808 FIXME("Number of returned words is not %d\n", num
);
2812 if (num
!= DeviceCapabilitiesW(devname
, portname
, DC_PAPERSIZE
, (LPWSTR
)points
, dm
))
2814 FIXME("Number of returned sizes is not %d\n", num
);
2818 paperword
= pagesetup_get_papersize(data
);
2820 for (i
= 0; i
< num
; i
++)
2821 if (words
[i
] == paperword
)
2826 FIXME("Papersize %d not found in list?\n", paperword
);
2830 /* this is _10ths_ of a millimeter */
2831 pagesetup_get_papersize_pt(data
)->x
= tenths_mm_to_size(data
, points
[i
].x
);
2832 pagesetup_get_papersize_pt(data
)->y
= tenths_mm_to_size(data
, points
[i
].y
);
2834 if(pagesetup_get_orientation(data
) == DMORIENT_LANDSCAPE
)
2835 swap_point(pagesetup_get_papersize_pt(data
));
2840 HeapFree(GetProcessHeap(), 0, words
);
2841 HeapFree(GetProcessHeap(), 0, points
);
2842 pagesetup_release_a_devname(data
, portname
);
2843 pagesetup_release_a_devname(data
, devname
);
2844 pagesetup_release_devmode(data
, dm
);
2849 /**********************************************************************************************
2850 * pagesetup_change_printer
2852 * Redefines hDevMode and hDevNames HANDLES and initialises it.
2855 static BOOL
pagesetup_change_printer(LPWSTR name
, pagesetup_data
*data
)
2859 PRINTER_INFO_2W
*prn_info
= NULL
;
2860 DRIVER_INFO_3W
*drv_info
= NULL
;
2861 DEVMODEW
*dm
= NULL
;
2862 BOOL retval
= FALSE
;
2864 if(!OpenPrinterW(name
, &hprn
, NULL
))
2866 ERR("Can't open printer %s\n", debugstr_w(name
));
2870 GetPrinterW(hprn
, 2, NULL
, 0, &needed
);
2871 prn_info
= HeapAlloc(GetProcessHeap(), 0, needed
);
2872 GetPrinterW(hprn
, 2, (LPBYTE
)prn_info
, needed
, &needed
);
2873 GetPrinterDriverW(hprn
, NULL
, 3, NULL
, 0, &needed
);
2874 drv_info
= HeapAlloc(GetProcessHeap(), 0, needed
);
2875 if(!GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)drv_info
, needed
, &needed
))
2877 ERR("GetPrinterDriverA failed for %s, fix your config!\n", debugstr_w(prn_info
->pPrinterName
));
2882 needed
= DocumentPropertiesW(0, 0, name
, NULL
, NULL
, 0);
2885 ERR("DocumentProperties fails on %s\n", debugstr_w(name
));
2889 dm
= HeapAlloc(GetProcessHeap(), 0, needed
);
2890 DocumentPropertiesW(0, 0, name
, dm
, NULL
, DM_OUT_BUFFER
);
2892 pagesetup_set_devmode(data
, dm
);
2893 pagesetup_set_devnames(data
, drv_info
->pDriverPath
, prn_info
->pPrinterName
,
2894 prn_info
->pPortName
);
2898 HeapFree(GetProcessHeap(), 0, dm
);
2899 HeapFree(GetProcessHeap(), 0, prn_info
);
2900 HeapFree(GetProcessHeap(), 0, drv_info
);
2904 /****************************************************************************************
2905 * pagesetup_init_combos
2907 * Fills Printers, Paper and Source combos
2910 static void pagesetup_init_combos(HWND hDlg
, pagesetup_data
*data
)
2913 LPWSTR devname
, portname
;
2915 dm
= pagesetup_get_devmode(data
);
2916 devname
= pagesetup_get_devname(data
);
2917 portname
= pagesetup_get_portname(data
);
2919 PRINTDLG_SetUpPrinterListComboW(hDlg
, cmb1
, devname
);
2920 PRINTDLG_SetUpPaperComboBoxW(hDlg
, cmb2
, devname
, portname
, dm
);
2921 PRINTDLG_SetUpPaperComboBoxW(hDlg
, cmb3
, devname
, portname
, dm
);
2923 pagesetup_release_a_devname(data
, portname
);
2924 pagesetup_release_a_devname(data
, devname
);
2925 pagesetup_release_devmode(data
, dm
);
2929 /****************************************************************************************
2930 * pagesetup_change_printer_dialog
2932 * Pops up another dialog that lets the user pick another printer.
2934 * For now we display the PrintDlg, this should display a striped down version of it.
2936 static void pagesetup_change_printer_dialog(HWND hDlg
, pagesetup_data
*data
)
2939 LPWSTR drvname
, devname
, portname
;
2940 DEVMODEW
*tmp_dm
, *dm
;
2942 memset(&prnt
, 0, sizeof(prnt
));
2943 prnt
.lStructSize
= sizeof(prnt
);
2945 prnt
.hwndOwner
= hDlg
;
2947 drvname
= pagesetup_get_drvname(data
);
2948 devname
= pagesetup_get_devname(data
);
2949 portname
= pagesetup_get_portname(data
);
2951 PRINTDLG_CreateDevNamesW(&prnt
.hDevNames
, drvname
, devname
, portname
);
2952 pagesetup_release_a_devname(data
, portname
);
2953 pagesetup_release_a_devname(data
, devname
);
2954 pagesetup_release_a_devname(data
, drvname
);
2956 tmp_dm
= pagesetup_get_devmode(data
);
2957 prnt
.hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, tmp_dm
->dmSize
+ tmp_dm
->dmDriverExtra
);
2958 dm
= GlobalLock(prnt
.hDevMode
);
2959 memcpy(dm
, tmp_dm
, tmp_dm
->dmSize
+ tmp_dm
->dmDriverExtra
);
2960 GlobalUnlock(prnt
.hDevMode
);
2961 pagesetup_release_devmode(data
, tmp_dm
);
2963 if (PrintDlgW(&prnt
))
2965 DEVMODEW
*dm
= GlobalLock(prnt
.hDevMode
);
2966 DEVNAMES
*dn
= GlobalLock(prnt
.hDevNames
);
2968 pagesetup_set_devnames(data
, (WCHAR
*)dn
+ dn
->wDriverOffset
,
2969 (WCHAR
*)dn
+ dn
->wDeviceOffset
, (WCHAR
*)dn
+ dn
->wOutputOffset
);
2970 pagesetup_set_devmode(data
, dm
);
2971 GlobalUnlock(prnt
.hDevNames
);
2972 GlobalUnlock(prnt
.hDevMode
);
2973 pagesetup_init_combos(hDlg
, data
);
2976 GlobalFree(prnt
.hDevMode
);
2977 GlobalFree(prnt
.hDevNames
);
2981 /******************************************************************************************
2982 * pagesetup_change_preview
2984 * Changes paper preview size / position
2987 static void pagesetup_change_preview(const pagesetup_data
*data
)
2989 LONG width
, height
, x
, y
;
2991 const int shadow
= 4;
2993 if(pagesetup_get_orientation(data
) == DMORIENT_LANDSCAPE
)
2995 width
= data
->rtDrawRect
.right
- data
->rtDrawRect
.left
;
2996 height
= pagesetup_get_papersize_pt(data
)->y
* width
/ pagesetup_get_papersize_pt(data
)->x
;
3000 height
= data
->rtDrawRect
.bottom
- data
->rtDrawRect
.top
;
3001 width
= pagesetup_get_papersize_pt(data
)->x
* height
/ pagesetup_get_papersize_pt(data
)->y
;
3003 x
= (data
->rtDrawRect
.right
+ data
->rtDrawRect
.left
- width
) / 2;
3004 y
= (data
->rtDrawRect
.bottom
+ data
->rtDrawRect
.top
- height
) / 2;
3005 TRACE("draw rect %s x=%d, y=%d, w=%d, h=%d\n",
3006 wine_dbgstr_rect(&data
->rtDrawRect
), x
, y
, width
, height
);
3008 MoveWindow(GetDlgItem(data
->hDlg
, rct2
), x
+ width
, y
+ shadow
, shadow
, height
, FALSE
);
3009 MoveWindow(GetDlgItem(data
->hDlg
, rct3
), x
+ shadow
, y
+ height
, width
, shadow
, FALSE
);
3010 MoveWindow(GetDlgItem(data
->hDlg
, rct1
), x
, y
, width
, height
, FALSE
);
3012 tmp
= data
->rtDrawRect
;
3013 tmp
.right
+= shadow
;
3014 tmp
.bottom
+= shadow
;
3015 InvalidateRect(data
->hDlg
, &tmp
, TRUE
);
3018 static inline LONG
*element_from_margin_id(RECT
*rc
, WORD id
)
3022 case edt4
: return &rc
->left
;
3023 case edt5
: return &rc
->top
;
3024 case edt6
: return &rc
->right
;
3025 case edt7
: return &rc
->bottom
;
3030 static void update_margin_edits(HWND hDlg
, const pagesetup_data
*data
, WORD id
)
3035 for(idx
= edt4
; idx
<= edt7
; idx
++)
3037 if(id
== 0 || id
== idx
)
3039 size2str(data
, *element_from_margin_id(pagesetup_get_margin_rect(data
), idx
), str
);
3040 SetDlgItemTextW(hDlg
, idx
, str
);
3045 static void margin_edit_notification(HWND hDlg
, const pagesetup_data
*data
, WORD msg
, WORD id
)
3053 LONG
*value
= element_from_margin_id(pagesetup_get_margin_rect(data
), id
);
3055 if (GetDlgItemTextW(hDlg
, id
, buf
, sizeof(buf
) / sizeof(buf
[0])) != 0)
3058 WCHAR decimal
= get_decimal_sep();
3060 val
= strtolW(buf
, &end
, 10);
3061 if(end
!= buf
|| *end
== decimal
)
3063 int mult
= is_metric(data
) ? 100 : 1000;
3072 val
+= (*end
- '0') * mult
;
3084 update_margin_edits(hDlg
, data
, id
);
3089 static void set_margin_groupbox_title(HWND hDlg
, const pagesetup_data
*data
)
3093 if(LoadStringW(COMDLG32_hInstance
, is_metric(data
) ? PD32_MARGINS_IN_MILLIMETERS
: PD32_MARGINS_IN_INCHES
,
3094 title
, sizeof(title
)/sizeof(title
[0])))
3095 SetDlgItemTextW(hDlg
, grp4
, title
);
3098 static void pagesetup_update_orientation_buttons(HWND hDlg
, const pagesetup_data
*data
)
3100 if (pagesetup_get_orientation(data
) == DMORIENT_LANDSCAPE
)
3101 CheckRadioButton(hDlg
, rad1
, rad2
, rad2
);
3103 CheckRadioButton(hDlg
, rad1
, rad2
, rad1
);
3106 /****************************************************************************************
3107 * pagesetup_printer_properties
3109 * Handle invocation of the 'Properties' button (not present in the default template).
3111 static void pagesetup_printer_properties(HWND hDlg
, pagesetup_data
*data
)
3119 devname
= pagesetup_get_devname(data
);
3121 if (!OpenPrinterW(devname
, &hprn
, NULL
))
3123 FIXME("Call to OpenPrinter did not succeed!\n");
3124 pagesetup_release_a_devname(data
, devname
);
3128 dm
= pagesetup_get_devmode(data
);
3129 DocumentPropertiesW(hDlg
, hprn
, devname
, dm
, dm
, DM_IN_BUFFER
| DM_OUT_BUFFER
| DM_IN_PROMPT
);
3130 pagesetup_set_devmode(data
, dm
);
3131 pagesetup_release_devmode(data
, dm
);
3132 pagesetup_release_a_devname(data
, devname
);
3135 /* Changing paper */
3136 pagesetup_update_papersize(data
);
3137 pagesetup_update_orientation_buttons(hDlg
, data
);
3139 /* Changing paper preview */
3140 pagesetup_change_preview(data
);
3142 /* Selecting paper in combo */
3143 count
= SendDlgItemMessageW(hDlg
, cmb2
, CB_GETCOUNT
, 0, 0);
3146 WORD paperword
= pagesetup_get_papersize(data
);
3147 for(i
= 0; i
< count
; i
++)
3149 if(SendDlgItemMessageW(hDlg
, cmb2
, CB_GETITEMDATA
, i
, 0) == paperword
) {
3150 SendDlgItemMessageW(hDlg
, cmb2
, CB_SETCURSEL
, i
, 0);
3157 /********************************************************************************
3158 * pagesetup_wm_command
3159 * process WM_COMMAND message for PageSetupDlg
3162 * hDlg [in] Main dialog HANDLE
3163 * wParam [in] WM_COMMAND wParam
3164 * lParam [in] WM_COMMAND lParam
3165 * pda [in/out] ptr to PageSetupDataA
3168 static BOOL
pagesetup_wm_command(HWND hDlg
, WPARAM wParam
, LPARAM lParam
, pagesetup_data
*data
)
3170 WORD msg
= HIWORD(wParam
);
3171 WORD id
= LOWORD(wParam
);
3173 TRACE("loword (lparam) %d, wparam 0x%lx, lparam %08lx\n",
3174 LOWORD(lParam
),wParam
,lParam
);
3177 EndDialog(hDlg
, TRUE
);
3181 EndDialog(hDlg
, FALSE
);
3184 case psh3
: /* Printer... */
3185 pagesetup_change_printer_dialog(hDlg
, data
);
3188 case rad1
: /* Portrait */
3189 case rad2
: /* Landscape */
3190 if((id
== rad1
&& pagesetup_get_orientation(data
) == DMORIENT_LANDSCAPE
) ||
3191 (id
== rad2
&& pagesetup_get_orientation(data
) == DMORIENT_PORTRAIT
))
3193 pagesetup_set_orientation(data
, (id
== rad1
) ? DMORIENT_PORTRAIT
: DMORIENT_LANDSCAPE
);
3194 pagesetup_update_papersize(data
);
3195 rotate_rect(pagesetup_get_margin_rect(data
), (id
== rad2
));
3196 update_margin_edits(hDlg
, data
, 0);
3197 pagesetup_change_preview(data
);
3200 case cmb1
: /* Printer combo */
3201 if(msg
== CBN_SELCHANGE
)
3204 GetDlgItemTextW(hDlg
, id
, name
, sizeof(name
) / sizeof(name
[0]));
3205 pagesetup_change_printer(name
, data
);
3206 pagesetup_init_combos(hDlg
, data
);
3209 case cmb2
: /* Paper combo */
3210 if(msg
== CBN_SELCHANGE
)
3212 DWORD paperword
= SendDlgItemMessageW(hDlg
, cmb2
, CB_GETITEMDATA
,
3213 SendDlgItemMessageW(hDlg
, cmb2
, CB_GETCURSEL
, 0, 0), 0);
3214 if (paperword
!= CB_ERR
)
3216 pagesetup_set_papersize(data
, paperword
);
3217 pagesetup_update_papersize(data
);
3218 pagesetup_change_preview(data
);
3220 FIXME("could not get dialog text for papersize cmbbox?\n");
3223 case cmb3
: /* Paper Source */
3224 if(msg
== CBN_SELCHANGE
)
3226 WORD source
= SendDlgItemMessageW(hDlg
, cmb3
, CB_GETITEMDATA
,
3227 SendDlgItemMessageW(hDlg
, cmb3
, CB_GETCURSEL
, 0, 0), 0);
3228 pagesetup_set_defaultsource(data
, source
);
3231 case psh2
: /* Printer Properties button */
3232 pagesetup_printer_properties(hDlg
, data
);
3238 margin_edit_notification(hDlg
, data
, msg
, id
);
3241 InvalidateRect(GetDlgItem(hDlg
, rct1
), NULL
, TRUE
);
3245 /***********************************************************************
3246 * default_page_paint_hook
3247 * Default hook paint procedure that receives WM_PSD_* messages from the dialog box
3248 * whenever the sample page is redrawn.
3250 static UINT_PTR
default_page_paint_hook(HWND hwndDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
,
3251 const pagesetup_data
*data
)
3253 LPRECT lprc
= (LPRECT
) lParam
;
3254 HDC hdc
= (HDC
) wParam
;
3257 HFONT hfont
, holdfont
;
3259 TRACE("uMsg: WM_USER+%d\n",uMsg
-WM_USER
);
3260 /* Call user paint hook if enable */
3261 if (pagesetup_get_flags(data
) & PSD_ENABLEPAGEPAINTHOOK
)
3262 if (pagesetup_get_hook(data
, page_paint_hook
)(hwndDlg
, uMsg
, wParam
, lParam
))
3266 /* LPPAGESETUPDLG in lParam */
3267 case WM_PSD_PAGESETUPDLG
:
3268 /* Inform about the sample page rectangle */
3269 case WM_PSD_FULLPAGERECT
:
3270 /* Inform about the margin rectangle */
3271 case WM_PSD_MINMARGINRECT
:
3274 /* Draw dashed rectangle showing margins */
3275 case WM_PSD_MARGINRECT
:
3276 hpen
= CreatePen(PS_DASH
, 1, GetSysColor(COLOR_3DSHADOW
));
3277 holdpen
= SelectObject(hdc
, hpen
);
3278 Rectangle(hdc
, lprc
->left
, lprc
->top
, lprc
->right
, lprc
->bottom
);
3279 DeleteObject(SelectObject(hdc
, holdpen
));
3281 /* Draw the fake document */
3282 case WM_PSD_GREEKTEXTRECT
:
3283 /* select a nice scalable font, because we want the text really small */
3284 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, sizeof(lf
), &lf
, 0);
3285 lf
.lfHeight
= 6; /* value chosen based on visual effect */
3286 hfont
= CreateFontIndirectW(&lf
);
3287 holdfont
= SelectObject(hdc
, hfont
);
3289 /* if text not loaded, then do so now */
3290 if (wszFakeDocumentText
[0] == '\0')
3291 LoadStringW(COMDLG32_hInstance
,
3293 wszFakeDocumentText
,
3294 sizeof(wszFakeDocumentText
)/sizeof(wszFakeDocumentText
[0]));
3296 oldbkmode
= SetBkMode(hdc
, TRANSPARENT
);
3297 DrawTextW(hdc
, wszFakeDocumentText
, -1, lprc
, DT_TOP
|DT_LEFT
|DT_NOPREFIX
|DT_WORDBREAK
);
3298 SetBkMode(hdc
, oldbkmode
);
3300 DeleteObject(SelectObject(hdc
, holdfont
));
3303 /* Envelope stamp */
3304 case WM_PSD_ENVSTAMPRECT
:
3305 /* Return address */
3306 case WM_PSD_YAFULLPAGERECT
:
3307 FIXME("envelope/stamp is not implemented\n");
3310 FIXME("Unknown message %x\n",uMsg
);
3316 /***********************************************************************
3318 * The main paint procedure for the PageSetupDlg function.
3319 * The Page Setup dialog box includes an image of a sample page that shows how
3320 * the user's selections affect the appearance of the printed output.
3321 * The image consists of a rectangle that represents the selected paper
3322 * or envelope type, with a dotted-line rectangle representing
3323 * the current margins, and partial (Greek text) characters
3324 * to show how text looks on the printed page.
3326 * The following messages in the order sends to user hook procedure:
3327 * WM_PSD_PAGESETUPDLG Draw the contents of the sample page
3328 * WM_PSD_FULLPAGERECT Inform about the bounding rectangle
3329 * WM_PSD_MINMARGINRECT Inform about the margin rectangle (min margin?)
3330 * WM_PSD_MARGINRECT Draw the margin rectangle
3331 * WM_PSD_GREEKTEXTRECT Draw the Greek text inside the margin rectangle
3332 * If any of first three messages returns TRUE, painting done.
3335 * hWnd [in] Handle to the Page Setup dialog box
3336 * uMsg [in] Received message
3339 * WM_PSD_ENVSTAMPRECT Draw in the envelope-stamp rectangle (for envelopes only)
3340 * WM_PSD_YAFULLPAGERECT Draw the return address portion (for envelopes and other paper sizes)
3343 * FALSE if all done correctly
3348 static LRESULT CALLBACK
3349 PRINTDLG_PagePaintProc(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3352 RECT rcClient
, rcMargin
;
3355 HBRUSH hbrush
, holdbrush
;
3356 pagesetup_data
*data
;
3357 int papersize
=0, orientation
=0; /* FIXME: set this values for user paint hook */
3358 double scalx
, scaly
;
3360 if (uMsg
!= WM_PAINT
)
3361 return CallWindowProcA(lpfnStaticWndProc
, hWnd
, uMsg
, wParam
, lParam
);
3363 /* Processing WM_PAINT message */
3364 data
= GetPropW(hWnd
, pagesetupdlg_prop
);
3366 WARN("__WINE_PAGESETUPDLGDATA prop not set?\n");
3369 if (default_page_paint_hook(hWnd
, WM_PSD_PAGESETUPDLG
, MAKELONG(papersize
, orientation
),
3370 pagesetup_get_dlg_struct(data
), data
))
3373 hdc
= BeginPaint(hWnd
, &ps
);
3374 GetClientRect(hWnd
, &rcClient
);
3376 scalx
= rcClient
.right
/ (double)pagesetup_get_papersize_pt(data
)->x
;
3377 scaly
= rcClient
.bottom
/ (double)pagesetup_get_papersize_pt(data
)->y
;
3378 rcMargin
= rcClient
;
3380 rcMargin
.left
+= pagesetup_get_margin_rect(data
)->left
* scalx
;
3381 rcMargin
.top
+= pagesetup_get_margin_rect(data
)->top
* scaly
;
3382 rcMargin
.right
-= pagesetup_get_margin_rect(data
)->right
* scalx
;
3383 rcMargin
.bottom
-= pagesetup_get_margin_rect(data
)->bottom
* scaly
;
3385 /* if the space is too small then we make sure to not draw anything */
3386 rcMargin
.left
= min(rcMargin
.left
, rcMargin
.right
);
3387 rcMargin
.top
= min(rcMargin
.top
, rcMargin
.bottom
);
3389 if (!default_page_paint_hook(hWnd
, WM_PSD_FULLPAGERECT
, (WPARAM
)hdc
, (LPARAM
)&rcClient
, data
) &&
3390 !default_page_paint_hook(hWnd
, WM_PSD_MINMARGINRECT
, (WPARAM
)hdc
, (LPARAM
)&rcMargin
, data
) )
3392 /* fill background */
3393 hbrush
= GetSysColorBrush(COLOR_3DHIGHLIGHT
);
3394 FillRect(hdc
, &rcClient
, hbrush
);
3395 holdbrush
= SelectObject(hdc
, hbrush
);
3397 hpen
= CreatePen(PS_SOLID
, 1, GetSysColor(COLOR_3DSHADOW
));
3398 holdpen
= SelectObject(hdc
, hpen
);
3400 /* paint left edge */
3401 MoveToEx(hdc
, rcClient
.left
, rcClient
.top
, NULL
);
3402 LineTo(hdc
, rcClient
.left
, rcClient
.bottom
-1);
3404 /* paint top edge */
3405 MoveToEx(hdc
, rcClient
.left
, rcClient
.top
, NULL
);
3406 LineTo(hdc
, rcClient
.right
, rcClient
.top
);
3408 hpen
= CreatePen(PS_SOLID
, 1, GetSysColor(COLOR_3DDKSHADOW
));
3409 DeleteObject(SelectObject(hdc
, hpen
));
3411 /* paint right edge */
3412 MoveToEx(hdc
, rcClient
.right
-1, rcClient
.top
, NULL
);
3413 LineTo(hdc
, rcClient
.right
-1, rcClient
.bottom
);
3415 /* paint bottom edge */
3416 MoveToEx(hdc
, rcClient
.left
, rcClient
.bottom
-1, NULL
);
3417 LineTo(hdc
, rcClient
.right
, rcClient
.bottom
-1);
3419 DeleteObject(SelectObject(hdc
, holdpen
));
3420 DeleteObject(SelectObject(hdc
, holdbrush
));
3422 default_page_paint_hook(hWnd
, WM_PSD_MARGINRECT
, (WPARAM
)hdc
, (LPARAM
)&rcMargin
, data
);
3424 /* give text a bit of a space from the frame */
3427 rcMargin
.right
-= 2;
3428 rcMargin
.bottom
-= 2;
3430 /* if the space is too small then we make sure to not draw anything */
3431 rcMargin
.left
= min(rcMargin
.left
, rcMargin
.right
);
3432 rcMargin
.top
= min(rcMargin
.top
, rcMargin
.bottom
);
3434 default_page_paint_hook(hWnd
, WM_PSD_GREEKTEXTRECT
, (WPARAM
)hdc
, (LPARAM
)&rcMargin
, data
);
3437 EndPaint(hWnd
, &ps
);
3441 /*******************************************************
3442 * The margin edit controls are subclassed to filter
3443 * anything other than numbers and the decimal separator.
3445 static LRESULT CALLBACK
pagesetup_margin_editproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
3449 WCHAR decimal
= get_decimal_sep();
3450 WCHAR wc
= (WCHAR
)wparam
;
3451 if(!isdigitW(wc
) && wc
!= decimal
&& wc
!= VK_BACK
) return 0;
3453 return CallWindowProcW(edit_wndproc
, hwnd
, msg
, wparam
, lparam
);
3456 static void subclass_margin_edits(HWND hDlg
)
3461 for(id
= edt4
; id
<= edt7
; id
++)
3463 old_proc
= (WNDPROC
)SetWindowLongPtrW(GetDlgItem(hDlg
, id
),
3465 (ULONG_PTR
)pagesetup_margin_editproc
);
3466 InterlockedCompareExchangePointer((void**)&edit_wndproc
, old_proc
, NULL
);
3470 /***********************************************************************
3471 * pagesetup_dlg_proc
3473 * Message handler for PageSetupDlg
3475 static INT_PTR CALLBACK
pagesetup_dlg_proc(HWND hDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3477 pagesetup_data
*data
;
3478 INT_PTR res
= FALSE
;
3481 if (uMsg
== WM_INITDIALOG
) { /*Init dialog*/
3482 data
= (pagesetup_data
*)lParam
;
3485 hDrawWnd
= GetDlgItem(hDlg
, rct1
);
3486 TRACE("set property to %p\n", data
);
3487 SetPropW(hDlg
, pagesetupdlg_prop
, data
);
3488 SetPropW(hDrawWnd
, pagesetupdlg_prop
, data
);
3489 GetWindowRect(hDrawWnd
, &data
->rtDrawRect
); /* Calculating rect in client coordinates where paper draws */
3490 MapWindowPoints( 0, hDlg
, (LPPOINT
)&data
->rtDrawRect
, 2 );
3491 lpfnStaticWndProc
= (WNDPROC
)SetWindowLongPtrW(
3494 (ULONG_PTR
)PRINTDLG_PagePaintProc
);
3496 /* FIXME: Paint hook. Must it be at begin of initialization or at end? */
3498 if (pagesetup_get_flags(data
) & PSD_ENABLEPAGESETUPHOOK
)
3500 if (!pagesetup_get_hook(data
, page_setup_hook
)(hDlg
, uMsg
, wParam
,
3501 pagesetup_get_dlg_struct(data
)))
3502 FIXME("Setup page hook failed?\n");
3505 /* if printer button disabled */
3506 if (pagesetup_get_flags(data
) & PSD_DISABLEPRINTER
)
3507 EnableWindow(GetDlgItem(hDlg
, psh3
), FALSE
);
3508 /* if margin edit boxes disabled */
3509 if (pagesetup_get_flags(data
) & PSD_DISABLEMARGINS
)
3511 EnableWindow(GetDlgItem(hDlg
, edt4
), FALSE
);
3512 EnableWindow(GetDlgItem(hDlg
, edt5
), FALSE
);
3513 EnableWindow(GetDlgItem(hDlg
, edt6
), FALSE
);
3514 EnableWindow(GetDlgItem(hDlg
, edt7
), FALSE
);
3517 /* Set orientation radiobuttons properly */
3518 pagesetup_update_orientation_buttons(hDlg
, data
);
3520 /* if orientation disabled */
3521 if (pagesetup_get_flags(data
) & PSD_DISABLEORIENTATION
)
3523 EnableWindow(GetDlgItem(hDlg
,rad1
),FALSE
);
3524 EnableWindow(GetDlgItem(hDlg
,rad2
),FALSE
);
3527 /* We fill them out enabled or not */
3528 if (!(pagesetup_get_flags(data
) & PSD_MARGINS
))
3530 /* default is 1 inch */
3531 LONG size
= thousandths_inch_to_size(data
, 1000);
3532 SetRect(pagesetup_get_margin_rect(data
), size
, size
, size
, size
);
3534 update_margin_edits(hDlg
, data
, 0);
3535 subclass_margin_edits(hDlg
);
3536 set_margin_groupbox_title(hDlg
, data
);
3538 /* if paper disabled */
3539 if (pagesetup_get_flags(data
) & PSD_DISABLEPAPER
)
3541 EnableWindow(GetDlgItem(hDlg
,cmb2
),FALSE
);
3542 EnableWindow(GetDlgItem(hDlg
,cmb3
),FALSE
);
3545 /* filling combos: printer, paper, source. selecting current printer (from DEVMODEA) */
3546 pagesetup_init_combos(hDlg
, data
);
3547 pagesetup_update_papersize(data
);
3548 pagesetup_set_defaultsource(data
, DMBIN_FORMSOURCE
); /* FIXME: This is the auto select bin. Is this correct? */
3550 /* Drawing paper prev */
3551 pagesetup_change_preview(data
);
3554 data
= GetPropW(hDlg
, pagesetupdlg_prop
);
3557 WARN("__WINE_PAGESETUPDLGDATA prop not set?\n");
3560 if (pagesetup_get_flags(data
) & PSD_ENABLEPAGESETUPHOOK
)
3562 res
= pagesetup_get_hook(data
, page_setup_hook
)(hDlg
, uMsg
, wParam
, lParam
);
3563 if (res
) return res
;
3568 return pagesetup_wm_command(hDlg
, wParam
, lParam
, data
);
3573 static WCHAR
*get_default_printer(void)
3578 GetDefaultPrinterW(NULL
, &len
);
3581 name
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3582 GetDefaultPrinterW(name
, &len
);
3587 static void pagesetup_dump_dlg_struct(const pagesetup_data
*data
)
3589 if(TRACE_ON(commdlg
))
3591 char flagstr
[1000] = "";
3592 const struct pd_flags
*pflag
= psd_flags
;
3593 for( ; pflag
->name
; pflag
++)
3595 if(pagesetup_get_flags(data
) & pflag
->flag
)
3597 strcat(flagstr
, pflag
->name
);
3598 strcat(flagstr
, "|");
3601 TRACE("%s: (%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p\n"
3602 "hinst %p, flags %08x (%s)\n",
3603 data
->unicode
? "unicode" : "ansi",
3604 data
->u
.dlgw
, data
->u
.dlgw
->hwndOwner
, data
->u
.dlgw
->hDevMode
,
3605 data
->u
.dlgw
->hDevNames
, data
->u
.dlgw
->hInstance
,
3606 pagesetup_get_flags(data
), flagstr
);
3610 static void *pagesetup_get_template(pagesetup_data
*data
)
3613 HGLOBAL tmpl_handle
;
3615 if(pagesetup_get_flags(data
) & PSD_ENABLEPAGESETUPTEMPLATEHANDLE
)
3617 tmpl_handle
= data
->u
.dlgw
->hPageSetupTemplate
;
3619 else if(pagesetup_get_flags(data
) & PSD_ENABLEPAGESETUPTEMPLATE
)
3622 res
= FindResourceW(data
->u
.dlgw
->hInstance
,
3623 data
->u
.dlgw
->lpPageSetupTemplateName
, MAKEINTRESOURCEW(RT_DIALOG
));
3625 res
= FindResourceA(data
->u
.dlga
->hInstance
,
3626 data
->u
.dlga
->lpPageSetupTemplateName
, MAKEINTRESOURCEA(RT_DIALOG
));
3627 tmpl_handle
= LoadResource(data
->u
.dlgw
->hInstance
, res
);
3631 res
= FindResourceW(COMDLG32_hInstance
, MAKEINTRESOURCEW(PAGESETUPDLGORD
),
3632 MAKEINTRESOURCEW(RT_DIALOG
));
3633 tmpl_handle
= LoadResource(COMDLG32_hInstance
, res
);
3635 return LockResource(tmpl_handle
);
3638 static BOOL
pagesetup_common(pagesetup_data
*data
)
3643 if(!pagesetup_get_dlg_struct(data
))
3645 COMDLG32_SetCommDlgExtendedError(CDERR_INITIALIZATION
);
3649 pagesetup_dump_dlg_struct(data
);
3651 if(data
->u
.dlgw
->lStructSize
!= sizeof(PAGESETUPDLGW
))
3653 COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE
);
3657 if ((pagesetup_get_flags(data
) & PSD_ENABLEPAGEPAINTHOOK
) &&
3658 (pagesetup_get_hook(data
, page_paint_hook
) == NULL
))
3660 COMDLG32_SetCommDlgExtendedError(CDERR_NOHOOK
);
3664 if(!(pagesetup_get_flags(data
) & (PSD_INTHOUSANDTHSOFINCHES
| PSD_INHUNDREDTHSOFMILLIMETERS
)))
3665 data
->u
.dlgw
->Flags
|= is_default_metric() ?
3666 PSD_INHUNDREDTHSOFMILLIMETERS
: PSD_INTHOUSANDTHSOFINCHES
;
3668 if (!data
->u
.dlgw
->hDevMode
|| !data
->u
.dlgw
->hDevNames
)
3670 WCHAR
*def
= get_default_printer();
3673 if (!(pagesetup_get_flags(data
) & PSD_NOWARNING
))
3676 LoadStringW(COMDLG32_hInstance
, PD32_NO_DEFAULT_PRINTER
, errstr
, 255);
3677 MessageBoxW(data
->u
.dlgw
->hwndOwner
, errstr
, 0, MB_OK
| MB_ICONERROR
);
3679 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
3682 pagesetup_change_printer(def
, data
);
3683 HeapFree(GetProcessHeap(), 0, def
);
3686 if (pagesetup_get_flags(data
) & PSD_RETURNDEFAULT
)
3688 pagesetup_update_papersize(data
);
3692 tmpl
= pagesetup_get_template(data
);
3694 ret
= DialogBoxIndirectParamW(data
->u
.dlgw
->hInstance
, tmpl
,
3695 data
->u
.dlgw
->hwndOwner
,
3696 pagesetup_dlg_proc
, (LPARAM
)data
) > 0;
3700 /***********************************************************************
3701 * PageSetupDlgA (COMDLG32.@)
3703 * Displays the PAGE SETUP dialog box, which enables the user to specify
3704 * specific properties of a printed page such as
3705 * size, source, orientation and the width of the page margins.
3708 * setupdlg [IO] PAGESETUPDLGA struct
3711 * TRUE if the user pressed the OK button
3712 * FALSE if the user cancelled the window or an error occurred
3715 * The values of hDevMode and hDevNames are filled on output and can be
3716 * changed in PAGESETUPDLG when they are passed in PageSetupDlg.
3719 BOOL WINAPI
PageSetupDlgA(LPPAGESETUPDLGA setupdlg
)
3721 pagesetup_data data
;
3723 data
.unicode
= FALSE
;
3724 data
.u
.dlga
= setupdlg
;
3726 return pagesetup_common(&data
);
3729 /***********************************************************************
3730 * PageSetupDlgW (COMDLG32.@)
3732 * See PageSetupDlgA.
3734 BOOL WINAPI
PageSetupDlgW(LPPAGESETUPDLGW setupdlg
)
3736 pagesetup_data data
;
3738 data
.unicode
= TRUE
;
3739 data
.u
.dlgw
= setupdlg
;
3741 return pagesetup_common(&data
);
3744 /***********************************************************************
3745 * PrintDlgExA (COMDLG32.@)
3753 HRESULT WINAPI
PrintDlgExA(LPPRINTDLGEXA lppd
)
3758 FIXME("(%p) not fully implemented\n", lppd
);
3759 if ((lppd
== NULL
) || (lppd
->lStructSize
!= sizeof(PRINTDLGEXA
)))
3760 return E_INVALIDARG
;
3762 if (!IsWindow(lppd
->hwndOwner
))
3765 if (lppd
->Flags
& PD_RETURNDEFAULT
)
3767 PRINTER_INFO_2A
*pbuf
;
3768 DRIVER_INFO_2A
*dbuf
;
3770 DWORD needed
= 1024;
3773 if (lppd
->hDevMode
|| lppd
->hDevNames
)
3775 WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
3776 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
3777 return E_INVALIDARG
;
3779 if (!PRINTDLG_OpenDefaultPrinter(&hprn
))
3781 WARN("Can't find default printer\n");
3782 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
3786 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3787 bRet
= GetPrinterA(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
3788 if (!bRet
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
))
3790 HeapFree(GetProcessHeap(), 0, pbuf
);
3791 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3792 bRet
= GetPrinterA(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
3796 HeapFree(GetProcessHeap(), 0, pbuf
);
3802 dbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3803 bRet
= GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
);
3804 if (!bRet
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
))
3806 HeapFree(GetProcessHeap(), 0, dbuf
);
3807 dbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3808 bRet
= GetPrinterDriverA(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
);
3812 ERR("GetPrinterDriverŠ failed, last error %d, fix your config for printer %s!\n",
3813 GetLastError(), pbuf
->pPrinterName
);
3814 HeapFree(GetProcessHeap(), 0, dbuf
);
3815 HeapFree(GetProcessHeap(), 0, pbuf
);
3816 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
3822 PRINTDLG_CreateDevNames(&(lppd
->hDevNames
),
3826 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, pbuf
->pDevMode
->dmSize
+
3827 pbuf
->pDevMode
->dmDriverExtra
);
3830 ptr
= GlobalLock(lppd
->hDevMode
);
3833 memcpy(ptr
, pbuf
->pDevMode
, pbuf
->pDevMode
->dmSize
+
3834 pbuf
->pDevMode
->dmDriverExtra
);
3835 GlobalUnlock(lppd
->hDevMode
);
3839 HeapFree(GetProcessHeap(), 0, pbuf
);
3840 HeapFree(GetProcessHeap(), 0, dbuf
);
3848 /***********************************************************************
3849 * PrintDlgExW (COMDLG32.@)
3851 * Display the property sheet style PRINT dialog box
3854 * lppd [IO] ptr to PRINTDLGEX struct
3858 * Failure: One of the following COM error codes:
3859 * E_OUTOFMEMORY Insufficient memory.
3860 * E_INVALIDARG One or more arguments are invalid.
3861 * E_POINTER Invalid pointer.
3862 * E_HANDLE Invalid handle.
3863 * E_FAIL Unspecified error.
3866 * This Dialog enables the user to specify specific properties of the print job.
3867 * The property sheet can also have additional application-specific and
3868 * driver-specific property pages.
3871 * Not fully implemented
3874 HRESULT WINAPI
PrintDlgExW(LPPRINTDLGEXW lppd
)
3879 FIXME("(%p) not fully implemented\n", lppd
);
3881 if ((lppd
== NULL
) || (lppd
->lStructSize
!= sizeof(PRINTDLGEXW
))) {
3882 return E_INVALIDARG
;
3885 if (!IsWindow(lppd
->hwndOwner
)) {
3889 if (lppd
->Flags
& PD_RETURNDEFAULT
) {
3890 PRINTER_INFO_2W
*pbuf
;
3891 DRIVER_INFO_2W
*dbuf
;
3893 DWORD needed
= 1024;
3896 if (lppd
->hDevMode
|| lppd
->hDevNames
) {
3897 WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
3898 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
3899 return E_INVALIDARG
;
3901 if (!PRINTDLG_OpenDefaultPrinter(&hprn
)) {
3902 WARN("Can't find default printer\n");
3903 COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN
);
3907 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3908 bRet
= GetPrinterW(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
3909 if (!bRet
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
)) {
3910 HeapFree(GetProcessHeap(), 0, pbuf
);
3911 pbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3912 bRet
= GetPrinterW(hprn
, 2, (LPBYTE
)pbuf
, needed
, &needed
);
3915 HeapFree(GetProcessHeap(), 0, pbuf
);
3921 dbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3922 bRet
= GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
);
3923 if (!bRet
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
)) {
3924 HeapFree(GetProcessHeap(), 0, dbuf
);
3925 dbuf
= HeapAlloc(GetProcessHeap(), 0, needed
);
3926 bRet
= GetPrinterDriverW(hprn
, NULL
, 3, (LPBYTE
)dbuf
, needed
, &needed
);
3929 ERR("GetPrinterDriverW failed, last error %d, fix your config for printer %s!\n",
3930 GetLastError(), debugstr_w(pbuf
->pPrinterName
));
3931 HeapFree(GetProcessHeap(), 0, dbuf
);
3932 HeapFree(GetProcessHeap(), 0, pbuf
);
3933 COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE
);
3939 PRINTDLG_CreateDevNamesW(&(lppd
->hDevNames
),
3943 lppd
->hDevMode
= GlobalAlloc(GMEM_MOVEABLE
, pbuf
->pDevMode
->dmSize
+
3944 pbuf
->pDevMode
->dmDriverExtra
);
3945 if (lppd
->hDevMode
) {
3946 ptr
= GlobalLock(lppd
->hDevMode
);
3948 memcpy(ptr
, pbuf
->pDevMode
, pbuf
->pDevMode
->dmSize
+
3949 pbuf
->pDevMode
->dmDriverExtra
);
3950 GlobalUnlock(lppd
->hDevMode
);
3954 HeapFree(GetProcessHeap(), 0, pbuf
);
3955 HeapFree(GetProcessHeap(), 0, dbuf
);