1999-02-28 21:05:11 +01:00
|
|
|
/*
|
|
|
|
* COMMDLG - Print Dialog
|
|
|
|
*
|
|
|
|
* Copyright 1994 Martin Ayotte
|
|
|
|
* Copyright 1996 Albrecht Kleine
|
|
|
|
* Copyright 1999 Klaas van Gend
|
2000-05-27 00:26:06 +02:00
|
|
|
* Copyright 2000 Huw D M Davies
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
2000-02-10 20:03:02 +01:00
|
|
|
#include <stdio.h>
|
1999-02-28 21:05:11 +01:00
|
|
|
#include <string.h>
|
2000-02-10 20:03:02 +01:00
|
|
|
#include "windef.h"
|
1999-02-28 21:05:11 +01:00
|
|
|
#include "winbase.h"
|
2000-02-10 20:03:02 +01:00
|
|
|
#include "wingdi.h"
|
2000-05-27 00:26:06 +02:00
|
|
|
#include "wine/wingdi16.h"
|
|
|
|
#include "winuser.h"
|
1999-02-28 21:05:11 +01:00
|
|
|
#include "wine/winuser16.h"
|
|
|
|
#include "commdlg.h"
|
|
|
|
#include "dlgs.h"
|
1999-06-12 17:45:58 +02:00
|
|
|
#include "debugtools.h"
|
1999-03-13 18:07:56 +01:00
|
|
|
#include "cderr.h"
|
1999-05-02 13:34:26 +02:00
|
|
|
#include "winspool.h"
|
1999-08-07 14:34:54 +02:00
|
|
|
#include "winerror.h"
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-02-10 20:03:02 +01:00
|
|
|
DEFAULT_DEBUG_CHANNEL(commdlg);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1999-04-25 20:31:35 +02:00
|
|
|
#include "cdlg.h"
|
|
|
|
|
1999-08-07 14:34:54 +02:00
|
|
|
/* This PRINTDLGA internal structure stores
|
|
|
|
* pointers to several throughout useful structures.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2000-05-27 00:26:06 +02:00
|
|
|
LPDEVMODEA lpDevMode;
|
2001-01-02 23:26:09 +01:00
|
|
|
struct {
|
|
|
|
LPPRINTDLGA lpPrintDlg;
|
|
|
|
LPPRINTDLG16 lpPrintDlg16;
|
|
|
|
} dlg;
|
2000-05-27 00:26:06 +02:00
|
|
|
LPPRINTER_INFO_2A lpPrinterInfo;
|
1999-08-07 14:34:54 +02:00
|
|
|
UINT HelpMessageID;
|
1999-11-13 21:49:58 +01:00
|
|
|
HICON hCollateIcon; /* PrintDlg only */
|
|
|
|
HICON hNoCollateIcon; /* PrintDlg only */
|
|
|
|
HICON hPortraitIcon; /* PrintSetupDlg only */
|
|
|
|
HICON hLandscapeIcon; /* PrintSetupDlg only */
|
2001-02-12 19:09:34 +01:00
|
|
|
HWND hwndUpDown;
|
1999-08-07 14:34:54 +02:00
|
|
|
} PRINT_PTRA;
|
|
|
|
|
2001-02-26 23:32:35 +01:00
|
|
|
/* Debugging info */
|
2000-05-27 00:26:06 +02:00
|
|
|
static struct pd_flags {
|
|
|
|
DWORD flag;
|
|
|
|
LPSTR name;
|
|
|
|
} pd_flags[] = {
|
|
|
|
{PD_SELECTION, "PD_SELECTION "},
|
|
|
|
{PD_PAGENUMS, "PD_PAGENUMS "},
|
|
|
|
{PD_NOSELECTION, "PD_NOSELECTION "},
|
|
|
|
{PD_NOPAGENUMS, "PD_NOPAGENUMS "},
|
|
|
|
{PD_COLLATE, "PD_COLLATE "},
|
|
|
|
{PD_PRINTTOFILE, "PD_PRINTTOFILE "},
|
|
|
|
{PD_PRINTSETUP, "PD_PRINTSETUP "},
|
|
|
|
{PD_NOWARNING, "PD_NOWARNING "},
|
|
|
|
{PD_RETURNDC, "PD_RETURNDC "},
|
|
|
|
{PD_RETURNIC, "PD_RETURNIC "},
|
|
|
|
{PD_RETURNDEFAULT, "PD_RETURNDEFAULT "},
|
|
|
|
{PD_SHOWHELP, "PD_SHOWHELP "},
|
|
|
|
{PD_ENABLEPRINTHOOK, "PD_ENABLEPRINTHOOK "},
|
|
|
|
{PD_ENABLESETUPHOOK, "PD_ENABLESETUPHOOK "},
|
|
|
|
{PD_ENABLEPRINTTEMPLATE, "PD_ENABLEPRINTTEMPLATE "},
|
|
|
|
{PD_ENABLESETUPTEMPLATE, "PD_ENABLESETUPTEMPLATE "},
|
|
|
|
{PD_ENABLEPRINTTEMPLATEHANDLE, "PD_ENABLEPRINTTEMPLATEHANDLE "},
|
|
|
|
{PD_ENABLESETUPTEMPLATEHANDLE, "PD_ENABLESETUPTEMPLATEHANDLE "},
|
|
|
|
{PD_USEDEVMODECOPIES, "PD_USEDEVMODECOPIES[ANDCOLLATE] "},
|
|
|
|
{PD_DISABLEPRINTTOFILE, "PD_DISABLEPRINTTOFILE "},
|
|
|
|
{PD_HIDEPRINTTOFILE, "PD_HIDEPRINTTOFILE "},
|
|
|
|
{PD_NONETWORKBUTTON, "PD_NONETWORKBUTTON "},
|
|
|
|
{-1, NULL}
|
|
|
|
};
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2001-02-12 19:09:34 +01:00
|
|
|
/* Yes these constants are the same, but we're just copying win98 */
|
|
|
|
#define UPDOWN_ID 0x270f
|
|
|
|
#define MAX_COPIES 9999
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* PRINTDLG_GetDefaultPrinterName
|
|
|
|
*
|
|
|
|
* Returns the default printer name in buf.
|
|
|
|
* Even under WinNT/2000 default printer is retrieved via GetProfileString -
|
|
|
|
* these entries are mapped somewhere in the registry rather than win.ini.
|
|
|
|
*
|
|
|
|
* Returns TRUE on success else FALSE
|
|
|
|
*/
|
|
|
|
static BOOL PRINTDLG_GetDefaultPrinterName(LPSTR buf, DWORD len)
|
|
|
|
{
|
|
|
|
char *ptr;
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
if(!GetProfileStringA("windows", "device", "", buf, len)) {
|
|
|
|
TRACE("No profile entry for default printer found.\n");
|
2000-05-27 00:26:06 +02:00
|
|
|
return FALSE;
|
2001-01-02 23:26:09 +01:00
|
|
|
}
|
|
|
|
if((ptr = strchr(buf, ',')) == NULL) {
|
|
|
|
FIXME("bad format for default printer (%s)!\n",buf);
|
2000-05-27 00:26:06 +02:00
|
|
|
return FALSE;
|
2001-01-02 23:26:09 +01:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
*ptr = '\0';
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-08-07 14:34:54 +02:00
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PRINTDLG_OpenDefaultPrinter
|
1999-11-13 21:49:58 +01:00
|
|
|
*
|
2000-05-27 00:26:06 +02:00
|
|
|
* Returns a winspool printer handle to the default printer in *hprn
|
|
|
|
* Caller must call ClosePrinter on the handle
|
1999-11-13 21:49:58 +01:00
|
|
|
*
|
2000-05-27 00:26:06 +02:00
|
|
|
* Returns TRUE on success else FALSE
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static BOOL PRINTDLG_OpenDefaultPrinter(HANDLE *hprn)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2000-05-27 00:26:06 +02:00
|
|
|
char buf[260];
|
2001-01-02 23:26:09 +01:00
|
|
|
BOOL res;
|
2000-05-27 00:26:06 +02:00
|
|
|
if(!PRINTDLG_GetDefaultPrinterName(buf, sizeof(buf)))
|
|
|
|
return FALSE;
|
2001-01-02 23:26:09 +01:00
|
|
|
res = OpenPrinterA(buf, hprn, NULL);
|
|
|
|
if (!res)
|
|
|
|
FIXME("Could not open printer %s?!\n",buf);
|
|
|
|
return res;
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
1999-10-13 14:29:57 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* PRINTDLG_SetUpPrinterListCombo
|
|
|
|
*
|
|
|
|
* Initializes printer list combox.
|
|
|
|
* hDlg: HWND of dialog
|
|
|
|
* id: Control id of combo
|
|
|
|
* name: Name of printer to select
|
|
|
|
*
|
|
|
|
* Initializes combo with list of available printers. Selects printer 'name'
|
|
|
|
* If name is NULL or does not exist select the default printer.
|
|
|
|
*
|
|
|
|
* Returns number of printers added to list.
|
|
|
|
*/
|
|
|
|
static INT PRINTDLG_SetUpPrinterListCombo(HWND hDlg, UINT id, LPCSTR name)
|
|
|
|
{
|
|
|
|
DWORD needed, num;
|
|
|
|
INT i;
|
|
|
|
LPPRINTER_INFO_2A pi;
|
|
|
|
EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &needed, &num);
|
|
|
|
pi = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 2, (LPBYTE)pi, needed, &needed,
|
|
|
|
&num);
|
|
|
|
|
|
|
|
for(i = 0; i < num; i++) {
|
|
|
|
SendDlgItemMessageA(hDlg, id, CB_ADDSTRING, 0,
|
|
|
|
(LPARAM)pi[i].pPrinterName );
|
1999-04-25 20:31:35 +02:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, pi);
|
|
|
|
if(!name ||
|
|
|
|
(i = SendDlgItemMessageA(hDlg, id, CB_FINDSTRINGEXACT, -1,
|
|
|
|
(LPARAM)name)) == CB_ERR) {
|
|
|
|
|
|
|
|
char buf[260];
|
2001-01-02 23:26:09 +01:00
|
|
|
FIXME("Can't find '%s' in printer list so trying to find default\n",
|
2000-05-27 00:26:06 +02:00
|
|
|
name);
|
|
|
|
if(!PRINTDLG_GetDefaultPrinterName(buf, sizeof(buf)))
|
|
|
|
return num;
|
|
|
|
i = SendDlgItemMessageA(hDlg, id, CB_FINDSTRINGEXACT, -1, (LPARAM)buf);
|
|
|
|
if(i == CB_ERR)
|
2001-01-02 23:26:09 +01:00
|
|
|
FIXME("Can't find default printer in printer list\n");
|
1999-04-25 20:31:35 +02:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
SendDlgItemMessageA(hDlg, id, CB_SETCURSEL, i, 0);
|
|
|
|
return num;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PRINTDLG_CreateDevNames [internal]
|
1999-02-28 21:05:11 +01:00
|
|
|
*
|
|
|
|
*
|
2000-05-27 00:26:06 +02:00
|
|
|
* creates a DevNames structure.
|
1999-02-28 21:05:11 +01:00
|
|
|
*
|
2000-05-27 00:26:06 +02:00
|
|
|
* (NB. when we handle unicode the offsets will be in wchars).
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static BOOL PRINTDLG_CreateDevNames(HGLOBAL *hmem, char* DeviceDriverName,
|
|
|
|
char* DeviceName, char* OutputPort)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2000-05-27 00:26:06 +02:00
|
|
|
long size;
|
|
|
|
char* pDevNamesSpace;
|
|
|
|
char* pTempPtr;
|
|
|
|
LPDEVNAMES lpDevNames;
|
|
|
|
char buf[260];
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
size = strlen(DeviceDriverName) + 1
|
|
|
|
+ strlen(DeviceName) + 1
|
|
|
|
+ strlen(OutputPort) + 1
|
|
|
|
+ sizeof(DEVNAMES);
|
|
|
|
|
|
|
|
if(*hmem)
|
|
|
|
*hmem = GlobalReAlloc(*hmem, size, GMEM_MOVEABLE);
|
1999-05-02 13:34:26 +02:00
|
|
|
else
|
2000-05-27 00:26:06 +02:00
|
|
|
*hmem = GlobalAlloc(GMEM_MOVEABLE, size);
|
|
|
|
if (*hmem == 0)
|
1999-08-15 18:33:11 +02:00
|
|
|
return FALSE;
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
pDevNamesSpace = GlobalLock(*hmem);
|
|
|
|
lpDevNames = (LPDEVNAMES) pDevNamesSpace;
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
pTempPtr = pDevNamesSpace + sizeof(DEVNAMES);
|
|
|
|
strcpy(pTempPtr, DeviceDriverName);
|
|
|
|
lpDevNames->wDriverOffset = pTempPtr - pDevNamesSpace;
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
pTempPtr += strlen(DeviceDriverName) + 1;
|
|
|
|
strcpy(pTempPtr, DeviceName);
|
|
|
|
lpDevNames->wDeviceOffset = pTempPtr - pDevNamesSpace;
|
|
|
|
|
|
|
|
pTempPtr += strlen(DeviceName) + 1;
|
|
|
|
strcpy(pTempPtr, OutputPort);
|
|
|
|
lpDevNames->wOutputOffset = pTempPtr - pDevNamesSpace;
|
|
|
|
|
|
|
|
PRINTDLG_GetDefaultPrinterName(buf, sizeof(buf));
|
|
|
|
lpDevNames->wDefault = (strcmp(buf, DeviceName) == 0) ? 1 : 0;
|
|
|
|
GlobalUnlock(*hmem);
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
static BOOL PRINTDLG_CreateDevNames16(HGLOBAL16 *hmem, char* DeviceDriverName,
|
|
|
|
char* DeviceName, char* OutputPort)
|
|
|
|
{
|
|
|
|
long size;
|
|
|
|
char* pDevNamesSpace;
|
|
|
|
char* pTempPtr;
|
|
|
|
LPDEVNAMES lpDevNames;
|
|
|
|
char buf[260];
|
|
|
|
|
|
|
|
size = strlen(DeviceDriverName) + 1
|
|
|
|
+ strlen(DeviceName) + 1
|
|
|
|
+ strlen(OutputPort) + 1
|
|
|
|
+ sizeof(DEVNAMES);
|
|
|
|
|
|
|
|
if(*hmem)
|
|
|
|
*hmem = GlobalReAlloc16(*hmem, size, GMEM_MOVEABLE);
|
|
|
|
else
|
|
|
|
*hmem = GlobalAlloc16(GMEM_MOVEABLE, size);
|
|
|
|
if (*hmem == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
pDevNamesSpace = GlobalLock16(*hmem);
|
|
|
|
lpDevNames = (LPDEVNAMES) pDevNamesSpace;
|
|
|
|
|
|
|
|
pTempPtr = pDevNamesSpace + sizeof(DEVNAMES);
|
|
|
|
strcpy(pTempPtr, DeviceDriverName);
|
|
|
|
lpDevNames->wDriverOffset = pTempPtr - pDevNamesSpace;
|
|
|
|
|
|
|
|
pTempPtr += strlen(DeviceDriverName) + 1;
|
|
|
|
strcpy(pTempPtr, DeviceName);
|
|
|
|
lpDevNames->wDeviceOffset = pTempPtr - pDevNamesSpace;
|
|
|
|
|
|
|
|
pTempPtr += strlen(DeviceName) + 1;
|
|
|
|
strcpy(pTempPtr, OutputPort);
|
|
|
|
lpDevNames->wOutputOffset = pTempPtr - pDevNamesSpace;
|
|
|
|
|
|
|
|
PRINTDLG_GetDefaultPrinterName(buf, sizeof(buf));
|
|
|
|
lpDevNames->wDefault = (strcmp(buf, DeviceName) == 0) ? 1 : 0;
|
|
|
|
GlobalUnlock16(*hmem);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PRINTDLG_UpdatePrintDlg [internal]
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* updates the PrintDlg structure for returnvalues.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* FALSE if user is not allowed to close (i.e. wrong nTo or nFrom values)
|
|
|
|
* TRUE if succesful.
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static BOOL PRINTDLG_UpdatePrintDlg(HWND hDlg,
|
|
|
|
PRINT_PTRA* PrintStructures)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2001-01-02 23:26:09 +01:00
|
|
|
LPPRINTDLGA lppd = PrintStructures->dlg.lpPrintDlg;
|
2000-05-27 00:26:06 +02:00
|
|
|
PDEVMODEA lpdm = PrintStructures->lpDevMode;
|
|
|
|
LPPRINTER_INFO_2A pi = PrintStructures->lpPrinterInfo;
|
|
|
|
|
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
if(!lpdm) {
|
|
|
|
FIXME("No lpdm ptr?\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
if(!(lppd->Flags & PD_PRINTSETUP)) {
|
|
|
|
/* check whether nFromPage and nToPage are within range defined by
|
|
|
|
* nMinPage and nMaxPage
|
|
|
|
*/
|
|
|
|
if (IsDlgButtonChecked(hDlg, rad3) == BST_CHECKED) { /* Pages */
|
|
|
|
WORD nToPage;
|
|
|
|
WORD nFromPage;
|
|
|
|
nFromPage = GetDlgItemInt(hDlg, edt1, NULL, FALSE);
|
|
|
|
nToPage = GetDlgItemInt(hDlg, edt2, NULL, FALSE);
|
|
|
|
if (nFromPage < lppd->nMinPage || nFromPage > lppd->nMaxPage ||
|
|
|
|
nToPage < lppd->nMinPage || nToPage > lppd->nMaxPage) {
|
|
|
|
char resourcestr[256];
|
|
|
|
char resultstr[256];
|
|
|
|
LoadStringA(COMDLG32_hInstance, PD32_INVALID_PAGE_RANGE,
|
|
|
|
resourcestr, 255);
|
|
|
|
sprintf(resultstr,resourcestr, lppd->nMinPage, lppd->nMaxPage);
|
|
|
|
LoadStringA(COMDLG32_hInstance, PD32_PRINT_TITLE,
|
|
|
|
resourcestr, 255);
|
|
|
|
MessageBoxA(hDlg, resultstr, resourcestr,
|
|
|
|
MB_OK | MB_ICONWARNING);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
lppd->nFromPage = nFromPage;
|
|
|
|
lppd->nToPage = nToPage;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if (IsDlgButtonChecked(hDlg, chx1) == BST_CHECKED) {/* Print to file */
|
|
|
|
lppd->Flags |= PD_PRINTTOFILE;
|
|
|
|
pi->pPortName = "FILE:";
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if (IsDlgButtonChecked(hDlg, chx2) == BST_CHECKED) { /* Collate */
|
|
|
|
FIXME("Collate lppd not yet implemented as output\n");
|
|
|
|
}
|
1999-09-03 14:41:23 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* set PD_Collate and nCopies */
|
|
|
|
if (lppd->Flags & PD_USEDEVMODECOPIESANDCOLLATE) {
|
|
|
|
/* The application doesn't support multiple copies or collate...
|
|
|
|
*/
|
|
|
|
lppd->Flags &= ~PD_COLLATE;
|
|
|
|
lppd->nCopies = 1;
|
|
|
|
/* if the printer driver supports it... store info there
|
|
|
|
* otherwise no collate & multiple copies !
|
|
|
|
*/
|
|
|
|
if (lpdm->dmFields & DM_COLLATE)
|
|
|
|
lpdm->dmCollate =
|
|
|
|
(IsDlgButtonChecked(hDlg, chx2) == BST_CHECKED);
|
|
|
|
if (lpdm->dmFields & DM_COPIES)
|
|
|
|
lpdm->dmCopies = GetDlgItemInt(hDlg, edt3, NULL, FALSE);
|
|
|
|
} else {
|
|
|
|
if (IsDlgButtonChecked(hDlg, chx2) == BST_CHECKED)
|
|
|
|
lppd->Flags |= PD_COLLATE;
|
|
|
|
else
|
|
|
|
lppd->Flags &= ~PD_COLLATE;
|
|
|
|
lppd->nCopies = GetDlgItemInt(hDlg, edt3, NULL, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
1999-05-02 13:34:26 +02:00
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* PRINTDLG_SetUpPaperComboBox
|
1999-11-13 21:49:58 +01:00
|
|
|
*
|
2000-05-27 00:26:06 +02:00
|
|
|
* Initialize either the papersize or inputslot combos of the Printer Setup
|
|
|
|
* dialog. We store the associated word (eg DMPAPER_A4) as the item data.
|
|
|
|
* We also try to re-select the old selection.
|
1999-11-13 21:49:58 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static BOOL PRINTDLG_SetUpPaperComboBox(HWND hDlg,
|
|
|
|
int nIDComboBox,
|
|
|
|
char* PrinterName,
|
|
|
|
char* PortName,
|
|
|
|
LPDEVMODEA dm)
|
1999-11-13 21:49:58 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
DWORD NrOfEntries;
|
|
|
|
char* Names;
|
2000-05-27 00:26:06 +02:00
|
|
|
WORD* Words;
|
|
|
|
DWORD Sel;
|
|
|
|
WORD oldWord = 0;
|
1999-11-13 21:49:58 +01:00
|
|
|
int NamesSize;
|
|
|
|
int fwCapability_Names;
|
|
|
|
int fwCapability_Words;
|
|
|
|
|
|
|
|
TRACE(" Printer: %s, ComboID: %d\n",PrinterName,nIDComboBox);
|
|
|
|
|
|
|
|
/* query the dialog box for the current selected value */
|
2000-05-27 00:26:06 +02:00
|
|
|
Sel = SendDlgItemMessageA(hDlg, nIDComboBox, CB_GETCURSEL, 0, 0);
|
|
|
|
if(Sel != CB_ERR) {
|
2001-02-12 20:42:08 +01:00
|
|
|
/* we enter here only if a different printer is selected after
|
|
|
|
* the Print Setup dialog is opened. The current settings are
|
|
|
|
* stored into the newly selected printer.
|
|
|
|
*/
|
|
|
|
oldWord = SendDlgItemMessageA(hDlg, nIDComboBox, CB_GETITEMDATA,
|
|
|
|
Sel, 0);
|
|
|
|
if (dm) {
|
|
|
|
if (nIDComboBox == cmb2)
|
|
|
|
dm->u1.s1.dmPaperSize = oldWord;
|
|
|
|
else
|
|
|
|
dm->dmDefaultSource = oldWord;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we enter here only when the Print setup dialog is initially
|
|
|
|
* opened. In this case the settings are restored from when
|
|
|
|
* the dialog was last closed.
|
|
|
|
*/
|
|
|
|
if (dm) {
|
|
|
|
if (nIDComboBox == cmb2)
|
|
|
|
oldWord = dm->u1.s1.dmPaperSize;
|
|
|
|
else
|
|
|
|
oldWord = dm->dmDefaultSource;
|
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if (nIDComboBox == cmb2) {
|
1999-11-13 21:49:58 +01:00
|
|
|
NamesSize = 64;
|
|
|
|
fwCapability_Names = DC_PAPERNAMES;
|
|
|
|
fwCapability_Words = DC_PAPERS;
|
2000-05-27 00:26:06 +02:00
|
|
|
} else {
|
1999-11-13 21:49:58 +01:00
|
|
|
nIDComboBox = cmb3;
|
|
|
|
NamesSize = 24;
|
|
|
|
fwCapability_Names = DC_BINNAMES;
|
|
|
|
fwCapability_Words = DC_BINS;
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
1999-11-13 21:49:58 +01:00
|
|
|
|
|
|
|
/* for some printer drivers, DeviceCapabilities calls a VXD to obtain the
|
|
|
|
* paper settings. As Wine doesn't allow VXDs, this results in a crash.
|
|
|
|
*/
|
|
|
|
WARN(" if your printer driver uses VXDs, expect a crash now!\n");
|
|
|
|
NrOfEntries = DeviceCapabilitiesA(PrinterName, PortName,
|
2000-05-27 00:26:06 +02:00
|
|
|
fwCapability_Names, NULL, dm);
|
1999-11-13 21:49:58 +01:00
|
|
|
if (NrOfEntries == 0)
|
2000-05-27 00:26:06 +02:00
|
|
|
WARN("no Name Entries found!\n");
|
|
|
|
|
|
|
|
if(DeviceCapabilitiesA(PrinterName, PortName, fwCapability_Words, NULL, dm)
|
|
|
|
!= NrOfEntries) {
|
|
|
|
ERR("Number of caps is different\n");
|
|
|
|
NrOfEntries = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Names = HeapAlloc(GetProcessHeap(),0, NrOfEntries*NamesSize);
|
|
|
|
Words = HeapAlloc(GetProcessHeap(),0, NrOfEntries*sizeof(WORD));
|
1999-11-13 21:49:58 +01:00
|
|
|
NrOfEntries = DeviceCapabilitiesA(PrinterName, PortName,
|
2000-05-27 00:26:06 +02:00
|
|
|
fwCapability_Names, Names, dm);
|
|
|
|
NrOfEntries = DeviceCapabilitiesA(PrinterName, PortName,
|
|
|
|
fwCapability_Words, (LPSTR)Words, dm);
|
|
|
|
|
1999-11-13 21:49:58 +01:00
|
|
|
/* reset any current content in the combobox */
|
|
|
|
SendDlgItemMessageA(hDlg, nIDComboBox, CB_RESETCONTENT, 0, 0);
|
|
|
|
|
|
|
|
/* store new content */
|
2000-05-27 00:26:06 +02:00
|
|
|
for (i = 0; i < NrOfEntries; i++) {
|
|
|
|
DWORD pos = SendDlgItemMessageA(hDlg, nIDComboBox, CB_ADDSTRING, 0,
|
|
|
|
(LPARAM)(&Names[i*NamesSize]) );
|
|
|
|
SendDlgItemMessageA(hDlg, nIDComboBox, CB_SETITEMDATA, pos,
|
|
|
|
Words[i]);
|
|
|
|
}
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* Look for old selection - can't do this is previous loop since
|
|
|
|
item order will change as more items are added */
|
|
|
|
Sel = 0;
|
|
|
|
for (i = 0; i < NrOfEntries; i++) {
|
|
|
|
if(SendDlgItemMessageA(hDlg, nIDComboBox, CB_GETITEMDATA, i, 0) ==
|
|
|
|
oldWord) {
|
|
|
|
Sel = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SendDlgItemMessageA(hDlg, nIDComboBox, CB_SETCURSEL, Sel, 0);
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,Words);
|
|
|
|
HeapFree(GetProcessHeap(),0,Names);
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PRINTDLG_UpdatePrinterInfoTexts [internal]
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static void PRINTDLG_UpdatePrinterInfoTexts(HWND hDlg, LPPRINTER_INFO_2A pi)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2000-05-27 00:26:06 +02:00
|
|
|
char StatusMsg[256];
|
|
|
|
char ResourceString[256];
|
|
|
|
int i;
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* Status Message */
|
|
|
|
StatusMsg[0]='\0';
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* add all status messages */
|
|
|
|
for (i = 0; i < 25; i++) {
|
|
|
|
if (pi->Status & (1<<i)) {
|
|
|
|
LoadStringA(COMDLG32_hInstance, PD32_PRINTER_STATUS_PAUSED+i,
|
|
|
|
ResourceString, 255);
|
|
|
|
strcat(StatusMsg,ResourceString);
|
1999-05-02 13:34:26 +02:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
|
|
|
/* append "ready" */
|
|
|
|
/* FIXME: status==ready must only be appended if really so.
|
|
|
|
but how to detect? */
|
|
|
|
LoadStringA(COMDLG32_hInstance, PD32_PRINTER_STATUS_READY,
|
|
|
|
ResourceString, 255);
|
|
|
|
strcat(StatusMsg,ResourceString);
|
|
|
|
|
|
|
|
SendDlgItemMessageA(hDlg, stc12, WM_SETTEXT, 0, (LPARAM)StatusMsg);
|
1999-05-02 13:34:26 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* set all other printer info texts */
|
|
|
|
SendDlgItemMessageA(hDlg, stc11, WM_SETTEXT, 0, (LPARAM)pi->pDriverName);
|
|
|
|
if (pi->pLocation != NULL && pi->pLocation[0] != '\0')
|
|
|
|
SendDlgItemMessageA(hDlg, stc14, WM_SETTEXT, 0,(LPARAM)pi->pLocation);
|
|
|
|
else
|
|
|
|
SendDlgItemMessageA(hDlg, stc14, WM_SETTEXT, 0,(LPARAM)pi->pPortName);
|
2001-02-12 19:09:34 +01:00
|
|
|
SendDlgItemMessageA(hDlg, stc13, WM_SETTEXT, 0, (LPARAM)(pi->pComment ?
|
|
|
|
pi->pComment : ""));
|
2000-05-27 00:26:06 +02:00
|
|
|
return;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
2000-06-02 21:36:53 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/*******************************************************************
|
|
|
|
*
|
|
|
|
* PRINTDLG_ChangePrinter
|
|
|
|
*
|
1999-11-13 21:49:58 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static BOOL PRINTDLG_ChangePrinter(HWND hDlg, char *name,
|
|
|
|
PRINT_PTRA *PrintStructures)
|
1999-11-13 21:49:58 +01:00
|
|
|
{
|
2001-01-02 23:26:09 +01:00
|
|
|
LPPRINTDLGA lppd = PrintStructures->dlg.lpPrintDlg;
|
2000-05-27 00:26:06 +02:00
|
|
|
LPDEVMODEA lpdm = NULL;
|
|
|
|
LONG dmSize;
|
|
|
|
DWORD needed;
|
|
|
|
HANDLE hprn;
|
|
|
|
|
|
|
|
if(PrintStructures->lpPrinterInfo)
|
|
|
|
HeapFree(GetProcessHeap(),0, PrintStructures->lpPrinterInfo);
|
|
|
|
if(!OpenPrinterA(name, &hprn, NULL)) {
|
|
|
|
ERR("Can't open printer %s\n", name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
GetPrinterA(hprn, 2, NULL, 0, &needed);
|
|
|
|
PrintStructures->lpPrinterInfo = HeapAlloc(GetProcessHeap(),0,needed);
|
|
|
|
GetPrinterA(hprn, 2, (LPBYTE)PrintStructures->lpPrinterInfo, needed,
|
|
|
|
&needed);
|
|
|
|
ClosePrinter(hprn);
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
PRINTDLG_UpdatePrinterInfoTexts(hDlg, PrintStructures->lpPrinterInfo);
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if(PrintStructures->lpDevMode) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures->lpDevMode);
|
|
|
|
PrintStructures->lpDevMode = NULL;
|
|
|
|
}
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
dmSize = DocumentPropertiesA(0, 0, name, NULL, NULL, 0);
|
|
|
|
if(dmSize == -1) {
|
|
|
|
ERR("DocumentProperties fails on %s\n", debugstr_a(name));
|
|
|
|
return FALSE;
|
1999-08-07 14:34:54 +02:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
PrintStructures->lpDevMode = HeapAlloc(GetProcessHeap(), 0, dmSize);
|
|
|
|
dmSize = DocumentPropertiesA(0, 0, name, PrintStructures->lpDevMode, NULL,
|
|
|
|
DM_OUT_BUFFER);
|
|
|
|
if(lppd->hDevMode && (lpdm = GlobalLock(lppd->hDevMode)) &&
|
|
|
|
!strcmp(lpdm->dmDeviceName,
|
|
|
|
PrintStructures->lpDevMode->dmDeviceName)) {
|
|
|
|
/* Supplied devicemode matches current printer so try to use it */
|
|
|
|
DocumentPropertiesA(0, 0, name, PrintStructures->lpDevMode, lpdm,
|
|
|
|
DM_OUT_BUFFER | DM_IN_BUFFER);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
if(lpdm)
|
|
|
|
GlobalUnlock(lppd->hDevMode);
|
|
|
|
|
|
|
|
lpdm = PrintStructures->lpDevMode; /* use this as a shortcut */
|
|
|
|
|
|
|
|
if(!(lppd->Flags & PD_PRINTSETUP)) {
|
|
|
|
/* Print range (All/Range/Selection) */
|
|
|
|
SetDlgItemInt(hDlg, edt1, lppd->nFromPage, FALSE);
|
|
|
|
SetDlgItemInt(hDlg, edt2, lppd->nToPage, FALSE);
|
|
|
|
CheckRadioButton(hDlg, rad1, rad3, rad1); /* default */
|
|
|
|
if (lppd->Flags & PD_NOSELECTION)
|
|
|
|
EnableWindow(GetDlgItem(hDlg, rad2), FALSE);
|
|
|
|
else
|
|
|
|
if (lppd->Flags & PD_SELECTION)
|
|
|
|
CheckRadioButton(hDlg, rad1, rad3, rad2);
|
|
|
|
if (lppd->Flags & PD_NOPAGENUMS) {
|
|
|
|
EnableWindow(GetDlgItem(hDlg, rad3), FALSE);
|
|
|
|
EnableWindow(GetDlgItem(hDlg, stc2),FALSE);
|
|
|
|
EnableWindow(GetDlgItem(hDlg, edt1), FALSE);
|
|
|
|
EnableWindow(GetDlgItem(hDlg, stc3),FALSE);
|
|
|
|
EnableWindow(GetDlgItem(hDlg, edt2), FALSE);
|
|
|
|
} else {
|
|
|
|
if (lppd->Flags & PD_PAGENUMS)
|
|
|
|
CheckRadioButton(hDlg, rad1, rad3, rad3);
|
|
|
|
}
|
|
|
|
/* "All xxx pages"... */
|
|
|
|
{
|
|
|
|
char resourcestr[64];
|
|
|
|
char result[64];
|
|
|
|
LoadStringA(COMDLG32_hInstance, PD32_PRINT_ALL_X_PAGES,
|
|
|
|
resourcestr, 49);
|
|
|
|
sprintf(result,resourcestr,lppd->nMaxPage - lppd->nMinPage + 1);
|
|
|
|
SendDlgItemMessageA(hDlg, rad1, WM_SETTEXT, 0, (LPARAM) result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Collate pages
|
|
|
|
*
|
|
|
|
* FIXME: The ico3 is not displayed for some reason. I don't know why.
|
|
|
|
*/
|
|
|
|
if (lppd->Flags & PD_COLLATE) {
|
|
|
|
SendDlgItemMessageA(hDlg, ico3, STM_SETIMAGE, (WPARAM) IMAGE_ICON,
|
|
|
|
(LPARAM)PrintStructures->hCollateIcon);
|
|
|
|
CheckDlgButton(hDlg, chx2, 1);
|
|
|
|
} else {
|
|
|
|
SendDlgItemMessageA(hDlg, ico3, STM_SETIMAGE, (WPARAM) IMAGE_ICON,
|
|
|
|
(LPARAM)PrintStructures->hNoCollateIcon);
|
|
|
|
CheckDlgButton(hDlg, chx2, 0);
|
|
|
|
}
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if (lppd->Flags & PD_USEDEVMODECOPIESANDCOLLATE) {
|
|
|
|
/* if printer doesn't support it: no Collate */
|
|
|
|
if (!(lpdm->dmFields & DM_COLLATE)) {
|
|
|
|
EnableWindow(GetDlgItem(hDlg, chx2), FALSE);
|
|
|
|
EnableWindow(GetDlgItem(hDlg, ico3), FALSE);
|
|
|
|
}
|
|
|
|
}
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* nCopies */
|
2001-02-12 19:09:34 +01:00
|
|
|
{
|
|
|
|
INT copies;
|
|
|
|
if (lppd->hDevMode == 0)
|
|
|
|
copies = lppd->nCopies;
|
|
|
|
else
|
|
|
|
copies = lpdm->dmCopies;
|
|
|
|
if(copies == 0) copies = 1;
|
|
|
|
else if(copies < 0) copies = MAX_COPIES;
|
|
|
|
SetDlgItemInt(hDlg, edt3, copies, FALSE);
|
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
|
|
|
|
if (lppd->Flags & PD_USEDEVMODECOPIESANDCOLLATE) {
|
|
|
|
/* if printer doesn't support it: no nCopies */
|
|
|
|
if (!(lpdm->dmFields & DM_COPIES)) {
|
|
|
|
EnableWindow(GetDlgItem(hDlg, edt3), FALSE);
|
|
|
|
EnableWindow(GetDlgItem(hDlg, stc5), FALSE);
|
1999-08-07 14:34:54 +02:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* print to file */
|
|
|
|
CheckDlgButton(hDlg, chx1, (lppd->Flags & PD_PRINTTOFILE) ? 1 : 0);
|
|
|
|
if (lppd->Flags & PD_DISABLEPRINTTOFILE)
|
|
|
|
EnableWindow(GetDlgItem(hDlg, chx1), FALSE);
|
|
|
|
if (lppd->Flags & PD_HIDEPRINTTOFILE)
|
|
|
|
ShowWindow(GetDlgItem(hDlg, chx1), SW_HIDE);
|
|
|
|
|
|
|
|
} else { /* PD_PRINTSETUP */
|
2001-02-12 19:09:34 +01:00
|
|
|
BOOL bPortrait = (lpdm->u1.s1.dmOrientation == DMORIENT_PORTRAIT);
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
PRINTDLG_SetUpPaperComboBox(hDlg, cmb2,
|
|
|
|
PrintStructures->lpPrinterInfo->pPrinterName,
|
|
|
|
PrintStructures->lpPrinterInfo->pPortName,
|
|
|
|
lpdm);
|
|
|
|
PRINTDLG_SetUpPaperComboBox(hDlg, cmb3,
|
|
|
|
PrintStructures->lpPrinterInfo->pPrinterName,
|
|
|
|
PrintStructures->lpPrinterInfo->pPortName,
|
|
|
|
lpdm);
|
2001-02-12 19:09:34 +01:00
|
|
|
CheckRadioButton(hDlg, rad1, rad2, bPortrait ? rad1: rad2);
|
|
|
|
SendDlgItemMessageA(hDlg, ico1, STM_SETIMAGE, (WPARAM) IMAGE_ICON,
|
|
|
|
(LPARAM)(bPortrait ? PrintStructures->hPortraitIcon :
|
|
|
|
PrintStructures->hLandscapeIcon));
|
|
|
|
|
2000-05-11 02:09:29 +02:00
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* help button */
|
|
|
|
if ((lppd->Flags & PD_SHOWHELP)==0) {
|
|
|
|
/* hide if PD_SHOWHELP not specified */
|
|
|
|
ShowWindow(GetDlgItem(hDlg, pshHelp), SW_HIDE);
|
|
|
|
}
|
|
|
|
return TRUE;
|
1999-05-02 13:34:26 +02:00
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
1999-11-13 21:49:58 +01:00
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PRINTDLG_WMInitDialog [internal]
|
1999-11-13 21:49:58 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static LRESULT PRINTDLG_WMInitDialog(HWND hDlg, WPARAM wParam,
|
|
|
|
PRINT_PTRA* PrintStructures)
|
1999-11-13 21:49:58 +01:00
|
|
|
{
|
2001-01-02 23:26:09 +01:00
|
|
|
LPPRINTDLGA lppd = PrintStructures->dlg.lpPrintDlg;
|
2000-05-27 00:26:06 +02:00
|
|
|
DEVNAMES *pdn;
|
|
|
|
DEVMODEA *pdm;
|
|
|
|
char *name = NULL;
|
|
|
|
UINT comboID = (lppd->Flags & PD_PRINTSETUP) ? cmb1 : cmb4;
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* load Collate ICONs */
|
2001-02-12 04:38:14 +01:00
|
|
|
/* We load these with LoadImage becasue they are not a standard
|
|
|
|
size and we don't want them rescaled */
|
2000-05-27 00:26:06 +02:00
|
|
|
PrintStructures->hCollateIcon =
|
2001-02-12 04:38:14 +01:00
|
|
|
LoadImageA(COMDLG32_hInstance, "PD32_COLLATE", IMAGE_ICON, 0, 0, 0);
|
2000-05-27 00:26:06 +02:00
|
|
|
PrintStructures->hNoCollateIcon =
|
2001-02-12 04:38:14 +01:00
|
|
|
LoadImageA(COMDLG32_hInstance, "PD32_NOCOLLATE", IMAGE_ICON, 0, 0, 0);
|
2001-02-12 19:09:34 +01:00
|
|
|
|
|
|
|
/* These can be done with LoadIcon */
|
|
|
|
PrintStructures->hPortraitIcon =
|
|
|
|
LoadIconA(COMDLG32_hInstance, "PD32_PORTRAIT");
|
|
|
|
PrintStructures->hLandscapeIcon =
|
|
|
|
LoadIconA(COMDLG32_hInstance, "PD32_LANDSCAPE");
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if(PrintStructures->hCollateIcon == 0 ||
|
2001-02-12 19:09:34 +01:00
|
|
|
PrintStructures->hNoCollateIcon == 0 ||
|
|
|
|
PrintStructures->hPortraitIcon == 0 ||
|
|
|
|
PrintStructures->hLandscapeIcon == 0) {
|
2000-05-27 00:26:06 +02:00
|
|
|
ERR("no icon in resourcefile\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
EndDialog(hDlg, FALSE);
|
|
|
|
}
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/*
|
|
|
|
* if lppd->Flags PD_SHOWHELP is specified, a HELPMESGSTRING message
|
|
|
|
* must be registered and the Help button must be shown.
|
|
|
|
*/
|
|
|
|
if (lppd->Flags & PD_SHOWHELP) {
|
|
|
|
if((PrintStructures->HelpMessageID =
|
2001-01-22 03:13:58 +01:00
|
|
|
RegisterWindowMessageA(HELPMSGSTRINGA)) == 0) {
|
2000-05-27 00:26:06 +02:00
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_REGISTERMSGFAIL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
PrintStructures->HelpMessageID = 0;
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2001-02-12 19:09:34 +01:00
|
|
|
if(!(lppd->Flags &PD_PRINTSETUP)) {
|
|
|
|
PrintStructures->hwndUpDown =
|
|
|
|
CreateUpDownControl(WS_CHILD | WS_VISIBLE | WS_BORDER |
|
|
|
|
UDS_NOTHOUSANDS | UDS_ARROWKEYS |
|
|
|
|
UDS_ALIGNRIGHT | UDS_SETBUDDYINT, 0, 0, 0, 0,
|
|
|
|
hDlg, UPDOWN_ID, COMDLG32_hInstance,
|
|
|
|
GetDlgItem(hDlg, edt3), MAX_COPIES, 1, 1);
|
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/* FIXME: I allow more freedom than either Win95 or WinNT,
|
|
|
|
* which do not agree to what errors should be thrown or not
|
|
|
|
* in case nToPage or nFromPage is out-of-range.
|
|
|
|
*/
|
|
|
|
if (lppd->nMaxPage < lppd->nMinPage)
|
|
|
|
lppd->nMaxPage = lppd->nMinPage;
|
|
|
|
if (lppd->nMinPage == lppd->nMaxPage)
|
|
|
|
lppd->Flags |= PD_NOPAGENUMS;
|
|
|
|
if (lppd->nToPage < lppd->nMinPage)
|
|
|
|
lppd->nToPage = lppd->nMinPage;
|
|
|
|
if (lppd->nToPage > lppd->nMaxPage)
|
|
|
|
lppd->nToPage = lppd->nMaxPage;
|
|
|
|
if (lppd->nFromPage < lppd->nMinPage)
|
|
|
|
lppd->nFromPage = lppd->nMinPage;
|
|
|
|
if (lppd->nFromPage > lppd->nMaxPage)
|
|
|
|
lppd->nFromPage = lppd->nMaxPage;
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
/* if we have the combo box, fill it */
|
|
|
|
if (GetDlgItem(hDlg,comboID)) {
|
|
|
|
/* Fill Combobox
|
|
|
|
*/
|
|
|
|
pdn = GlobalLock(lppd->hDevNames);
|
|
|
|
pdm = GlobalLock(lppd->hDevMode);
|
|
|
|
if(pdn)
|
|
|
|
name = (char*)pdn + pdn->wDeviceOffset;
|
|
|
|
else if(pdm)
|
|
|
|
name = pdm->dmDeviceName;
|
|
|
|
PRINTDLG_SetUpPrinterListCombo(hDlg, comboID, name);
|
|
|
|
if(pdm) GlobalUnlock(lppd->hDevMode);
|
|
|
|
if(pdn) GlobalUnlock(lppd->hDevNames);
|
|
|
|
|
|
|
|
/* Now find selected printer and update rest of dlg */
|
|
|
|
name = HeapAlloc(GetProcessHeap(),0,256);
|
|
|
|
if (GetDlgItemTextA(hDlg, comboID, name, 255))
|
|
|
|
PRINTDLG_ChangePrinter(hDlg, name, PrintStructures);
|
|
|
|
HeapFree(GetProcessHeap(),0,name);
|
|
|
|
} else {
|
|
|
|
/* else use default printer */
|
|
|
|
char name[200];
|
|
|
|
BOOL ret = PRINTDLG_GetDefaultPrinterName(name, sizeof(name));
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
PRINTDLG_ChangePrinter(hDlg, name, PrintStructures);
|
|
|
|
else
|
|
|
|
FIXME("No default printer found, expect problems!\n");
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* PRINTDLG_WMInitDialog [internal]
|
|
|
|
*/
|
|
|
|
static LRESULT PRINTDLG_WMInitDialog16(HWND hDlg, WPARAM wParam,
|
|
|
|
PRINT_PTRA* PrintStructures)
|
|
|
|
{
|
|
|
|
LPPRINTDLG16 lppd = PrintStructures->dlg.lpPrintDlg16;
|
|
|
|
DEVNAMES *pdn;
|
|
|
|
DEVMODEA *pdm;
|
|
|
|
char *name = NULL;
|
|
|
|
UINT comboID = (lppd->Flags & PD_PRINTSETUP) ? cmb1 : cmb4;
|
|
|
|
|
|
|
|
/* load Collate ICONs */
|
|
|
|
PrintStructures->hCollateIcon =
|
|
|
|
LoadIconA(COMDLG32_hInstance, "PD32_COLLATE");
|
|
|
|
PrintStructures->hNoCollateIcon =
|
|
|
|
LoadIconA(COMDLG32_hInstance, "PD32_NOCOLLATE");
|
|
|
|
if(PrintStructures->hCollateIcon == 0 ||
|
|
|
|
PrintStructures->hNoCollateIcon == 0) {
|
|
|
|
ERR("no icon in resourcefile\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
EndDialog(hDlg, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* load Paper Orientation ICON */
|
|
|
|
/* FIXME: not implemented yet */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if lppd->Flags PD_SHOWHELP is specified, a HELPMESGSTRING message
|
|
|
|
* must be registered and the Help button must be shown.
|
|
|
|
*/
|
|
|
|
if (lppd->Flags & PD_SHOWHELP) {
|
|
|
|
if((PrintStructures->HelpMessageID =
|
2001-01-22 03:13:58 +01:00
|
|
|
RegisterWindowMessageA(HELPMSGSTRINGA)) == 0) {
|
2001-01-02 23:26:09 +01:00
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_REGISTERMSGFAIL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
PrintStructures->HelpMessageID = 0;
|
|
|
|
|
|
|
|
/* FIXME: I allow more freedom than either Win95 or WinNT,
|
|
|
|
* which do not agree to what errors should be thrown or not
|
|
|
|
* in case nToPage or nFromPage is out-of-range.
|
2000-05-27 00:26:06 +02:00
|
|
|
*/
|
2001-01-02 23:26:09 +01:00
|
|
|
if (lppd->nMaxPage < lppd->nMinPage)
|
|
|
|
lppd->nMaxPage = lppd->nMinPage;
|
|
|
|
if (lppd->nMinPage == lppd->nMaxPage)
|
|
|
|
lppd->Flags |= PD_NOPAGENUMS;
|
|
|
|
if (lppd->nToPage < lppd->nMinPage)
|
|
|
|
lppd->nToPage = lppd->nMinPage;
|
|
|
|
if (lppd->nToPage > lppd->nMaxPage)
|
|
|
|
lppd->nToPage = lppd->nMaxPage;
|
|
|
|
if (lppd->nFromPage < lppd->nMinPage)
|
|
|
|
lppd->nFromPage = lppd->nMinPage;
|
|
|
|
if (lppd->nFromPage > lppd->nMaxPage)
|
|
|
|
lppd->nFromPage = lppd->nMaxPage;
|
|
|
|
|
|
|
|
/* If the printer combo box is in the dialog, fill it */
|
|
|
|
if (GetDlgItem(hDlg,comboID)) {
|
|
|
|
/* Fill Combobox
|
|
|
|
*/
|
|
|
|
pdn = GlobalLock16(lppd->hDevNames);
|
|
|
|
pdm = GlobalLock16(lppd->hDevMode);
|
|
|
|
if(pdn)
|
|
|
|
name = (char*)pdn + pdn->wDeviceOffset;
|
|
|
|
else if(pdm)
|
|
|
|
name = pdm->dmDeviceName;
|
|
|
|
PRINTDLG_SetUpPrinterListCombo(hDlg, comboID, name);
|
|
|
|
if(pdm) GlobalUnlock16(lppd->hDevMode);
|
|
|
|
if(pdn) GlobalUnlock16(lppd->hDevNames);
|
|
|
|
|
|
|
|
/* Now find selected printer and update rest of dlg */
|
|
|
|
name = HeapAlloc(GetProcessHeap(),0,256);
|
|
|
|
if (GetDlgItemTextA(hDlg, comboID, name, 255))
|
|
|
|
PRINTDLG_ChangePrinter(hDlg, name, PrintStructures);
|
|
|
|
} else {
|
|
|
|
/* else just use default printer */
|
|
|
|
char name[200];
|
|
|
|
BOOL ret = PRINTDLG_GetDefaultPrinterName(name, sizeof(name));
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
PRINTDLG_ChangePrinter(hDlg, name, PrintStructures);
|
|
|
|
else
|
|
|
|
FIXME("No default printer found, expect problems!\n");
|
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,name);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-11-13 21:49:58 +01:00
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* PRINTDLG_WMCommand [internal]
|
|
|
|
*/
|
|
|
|
static LRESULT PRINTDLG_WMCommand(HWND hDlg, WPARAM wParam,
|
1999-05-02 13:34:26 +02:00
|
|
|
LPARAM lParam, PRINT_PTRA* PrintStructures)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2001-01-02 23:26:09 +01:00
|
|
|
LPPRINTDLGA lppd = PrintStructures->dlg.lpPrintDlg;
|
2000-05-27 00:26:06 +02:00
|
|
|
UINT PrinterComboID = (lppd->Flags & PD_PRINTSETUP) ? cmb1 : cmb4;
|
|
|
|
LPDEVMODEA lpdm = PrintStructures->lpDevMode;
|
1999-05-02 13:34:26 +02:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
switch (LOWORD(wParam)) {
|
|
|
|
case IDOK:
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE(" OK button was hit\n");
|
2001-01-02 23:26:09 +01:00
|
|
|
if (PRINTDLG_UpdatePrintDlg(hDlg, PrintStructures)!=TRUE) {
|
|
|
|
FIXME("Update printdlg was not successful!\n");
|
2000-05-27 00:26:06 +02:00
|
|
|
return(FALSE);
|
2001-01-02 23:26:09 +01:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
EndDialog(hDlg, TRUE);
|
|
|
|
return(TRUE);
|
|
|
|
|
|
|
|
case IDCANCEL:
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE(" CANCEL button was hit\n");
|
1999-02-28 21:05:11 +01:00
|
|
|
EndDialog(hDlg, FALSE);
|
2000-05-27 00:26:06 +02:00
|
|
|
return(FALSE);
|
|
|
|
|
1999-05-02 13:34:26 +02:00
|
|
|
case pshHelp:
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE(" HELP button was hit\n");
|
1999-05-02 13:34:26 +02:00
|
|
|
SendMessageA(lppd->hwndOwner, PrintStructures->HelpMessageID,
|
|
|
|
(WPARAM) hDlg, (LPARAM) lppd);
|
|
|
|
break;
|
2000-05-27 00:26:06 +02:00
|
|
|
|
1999-07-30 20:10:21 +02:00
|
|
|
case chx2: /* collate pages checkbox */
|
|
|
|
if (IsDlgButtonChecked(hDlg, chx2) == BST_CHECKED)
|
|
|
|
SendDlgItemMessageA(hDlg, ico3, STM_SETIMAGE, (WPARAM) IMAGE_ICON,
|
|
|
|
(LPARAM)PrintStructures->hCollateIcon);
|
|
|
|
else
|
|
|
|
SendDlgItemMessageA(hDlg, ico3, STM_SETIMAGE, (WPARAM) IMAGE_ICON,
|
|
|
|
(LPARAM)PrintStructures->hNoCollateIcon);
|
|
|
|
break;
|
|
|
|
case edt1: /* from page nr editbox */
|
|
|
|
case edt2: /* to page nr editbox */
|
2000-05-27 00:26:06 +02:00
|
|
|
if (HIWORD(wParam)==EN_CHANGE) {
|
|
|
|
WORD nToPage;
|
|
|
|
WORD nFromPage;
|
|
|
|
nFromPage = GetDlgItemInt(hDlg, edt1, NULL, FALSE);
|
|
|
|
nToPage = GetDlgItemInt(hDlg, edt2, NULL, FALSE);
|
1999-05-02 13:34:26 +02:00
|
|
|
if (nFromPage != lppd->nFromPage || nToPage != lppd->nToPage)
|
2000-05-27 00:26:06 +02:00
|
|
|
CheckRadioButton(hDlg, rad1, rad3, rad3);
|
|
|
|
}
|
1999-05-02 13:34:26 +02:00
|
|
|
break;
|
2001-02-12 19:09:34 +01:00
|
|
|
|
|
|
|
case edt3:
|
|
|
|
if(HIWORD(wParam) == EN_CHANGE) {
|
|
|
|
INT copies = GetDlgItemInt(hDlg, edt3, NULL, FALSE);
|
|
|
|
if(copies <= 1)
|
|
|
|
EnableWindow(GetDlgItem(hDlg, chx2), FALSE);
|
|
|
|
else
|
|
|
|
EnableWindow(GetDlgItem(hDlg, chx2), TRUE);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
case psh2: /* Properties button */
|
|
|
|
{
|
|
|
|
HANDLE hPrinter;
|
1999-05-02 13:34:26 +02:00
|
|
|
char PrinterName[256];
|
2000-05-27 00:26:06 +02:00
|
|
|
|
|
|
|
GetDlgItemTextA(hDlg, PrinterComboID, PrinterName, 255);
|
|
|
|
if (!OpenPrinterA(PrinterName, &hPrinter, NULL)) {
|
2001-01-02 23:26:09 +01:00
|
|
|
FIXME(" Call to OpenPrinter did not succeed!\n");
|
2000-05-27 00:26:06 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
DocumentPropertiesA(hDlg, hPrinter, PrinterName,
|
|
|
|
PrintStructures->lpDevMode,
|
|
|
|
PrintStructures->lpDevMode,
|
|
|
|
DM_IN_BUFFER | DM_OUT_BUFFER | DM_IN_PROMPT);
|
|
|
|
ClosePrinter(hPrinter);
|
1999-05-02 13:34:26 +02:00
|
|
|
break;
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
1999-08-07 14:34:54 +02:00
|
|
|
|
2001-02-12 20:42:08 +01:00
|
|
|
case rad1: /* Paperorientation */
|
|
|
|
if (lppd->Flags & PD_PRINTSETUP)
|
|
|
|
lpdm->u1.s1.dmOrientation = DMORIENT_PORTRAIT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case rad2: /* Paperorientation */
|
|
|
|
if (lppd->Flags & PD_PRINTSETUP)
|
|
|
|
lpdm->u1.s1.dmOrientation = DMORIENT_LANDSCAPE;
|
|
|
|
break;
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
case cmb1:
|
|
|
|
case cmb4: /* Printer combobox */
|
|
|
|
if (HIWORD(wParam)==CBN_SELCHANGE) {
|
|
|
|
char PrinterName[256];
|
|
|
|
GetDlgItemTextA(hDlg, LOWORD(wParam), PrinterName, 255);
|
|
|
|
PRINTDLG_ChangePrinter(hDlg, PrinterName, PrintStructures);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cmb2: /* Papersize */
|
|
|
|
{
|
|
|
|
DWORD Sel = SendDlgItemMessageA(hDlg, cmb2, CB_GETCURSEL, 0, 0);
|
|
|
|
if(Sel != CB_ERR)
|
|
|
|
lpdm->u1.s1.dmPaperSize = SendDlgItemMessageA(hDlg, cmb2,
|
|
|
|
CB_GETITEMDATA,
|
|
|
|
Sel, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cmb3: /* Bin */
|
|
|
|
{
|
|
|
|
DWORD Sel = SendDlgItemMessageA(hDlg, cmb3, CB_GETCURSEL, 0, 0);
|
|
|
|
if(Sel != CB_ERR)
|
|
|
|
lpdm->dmDefaultSource = SendDlgItemMessageA(hDlg, cmb3,
|
|
|
|
CB_GETITEMDATA, Sel,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
break;
|
1999-08-07 14:34:54 +02:00
|
|
|
}
|
2001-02-12 19:09:34 +01:00
|
|
|
if(lppd->Flags & PD_PRINTSETUP) {
|
|
|
|
switch (LOWORD(wParam)) {
|
|
|
|
case rad1: /* orientation */
|
|
|
|
case rad2:
|
|
|
|
if (IsDlgButtonChecked(hDlg, rad1) == BST_CHECKED) {
|
|
|
|
if(lpdm->u1.s1.dmOrientation != DMORIENT_PORTRAIT) {
|
|
|
|
lpdm->u1.s1.dmOrientation = DMORIENT_PORTRAIT;
|
|
|
|
SendDlgItemMessageA(hDlg, ico1, STM_SETIMAGE,
|
|
|
|
(WPARAM)IMAGE_ICON,
|
|
|
|
(LPARAM)PrintStructures->hPortraitIcon);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(lpdm->u1.s1.dmOrientation != DMORIENT_LANDSCAPE) {
|
|
|
|
lpdm->u1.s1.dmOrientation = DMORIENT_LANDSCAPE;
|
|
|
|
SendDlgItemMessageA(hDlg, ico1, STM_SETIMAGE,
|
|
|
|
(WPARAM)IMAGE_ICON,
|
|
|
|
(LPARAM)PrintStructures->hLandscapeIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-11-13 21:49:58 +01:00
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PrintDlgProcA [internal]
|
1999-11-13 21:49:58 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
BOOL WINAPI PrintDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
1999-11-13 21:49:58 +01:00
|
|
|
{
|
2000-05-27 00:26:06 +02:00
|
|
|
PRINT_PTRA* PrintStructures;
|
|
|
|
LRESULT res=FALSE;
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
if (uMsg!=WM_INITDIALOG) {
|
|
|
|
PrintStructures = (PRINT_PTRA*) GetWindowLongA(hDlg, DWL_USER);
|
|
|
|
if (!PrintStructures)
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
PrintStructures = (PRINT_PTRA*) lParam;
|
|
|
|
SetWindowLongA(hDlg, DWL_USER, lParam);
|
|
|
|
res = PRINTDLG_WMInitDialog(hDlg, wParam, PrintStructures);
|
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
if(PrintStructures->dlg.lpPrintDlg->Flags & PD_ENABLEPRINTHOOK)
|
|
|
|
res = PrintStructures->dlg.lpPrintDlg->lpfnPrintHook(
|
|
|
|
hDlg, uMsg, wParam, (LPARAM)PrintStructures->dlg.lpPrintDlg
|
|
|
|
);
|
2000-05-27 00:26:06 +02:00
|
|
|
return res;
|
1999-11-13 21:49:58 +01:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
if(PrintStructures->dlg.lpPrintDlg->Flags & PD_ENABLEPRINTHOOK) {
|
|
|
|
res = PrintStructures->dlg.lpPrintDlg->lpfnPrintHook(hDlg,uMsg,wParam,
|
2000-05-27 00:26:06 +02:00
|
|
|
lParam);
|
|
|
|
if(res) return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (uMsg) {
|
|
|
|
case WM_COMMAND:
|
|
|
|
return PRINTDLG_WMCommand(hDlg, wParam, lParam, PrintStructures);
|
1999-11-13 21:49:58 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
case WM_DESTROY:
|
|
|
|
DestroyIcon(PrintStructures->hCollateIcon);
|
|
|
|
DestroyIcon(PrintStructures->hNoCollateIcon);
|
2001-02-12 19:09:34 +01:00
|
|
|
DestroyIcon(PrintStructures->hPortraitIcon);
|
|
|
|
DestroyIcon(PrintStructures->hLandscapeIcon);
|
|
|
|
if(PrintStructures->hwndUpDown)
|
|
|
|
DestroyWindow(PrintStructures->hwndUpDown);
|
2000-05-27 00:26:06 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-02-26 23:32:35 +01:00
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
*
|
|
|
|
* PRINTDLG_Get16TemplateFrom32 [Internal]
|
|
|
|
* Generates a 16 bits template from the Wine 32 bits resource
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static HGLOBAL16 PRINTDLG_Get16TemplateFrom32(char *PrintResourceName)
|
|
|
|
{
|
|
|
|
HANDLE hResInfo, hDlgTmpl32;
|
|
|
|
LPCVOID template32;
|
|
|
|
DWORD size;
|
|
|
|
HGLOBAL16 hGlobal16;
|
|
|
|
LPVOID template;
|
|
|
|
|
|
|
|
if (!(hResInfo = FindResourceA(COMMDLG_hInstance32,
|
|
|
|
PrintResourceName, RT_DIALOGA)))
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_FINDRESFAILURE);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!(hDlgTmpl32 = LoadResource(COMMDLG_hInstance32, hResInfo )) ||
|
|
|
|
!(template32 = LockResource( hDlgTmpl32 )))
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
size = SizeofResource(COMMDLG_hInstance32, hResInfo);
|
|
|
|
hGlobal16 = GlobalAlloc16(0, size);
|
|
|
|
if (!hGlobal16)
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_MEMALLOCFAILURE);
|
|
|
|
ERR("alloc failure for %ld bytes\n", size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
template = GlobalLock16(hGlobal16);
|
|
|
|
if (!template)
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_MEMLOCKFAILURE);
|
|
|
|
ERR("global lock failure for %x handle\n", hGlobal16);
|
|
|
|
GlobalFree16(hGlobal16);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ConvertDialog32To16((LPVOID)template32, size, (LPVOID)template);
|
|
|
|
GlobalUnlock16(hGlobal16);
|
|
|
|
return hGlobal16;
|
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/************************************************************
|
|
|
|
*
|
|
|
|
* PRINTDLG_GetDlgTemplate
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static HGLOBAL PRINTDLG_GetDlgTemplate(PRINTDLGA *lppd)
|
|
|
|
{
|
|
|
|
HGLOBAL hDlgTmpl, hResInfo;
|
|
|
|
|
|
|
|
if (lppd->Flags & PD_PRINTSETUP) {
|
2001-01-02 23:26:09 +01:00
|
|
|
if(lppd->Flags & PD_ENABLESETUPTEMPLATEHANDLE) {
|
2000-05-27 00:26:06 +02:00
|
|
|
hDlgTmpl = lppd->hSetupTemplate;
|
|
|
|
} else if(lppd->Flags & PD_ENABLESETUPTEMPLATE) {
|
|
|
|
hResInfo = FindResourceA(lppd->hInstance,
|
|
|
|
lppd->lpSetupTemplateName, RT_DIALOGA);
|
|
|
|
hDlgTmpl = LoadResource(lppd->hInstance, hResInfo);
|
|
|
|
} else {
|
|
|
|
hResInfo = FindResourceA(COMDLG32_hInstance, "PRINT32_SETUP",
|
|
|
|
RT_DIALOGA);
|
|
|
|
hDlgTmpl = LoadResource(COMDLG32_hInstance, hResInfo);
|
|
|
|
}
|
|
|
|
} else {
|
2001-01-02 23:26:09 +01:00
|
|
|
if(lppd->Flags & PD_ENABLEPRINTTEMPLATEHANDLE) {
|
2000-05-27 00:26:06 +02:00
|
|
|
hDlgTmpl = lppd->hPrintTemplate;
|
|
|
|
} else if(lppd->Flags & PD_ENABLEPRINTTEMPLATE) {
|
|
|
|
hResInfo = FindResourceA(lppd->hInstance,
|
|
|
|
lppd->lpPrintTemplateName,
|
|
|
|
RT_DIALOGA);
|
|
|
|
hDlgTmpl = LoadResource(lppd->hInstance, hResInfo);
|
|
|
|
} else {
|
|
|
|
hResInfo = FindResourceA(COMDLG32_hInstance, "PRINT32",
|
|
|
|
RT_DIALOGA);
|
|
|
|
hDlgTmpl = LoadResource(COMDLG32_hInstance, hResInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hDlgTmpl;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
/************************************************************
|
|
|
|
*
|
|
|
|
* PRINTDLG_GetDlgTemplate
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static HGLOBAL16 PRINTDLG_GetDlgTemplate16(PRINTDLG16 *lppd)
|
|
|
|
{
|
|
|
|
HGLOBAL16 hDlgTmpl, hResInfo;
|
|
|
|
|
|
|
|
if (lppd->Flags & PD_PRINTSETUP) {
|
|
|
|
if(lppd->Flags & PD_ENABLESETUPTEMPLATEHANDLE) {
|
|
|
|
hDlgTmpl = lppd->hSetupTemplate;
|
|
|
|
} else if(lppd->Flags & PD_ENABLESETUPTEMPLATE) {
|
|
|
|
hResInfo = FindResource16(lppd->hInstance,
|
|
|
|
MapSL(lppd->lpSetupTemplateName), RT_DIALOGA);
|
|
|
|
hDlgTmpl = LoadResource16(lppd->hInstance, hResInfo);
|
|
|
|
} else {
|
2001-02-26 23:32:35 +01:00
|
|
|
hDlgTmpl = PRINTDLG_Get16TemplateFrom32("PRINT32_SETUP");
|
2001-01-02 23:26:09 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(lppd->Flags & PD_ENABLEPRINTTEMPLATEHANDLE) {
|
|
|
|
hDlgTmpl = lppd->hPrintTemplate;
|
|
|
|
} else if(lppd->Flags & PD_ENABLEPRINTTEMPLATE) {
|
|
|
|
hResInfo = FindResource16(lppd->hInstance,
|
|
|
|
MapSL(lppd->lpPrintTemplateName),
|
|
|
|
RT_DIALOGA);
|
|
|
|
hDlgTmpl = LoadResource16(lppd->hInstance, hResInfo);
|
|
|
|
} else {
|
2001-02-26 23:32:35 +01:00
|
|
|
hDlgTmpl = PRINTDLG_Get16TemplateFrom32("PRINT32");
|
2001-01-02 23:26:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return hDlgTmpl;
|
|
|
|
}
|
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
*
|
|
|
|
* PRINTDLG_CreateDC
|
|
|
|
*
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2000-05-27 00:26:06 +02:00
|
|
|
static BOOL PRINTDLG_CreateDC(LPPRINTDLGA lppd)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2000-05-27 00:26:06 +02:00
|
|
|
DEVNAMES *pdn = GlobalLock(lppd->hDevNames);
|
|
|
|
DEVMODEA *pdm = GlobalLock(lppd->hDevMode);
|
|
|
|
|
|
|
|
if(lppd->Flags & PD_RETURNDC) {
|
|
|
|
lppd->hDC = CreateDCA((char*)pdn + pdn->wDriverOffset,
|
|
|
|
(char*)pdn + pdn->wDeviceOffset,
|
|
|
|
(char*)pdn + pdn->wOutputOffset,
|
|
|
|
pdm );
|
|
|
|
} else if(lppd->Flags & PD_RETURNIC) {
|
|
|
|
lppd->hDC = CreateICA((char*)pdn + pdn->wDriverOffset,
|
|
|
|
(char*)pdn + pdn->wDeviceOffset,
|
|
|
|
(char*)pdn + pdn->wOutputOffset,
|
|
|
|
pdm );
|
|
|
|
}
|
|
|
|
GlobalUnlock(lppd->hDevNames);
|
|
|
|
GlobalUnlock(lppd->hDevMode);
|
|
|
|
return lppd->hDC ? TRUE : FALSE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2000-05-27 00:26:06 +02:00
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
static BOOL PRINTDLG_CreateDC16(LPPRINTDLG16 lppd)
|
|
|
|
{
|
|
|
|
DEVNAMES *pdn = GlobalLock16(lppd->hDevNames);
|
|
|
|
DEVMODEA *pdm = GlobalLock16(lppd->hDevMode);
|
|
|
|
|
|
|
|
if(lppd->Flags & PD_RETURNDC) {
|
|
|
|
lppd->hDC = CreateDCA((char*)pdn + pdn->wDriverOffset,
|
|
|
|
(char*)pdn + pdn->wDeviceOffset,
|
|
|
|
(char*)pdn + pdn->wOutputOffset,
|
|
|
|
pdm );
|
|
|
|
} else if(lppd->Flags & PD_RETURNIC) {
|
|
|
|
lppd->hDC = CreateICA((char*)pdn + pdn->wDriverOffset,
|
|
|
|
(char*)pdn + pdn->wDeviceOffset,
|
|
|
|
(char*)pdn + pdn->wOutputOffset,
|
|
|
|
pdm );
|
|
|
|
}
|
|
|
|
GlobalUnlock16(lppd->hDevNames);
|
|
|
|
GlobalUnlock16(lppd->hDevMode);
|
|
|
|
return lppd->hDC ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* PrintDlgA (COMDLG32.17)
|
|
|
|
*
|
|
|
|
* Displays the the PRINT dialog box, which enables the user to specify
|
|
|
|
* specific properties of the print job.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* nonzero if the user pressed the OK button
|
|
|
|
* zero if the user cancelled the window or an error occurred
|
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* PrintDlg:
|
|
|
|
* * The Collate Icons do not display, even though they are in the code.
|
|
|
|
* * The Properties Button(s) should call DocumentPropertiesA().
|
|
|
|
* PrintSetupDlg:
|
|
|
|
* * The Paper Orientation Icons are not implemented yet.
|
|
|
|
* * The Properties Button(s) should call DocumentPropertiesA().
|
|
|
|
* * Settings are not yet taken from a provided DevMode or
|
|
|
|
* default printer settings.
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PrintDlgA(
|
2000-12-02 00:58:28 +01:00
|
|
|
LPPRINTDLGA lppd /* [in/out] ptr to PRINTDLG32 struct */
|
2000-05-27 00:26:06 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
LPVOID ptr;
|
|
|
|
HINSTANCE hInst = GetWindowLongA( lppd->hwndOwner, GWL_HINSTANCE );
|
|
|
|
|
|
|
|
if(TRACE_ON(commdlg)) {
|
|
|
|
char flagstr[1000] = "";
|
|
|
|
struct pd_flags *pflag = pd_flags;
|
|
|
|
for( ; pflag->name; pflag++) {
|
|
|
|
if(lppd->Flags & pflag->flag)
|
|
|
|
strcat(flagstr, pflag->name);
|
|
|
|
}
|
|
|
|
TRACE("(%p): hwndOwner = %08x, hDevMode = %08x, hDevNames = %08x\n"
|
|
|
|
"pp. %d-%d, min p %d, max p %d, copies %d, hinst %08x\n"
|
|
|
|
"flags %08lx (%s)\n",
|
|
|
|
lppd, lppd->hwndOwner, lppd->hDevMode, lppd->hDevNames,
|
|
|
|
lppd->nFromPage, lppd->nToPage, lppd->nMinPage, lppd->nMaxPage,
|
|
|
|
lppd->nCopies, lppd->hInstance, lppd->Flags, flagstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lppd->lStructSize != sizeof(PRINTDLGA)) {
|
|
|
|
WARN("structure size failure !!!\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lppd->Flags & PD_RETURNDEFAULT) {
|
|
|
|
PRINTER_INFO_2A *pbuf;
|
|
|
|
HANDLE hprn;
|
|
|
|
DWORD needed;
|
|
|
|
|
|
|
|
if(lppd->hDevMode || lppd->hDevNames) {
|
|
|
|
WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE);
|
1999-02-28 21:05:11 +01:00
|
|
|
return FALSE;
|
2000-05-27 00:26:06 +02:00
|
|
|
}
|
|
|
|
if(!PRINTDLG_OpenDefaultPrinter(&hprn)) {
|
|
|
|
WARN("Can't find default printer\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetPrinterA(hprn, 2, NULL, 0, &needed);
|
|
|
|
pbuf = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
GetPrinterA(hprn, 2, (LPBYTE)pbuf, needed, &needed);
|
|
|
|
ClosePrinter(hprn);
|
|
|
|
PRINTDLG_CreateDevNames(&(lppd->hDevNames), "winspool",
|
|
|
|
pbuf->pDevMode->dmDeviceName,
|
|
|
|
pbuf->pPortName);
|
|
|
|
lppd->hDevMode = GlobalAlloc(GMEM_MOVEABLE, pbuf->pDevMode->dmSize +
|
|
|
|
pbuf->pDevMode->dmDriverExtra);
|
|
|
|
ptr = GlobalLock(lppd->hDevMode);
|
|
|
|
memcpy(ptr, pbuf->pDevMode, pbuf->pDevMode->dmSize +
|
|
|
|
pbuf->pDevMode->dmDriverExtra);
|
|
|
|
GlobalUnlock(lppd->hDevMode);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pbuf);
|
|
|
|
bRet = TRUE;
|
|
|
|
} else {
|
|
|
|
HGLOBAL hDlgTmpl;
|
|
|
|
PRINT_PTRA *PrintStructures;
|
|
|
|
|
|
|
|
/* load Dialog resources,
|
|
|
|
* depending on Flags indicates Print32 or Print32_setup dialog
|
|
|
|
*/
|
|
|
|
hDlgTmpl = PRINTDLG_GetDlgTemplate(lppd);
|
2001-01-02 23:26:09 +01:00
|
|
|
if (!hDlgTmpl) {
|
2000-05-27 00:26:06 +02:00
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-01-02 23:26:09 +01:00
|
|
|
ptr = LockResource( hDlgTmpl );
|
|
|
|
if (!ptr) {
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
PrintStructures = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof(PRINT_PTRA));
|
2001-01-02 23:26:09 +01:00
|
|
|
PrintStructures->dlg.lpPrintDlg = lppd;
|
2000-05-27 00:26:06 +02:00
|
|
|
|
2000-12-08 00:13:03 +01:00
|
|
|
/* and create & process the dialog .
|
|
|
|
* -1 is failure, 0 is broken hwnd, everything else is ok.
|
2000-05-27 00:26:06 +02:00
|
|
|
*/
|
2000-12-08 00:13:03 +01:00
|
|
|
bRet = (0<DialogBoxIndirectParamA(hInst, ptr, lppd->hwndOwner,
|
2001-01-02 23:26:09 +01:00
|
|
|
PrintDlgProcA,
|
|
|
|
(LPARAM)PrintStructures));
|
2000-05-27 00:26:06 +02:00
|
|
|
|
|
|
|
if(bRet) {
|
|
|
|
DEVMODEA *lpdm = PrintStructures->lpDevMode, *lpdmReturn;
|
|
|
|
PRINTER_INFO_2A *pi = PrintStructures->lpPrinterInfo;
|
|
|
|
|
|
|
|
if (lppd->hDevMode == 0) {
|
|
|
|
TRACE(" No hDevMode yet... Need to create my own\n");
|
|
|
|
lppd->hDevMode = GlobalAlloc(GMEM_MOVEABLE,
|
|
|
|
lpdm->dmSize + lpdm->dmDriverExtra);
|
|
|
|
} else {
|
|
|
|
WORD locks;
|
|
|
|
if((locks = (GlobalFlags(lppd->hDevMode) & GMEM_LOCKCOUNT))) {
|
|
|
|
WARN("hDevMode has %d locks on it. Unlocking it now\n", locks);
|
|
|
|
while(locks--) {
|
|
|
|
GlobalUnlock(lppd->hDevMode);
|
|
|
|
TRACE("Now got %d locks\n", locks);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lppd->hDevMode = GlobalReAlloc(lppd->hDevMode,
|
|
|
|
lpdm->dmSize + lpdm->dmDriverExtra,
|
|
|
|
GMEM_MOVEABLE);
|
|
|
|
}
|
|
|
|
lpdmReturn = GlobalLock(lppd->hDevMode);
|
|
|
|
memcpy(lpdmReturn, lpdm, lpdm->dmSize + lpdm->dmDriverExtra);
|
|
|
|
|
|
|
|
if (lppd->hDevNames != 0) {
|
|
|
|
WORD locks;
|
|
|
|
if((locks = (GlobalFlags(lppd->hDevNames) & GMEM_LOCKCOUNT))) {
|
|
|
|
WARN("hDevNames has %d locks on it. Unlocking it now\n", locks);
|
|
|
|
while(locks--)
|
|
|
|
GlobalUnlock(lppd->hDevNames);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PRINTDLG_CreateDevNames(&(lppd->hDevNames), "winspool",
|
|
|
|
lpdmReturn->dmDeviceName, pi->pPortName);
|
|
|
|
GlobalUnlock(lppd->hDevMode);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures->lpDevMode);
|
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures->lpPrinterInfo);
|
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures);
|
|
|
|
}
|
|
|
|
if(bRet && (lppd->Flags & PD_RETURNDC || lppd->Flags & PD_RETURNIC))
|
|
|
|
bRet = PRINTDLG_CreateDC(lppd);
|
|
|
|
|
|
|
|
TRACE("exit! (%d)\n", bRet);
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2001-01-02 23:26:09 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* PrintDlg16 (COMMDLG.20)
|
|
|
|
*
|
|
|
|
* Displays the the PRINT dialog box, which enables the user to specify
|
|
|
|
* specific properties of the print job.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* nonzero if the user pressed the OK button
|
|
|
|
* zero if the user cancelled the window or an error occurred
|
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* * calls up to the 32-bit versions of the Dialogs, which look different
|
|
|
|
* * Customizing is *not* implemented.
|
|
|
|
*/
|
|
|
|
|
|
|
|
BOOL16 WINAPI PrintDlg16(
|
|
|
|
LPPRINTDLG16 lppd /* [in/out] ptr to PRINTDLG struct */
|
|
|
|
) {
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
LPVOID ptr;
|
|
|
|
HINSTANCE hInst = GetWindowLongA( lppd->hwndOwner, GWL_HINSTANCE );
|
|
|
|
|
|
|
|
if(TRACE_ON(commdlg)) {
|
|
|
|
char flagstr[1000] = "";
|
|
|
|
struct pd_flags *pflag = pd_flags;
|
|
|
|
for( ; pflag->name; pflag++) {
|
|
|
|
if(lppd->Flags & pflag->flag)
|
|
|
|
strcat(flagstr, pflag->name);
|
|
|
|
}
|
|
|
|
TRACE("(%p): hwndOwner = %08x, hDevMode = %08x, hDevNames = %08x\n"
|
|
|
|
"pp. %d-%d, min p %d, max p %d, copies %d, hinst %08x\n"
|
|
|
|
"flags %08lx (%s)\n",
|
|
|
|
lppd, lppd->hwndOwner, lppd->hDevMode, lppd->hDevNames,
|
|
|
|
lppd->nFromPage, lppd->nToPage, lppd->nMinPage, lppd->nMaxPage,
|
|
|
|
lppd->nCopies, lppd->hInstance, lppd->Flags, flagstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lppd->lStructSize != sizeof(PRINTDLG16)) {
|
|
|
|
ERR("structure size (%ld/%d)\n",lppd->lStructSize,sizeof(PRINTDLG16));
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lppd->Flags & PD_RETURNDEFAULT) {
|
|
|
|
PRINTER_INFO_2A *pbuf;
|
|
|
|
HANDLE hprn;
|
|
|
|
DWORD needed;
|
|
|
|
|
|
|
|
if(lppd->hDevMode || lppd->hDevNames) {
|
|
|
|
WARN("hDevMode or hDevNames non-zero for PD_RETURNDEFAULT\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(PDERR_RETDEFFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if(!PRINTDLG_OpenDefaultPrinter(&hprn)) {
|
|
|
|
WARN("Can't find default printer\n");
|
|
|
|
COMDLG32_SetCommDlgExtendedError(PDERR_NODEFAULTPRN);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetPrinterA(hprn, 2, NULL, 0, &needed);
|
|
|
|
pbuf = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
GetPrinterA(hprn, 2, (LPBYTE)pbuf, needed, &needed);
|
|
|
|
ClosePrinter(hprn);
|
|
|
|
PRINTDLG_CreateDevNames16(&(lppd->hDevNames), "winspool",
|
|
|
|
pbuf->pDevMode->dmDeviceName,
|
|
|
|
pbuf->pPortName);
|
|
|
|
lppd->hDevMode = GlobalAlloc16(GMEM_MOVEABLE,pbuf->pDevMode->dmSize+
|
|
|
|
pbuf->pDevMode->dmDriverExtra);
|
|
|
|
ptr = GlobalLock16(lppd->hDevMode);
|
|
|
|
memcpy(ptr, pbuf->pDevMode, pbuf->pDevMode->dmSize +
|
|
|
|
pbuf->pDevMode->dmDriverExtra);
|
|
|
|
GlobalUnlock16(lppd->hDevMode);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pbuf);
|
|
|
|
bRet = TRUE;
|
|
|
|
} else {
|
|
|
|
HGLOBAL hDlgTmpl;
|
|
|
|
PRINT_PTRA *PrintStructures;
|
|
|
|
|
|
|
|
/* load Dialog resources,
|
|
|
|
* depending on Flags indicates Print32 or Print32_setup dialog
|
|
|
|
*/
|
|
|
|
hDlgTmpl = PRINTDLG_GetDlgTemplate16(lppd);
|
|
|
|
if (!hDlgTmpl) {
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
PrintStructures = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof(PRINT_PTRA));
|
|
|
|
PrintStructures->dlg.lpPrintDlg16 = lppd;
|
|
|
|
PrintStructures->dlg.lpPrintDlg = (LPPRINTDLGA)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(PRINTDLGA));
|
|
|
|
#define CVAL(x) PrintStructures->dlg.lpPrintDlg->x = lppd->x;
|
|
|
|
#define MVAL(x) PrintStructures->dlg.lpPrintDlg->x = MapSL(lppd->x);
|
|
|
|
CVAL(Flags);CVAL(hwndOwner);CVAL(hDC);
|
|
|
|
CVAL(nFromPage);CVAL(nToPage);CVAL(nMinPage);CVAL(nMaxPage);
|
|
|
|
CVAL(nCopies);CVAL(hInstance);CVAL(lCustData);
|
|
|
|
MVAL(lpPrintTemplateName);MVAL(lpSetupTemplateName);
|
|
|
|
/* Don't copy rest, it is 16 bit specific */
|
|
|
|
#undef MVAL
|
|
|
|
#undef CVAL
|
|
|
|
|
|
|
|
PrintStructures->lpDevMode = HeapAlloc(GetProcessHeap(),0,sizeof(DEVMODEA));
|
|
|
|
|
|
|
|
/* and create & process the dialog .
|
|
|
|
* -1 is failure, 0 is broken hwnd, everything else is ok.
|
|
|
|
*/
|
|
|
|
bRet = (0<DialogBoxIndirectParam16(
|
|
|
|
hInst, hDlgTmpl, lppd->hwndOwner,
|
|
|
|
(DLGPROC16)GetProcAddress16(GetModuleHandle16("COMMDLG"),(LPCSTR)21),
|
|
|
|
(LPARAM)PrintStructures
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (!PrintStructures->lpPrinterInfo) bRet = FALSE;
|
|
|
|
if(bRet) {
|
|
|
|
DEVMODEA *lpdm = PrintStructures->lpDevMode, *lpdmReturn;
|
|
|
|
PRINTER_INFO_2A *pi = PrintStructures->lpPrinterInfo;
|
|
|
|
|
|
|
|
if (lppd->hDevMode == 0) {
|
|
|
|
TRACE(" No hDevMode yet... Need to create my own\n");
|
|
|
|
lppd->hDevMode = GlobalAlloc16(GMEM_MOVEABLE,
|
|
|
|
lpdm->dmSize + lpdm->dmDriverExtra);
|
|
|
|
} else {
|
|
|
|
WORD locks;
|
|
|
|
if((locks = (GlobalFlags16(lppd->hDevMode)&GMEM_LOCKCOUNT))) {
|
|
|
|
WARN("hDevMode has %d locks on it. Unlocking it now\n", locks);
|
|
|
|
while(locks--) {
|
|
|
|
GlobalUnlock16(lppd->hDevMode);
|
|
|
|
TRACE("Now got %d locks\n", locks);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lppd->hDevMode = GlobalReAlloc16(lppd->hDevMode,
|
|
|
|
lpdm->dmSize + lpdm->dmDriverExtra,
|
|
|
|
GMEM_MOVEABLE);
|
|
|
|
}
|
|
|
|
lpdmReturn = GlobalLock16(lppd->hDevMode);
|
|
|
|
memcpy(lpdmReturn, lpdm, lpdm->dmSize + lpdm->dmDriverExtra);
|
|
|
|
|
|
|
|
if (lppd->hDevNames != 0) {
|
|
|
|
WORD locks;
|
|
|
|
if((locks = (GlobalFlags16(lppd->hDevNames)&GMEM_LOCKCOUNT))) {
|
|
|
|
WARN("hDevNames has %d locks on it. Unlocking it now\n", locks);
|
|
|
|
while(locks--)
|
|
|
|
GlobalUnlock16(lppd->hDevNames);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PRINTDLG_CreateDevNames16(&(lppd->hDevNames), "winspool",
|
|
|
|
lpdmReturn->dmDeviceName, pi->pPortName);
|
|
|
|
GlobalUnlock16(lppd->hDevMode);
|
|
|
|
}
|
2001-02-26 23:32:35 +01:00
|
|
|
if (!(lppd->Flags & (PD_ENABLESETUPTEMPLATEHANDLE | PD_ENABLESETUPTEMPLATE)))
|
|
|
|
GlobalFree16(hDlgTmpl); /* created from the 32 bits resource */
|
2001-01-02 23:26:09 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures->lpDevMode);
|
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures->lpPrinterInfo);
|
|
|
|
HeapFree(GetProcessHeap(), 0, PrintStructures);
|
|
|
|
}
|
|
|
|
if(bRet && (lppd->Flags & PD_RETURNDC || lppd->Flags & PD_RETURNIC))
|
|
|
|
bRet = PRINTDLG_CreateDC16(lppd);
|
|
|
|
|
|
|
|
TRACE("exit! (%d)\n", bRet);
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* PrintDlgW (COMDLG32.18)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PrintDlgW( LPPRINTDLGW printdlg )
|
|
|
|
{
|
|
|
|
FIXME("A really empty stub\n" );
|
|
|
|
return FALSE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* PageSetupDlg
|
|
|
|
*/
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* PageSetupDlgA (COMDLG32.15)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PageSetupDlgA(LPPAGESETUPDLGA setupdlg) {
|
|
|
|
FIXME("(%p), stub!\n",setupdlg);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/***********************************************************************
|
|
|
|
* PageSetupDlgW (COMDLG32.16)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PageSetupDlgW(LPPAGESETUPDLGW setupdlg) {
|
|
|
|
FIXME("(%p), stub!\n",setupdlg);
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2000-05-27 00:26:06 +02:00
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* 16 bit commdlg
|
|
|
|
*/
|
1999-02-28 21:05:11 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* PrintDlgProc16 (COMMDLG.21)
|
|
|
|
*/
|
2001-01-02 23:26:09 +01:00
|
|
|
LRESULT WINAPI PrintDlgProc16(HWND16 hDlg, UINT16 uMsg, WPARAM16 wParam,
|
1999-02-28 21:05:11 +01:00
|
|
|
LPARAM lParam)
|
|
|
|
{
|
2001-01-02 23:26:09 +01:00
|
|
|
PRINT_PTRA* PrintStructures;
|
|
|
|
LRESULT res=FALSE;
|
|
|
|
|
|
|
|
if (uMsg!=WM_INITDIALOG) {
|
|
|
|
PrintStructures = (PRINT_PTRA*) GetWindowLongA(hDlg, DWL_USER);
|
|
|
|
if (!PrintStructures)
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
PrintStructures = (PRINT_PTRA*) lParam;
|
|
|
|
SetWindowLongA(hDlg, DWL_USER, lParam);
|
|
|
|
res = PRINTDLG_WMInitDialog16(hDlg, wParam, PrintStructures);
|
|
|
|
|
|
|
|
if(PrintStructures->dlg.lpPrintDlg16->Flags & PD_ENABLEPRINTHOOK) {
|
|
|
|
res = CallWindowProc16(
|
|
|
|
(WNDPROC16)PrintStructures->dlg.lpPrintDlg16->lpfnPrintHook,
|
|
|
|
hDlg, uMsg, wParam, (LPARAM)PrintStructures->dlg.lpPrintDlg16
|
|
|
|
);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2001-01-02 23:26:09 +01:00
|
|
|
return res;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2001-01-02 23:26:09 +01:00
|
|
|
|
|
|
|
if(PrintStructures->dlg.lpPrintDlg16->Flags & PD_ENABLEPRINTHOOK) {
|
|
|
|
res = CallWindowProc16(
|
|
|
|
(WNDPROC16)PrintStructures->dlg.lpPrintDlg16->lpfnPrintHook,
|
|
|
|
hDlg,uMsg, wParam, lParam
|
|
|
|
);
|
2001-02-26 23:32:35 +01:00
|
|
|
if(LOWORD(res)) return res;
|
2001-01-02 23:26:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (uMsg) {
|
|
|
|
case WM_COMMAND:
|
|
|
|
return PRINTDLG_WMCommand(hDlg, wParam, lParam, PrintStructures);
|
|
|
|
|
|
|
|
case WM_DESTROY:
|
|
|
|
DestroyIcon(PrintStructures->hCollateIcon);
|
|
|
|
DestroyIcon(PrintStructures->hNoCollateIcon);
|
|
|
|
/* FIXME: don't forget to delete the paper orientation icons here! */
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return res;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-05-27 00:26:06 +02:00
|
|
|
* PrintSetupDlgProc16 (COMMDLG.22)
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
|
|
|
LRESULT WINAPI PrintSetupDlgProc16(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam,
|
2000-05-27 00:26:06 +02:00
|
|
|
LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
|
|
|
switch (wMsg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE("WM_INITDIALOG lParam=%08lX\n", lParam);
|
2000-08-08 22:49:16 +02:00
|
|
|
ShowWindow(hWnd, SW_SHOWNORMAL);
|
1999-02-28 21:05:11 +01:00
|
|
|
return (TRUE);
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (wParam) {
|
|
|
|
case IDOK:
|
|
|
|
EndDialog(hWnd, TRUE);
|
|
|
|
return(TRUE);
|
|
|
|
case IDCANCEL:
|
|
|
|
EndDialog(hWnd, FALSE);
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-02 21:36:53 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* PrintDlgExA
|
|
|
|
*/
|
2000-12-02 00:58:28 +01:00
|
|
|
HRESULT WINAPI PrintDlgExA(LPVOID lpPrintDlgExA) /* [???] FIXME: LPPRINTDLGEXA */
|
2000-06-02 21:36:53 +02:00
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
/***********************************************************************
|
|
|
|
* PrintDlgExW
|
|
|
|
*/
|
2000-12-02 00:58:28 +01:00
|
|
|
HRESULT WINAPI PrintDlgExW(LPVOID lpPrintDlgExW) /* [???] FIXME: LPPRINTDLGEXW */
|
2000-06-02 21:36:53 +02:00
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|