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
2002-03-10 00:29:33 +01:00
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
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>
2003-01-07 21:36:20 +01:00
# define NONAMELESSUNION
# define NONAMELESSSTRUCT
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"
2002-03-10 00:29:33 +01:00
# include "wine/debug.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
2002-03-10 00:29:33 +01:00
WINE_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 .
2002-06-01 01:06:46 +02:00
*
1999-08-07 14:34:54 +02:00
*/
2002-06-01 01:06:46 +02:00
typedef struct
1999-08-07 14:34:54 +02:00
{
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 ;
2001-05-02 03:10:43 +02:00
LPDRIVER_INFO_3A lpDriverInfo ;
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 ;
2002-06-01 01:06:46 +02:00
typedef struct
2002-04-11 19:32:49 +02:00
{
LPDEVMODEW lpDevMode ;
struct {
LPPRINTDLGW lpPrintDlg ;
} dlg ;
LPPRINTER_INFO_2W lpPrinterInfo ;
LPDRIVER_INFO_3W lpDriverInfo ;
UINT HelpMessageID ;
HICON hCollateIcon ; /* PrintDlg only */
HICON hNoCollateIcon ; /* PrintDlg only */
HICON hPortraitIcon ; /* PrintSetupDlg only */
HICON hLandscapeIcon ; /* PrintSetupDlg only */
HWND hwndUpDown ;
} PRINT_PTRW ;
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-05-05 02:44:03 +02:00
/* Debugging info */
static struct pd_flags psd_flags [ ] = {
{ PSD_MINMARGINS , " PSD_MINMARGINS " } ,
{ PSD_MARGINS , " PSD_MARGINS " } ,
{ PSD_INTHOUSANDTHSOFINCHES , " PSD_INTHOUSANDTHSOFINCHES " } ,
{ PSD_INHUNDREDTHSOFMILLIMETERS , " PSD_INHUNDREDTHSOFMILLIMETERS " } ,
{ PSD_DISABLEMARGINS , " PSD_DISABLEMARGINS " } ,
{ PSD_DISABLEPRINTER , " PSD_DISABLEPRINTER " } ,
{ PSD_NOWARNING , " PSD_NOWARNING " } ,
{ PSD_DISABLEORIENTATION , " PSD_DISABLEORIENTATION " } ,
{ PSD_RETURNDEFAULT , " PSD_RETURNDEFAULT " } ,
{ PSD_DISABLEPAPER , " PSD_DISABLEPAPER " } ,
{ PSD_SHOWHELP , " PSD_SHOWHELP " } ,
{ PSD_ENABLEPAGESETUPHOOK , " PSD_ENABLEPAGESETUPHOOK " } ,
{ PSD_ENABLEPAGESETUPTEMPLATE , " PSD_ENABLEPAGESETUPTEMPLATE " } ,
{ PSD_ENABLEPAGESETUPTEMPLATEHANDLE , " PSD_ENABLEPAGESETUPTEMPLATEHANDLE " } ,
{ PSD_ENABLEPAGEPAINTHOOK , " PSD_ENABLEPAGEPAINTHOOK " } ,
{ PSD_DISABLEPAGEPAINTING , " PSD_DISABLEPAGEPAINTING " } ,
{ - 1 , NULL }
} ;
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 .
2002-06-01 01:06:46 +02:00
* Even under WinNT / 2000 default printer is retrieved via GetProfileString -
2000-05-27 00:26:06 +02:00
* these entries are mapped somewhere in the registry rather than win . ini .
*
* Returns TRUE on success else FALSE
*/
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_GetDefaultPrinterNameA ( LPSTR buf , DWORD len )
2000-05-27 00:26:06 +02:00
{
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
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_GetDefaultPrinterNameW ( LPWSTR buf , DWORD len )
{
LPSTR ptr , bufA = ( LPSTR ) HeapAlloc ( GetProcessHeap ( ) , 0 , len + 1 ) ;
if ( ! GetProfileStringA ( " windows " , " device " , " " , bufA , len ) ) {
TRACE ( " No profile entry for default printer found. \n " ) ;
HeapFree ( GetProcessHeap ( ) , 0 , bufA ) ;
return FALSE ;
}
if ( ( ptr = strchr ( bufA , ' , ' ) ) = = NULL ) {
FIXME ( " bad format for default printer (%s)! \n " , bufA ) ;
HeapFree ( GetProcessHeap ( ) , 0 , bufA ) ;
return FALSE ;
}
* ptr = ' \0 ' ;
MultiByteToWideChar ( CP_ACP , 0 , bufA , - 1 , buf , len ) ;
HeapFree ( GetProcessHeap ( ) , 0 , bufA ) ;
return TRUE ;
}
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 ;
2002-04-11 19:32:49 +02:00
if ( ! PRINTDLG_GetDefaultPrinterNameA ( buf , sizeof ( buf ) ) )
2000-05-27 00:26:06 +02:00
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 .
*/
2002-04-11 19:32:49 +02:00
static INT PRINTDLG_SetUpPrinterListComboA ( HWND hDlg , UINT id , LPCSTR name )
2000-05-27 00:26:06 +02:00
{
DWORD needed , num ;
INT i ;
LPPRINTER_INFO_2A pi ;
EnumPrintersA ( PRINTER_ENUM_LOCAL , NULL , 2 , NULL , 0 , & needed , & num ) ;
pi = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
2002-06-01 01:06:46 +02:00
EnumPrintersA ( PRINTER_ENUM_LOCAL , NULL , 2 , ( LPBYTE ) pi , needed , & needed ,
2000-05-27 00:26:06 +02:00
& 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 ) ;
2002-04-11 19:32:49 +02:00
if ( ! PRINTDLG_GetDefaultPrinterNameA ( buf , sizeof ( buf ) ) )
2000-05-27 00:26:06 +02:00
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
}
2002-04-11 19:32:49 +02:00
static INT PRINTDLG_SetUpPrinterListComboW ( HWND hDlg , UINT id , LPCWSTR name )
{
DWORD needed , num ;
INT i ;
LPPRINTER_INFO_2W pi ;
EnumPrintersW ( PRINTER_ENUM_LOCAL , NULL , 2 , NULL , 0 , & needed , & num ) ;
pi = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
2002-06-01 01:06:46 +02:00
EnumPrintersW ( PRINTER_ENUM_LOCAL , NULL , 2 , ( LPBYTE ) pi , needed , & needed ,
2002-04-11 19:32:49 +02:00
& num ) ;
for ( i = 0 ; i < num ; i + + ) {
SendDlgItemMessageW ( hDlg , id , CB_ADDSTRING , 0 ,
( LPARAM ) pi [ i ] . pPrinterName ) ;
}
HeapFree ( GetProcessHeap ( ) , 0 , pi ) ;
if ( ! name | |
( i = SendDlgItemMessageW ( hDlg , id , CB_FINDSTRINGEXACT , - 1 ,
( LPARAM ) name ) ) = = CB_ERR ) {
/* ansi is ok */
char buf [ 260 ] ;
FIXME ( " Can't find '%s' in printer list so trying to find default \n " ,
debugstr_w ( name ) ) ;
if ( ! PRINTDLG_GetDefaultPrinterNameA ( buf , sizeof ( buf ) ) )
return num ;
i = SendDlgItemMessageA ( hDlg , id , CB_FINDSTRINGEXACT , - 1 , ( LPARAM ) buf ) ;
if ( i = = CB_ERR )
FIXME ( " Can't find default printer in printer list \n " ) ;
}
SendDlgItemMessageW ( 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
*/
2002-06-01 01:06:46 +02:00
static BOOL PRINTDLG_CreateDevNames ( HGLOBAL * hmem , char * DeviceDriverName ,
2000-05-27 00:26:06 +02:00
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 ) ;
2002-06-01 01:06:46 +02:00
2000-05-27 00:26:06 +02:00
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 ;
2002-06-01 01:06:46 +02:00
2000-05-27 00:26:06 +02:00
pTempPtr + = strlen ( DeviceName ) + 1 ;
strcpy ( pTempPtr , OutputPort ) ;
lpDevNames - > wOutputOffset = pTempPtr - pDevNamesSpace ;
2002-04-11 19:32:49 +02:00
PRINTDLG_GetDefaultPrinterNameA ( buf , sizeof ( buf ) ) ;
2000-05-27 00:26:06 +02:00
lpDevNames - > wDefault = ( strcmp ( buf , DeviceName ) = = 0 ) ? 1 : 0 ;
GlobalUnlock ( * hmem ) ;
return TRUE ;
}
1999-02-28 21:05:11 +01:00
2002-06-01 01:06:46 +02:00
static BOOL PRINTDLG_CreateDevNamesW ( HGLOBAL * hmem , LPCWSTR DeviceDriverName ,
2002-04-11 19:32:49 +02:00
LPCWSTR DeviceName , LPCWSTR OutputPort )
{
long size ;
LPWSTR pDevNamesSpace ;
LPWSTR pTempPtr ;
LPDEVNAMES lpDevNames ;
WCHAR bufW [ 260 ] ;
char buf [ 260 ] ;
size = sizeof ( WCHAR ) * lstrlenW ( DeviceDriverName ) + 2
+ sizeof ( WCHAR ) * lstrlenW ( DeviceName ) + 2
+ sizeof ( WCHAR ) * lstrlenW ( OutputPort ) + 2
+ sizeof ( DEVNAMES ) ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
if ( * hmem )
* hmem = GlobalReAlloc ( * hmem , size , GMEM_MOVEABLE ) ;
else
* hmem = GlobalAlloc ( GMEM_MOVEABLE , size ) ;
if ( * hmem = = 0 )
return FALSE ;
pDevNamesSpace = GlobalLock ( * hmem ) ;
lpDevNames = ( LPDEVNAMES ) pDevNamesSpace ;
pTempPtr = ( LPWSTR ) ( ( LPDEVNAMES ) pDevNamesSpace + 1 ) ;
lstrcpyW ( pTempPtr , DeviceDriverName ) ;
lpDevNames - > wDriverOffset = pTempPtr - pDevNamesSpace ;
pTempPtr + = lstrlenW ( DeviceDriverName ) + 1 ;
lstrcpyW ( pTempPtr , DeviceName ) ;
lpDevNames - > wDeviceOffset = pTempPtr - pDevNamesSpace ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
pTempPtr + = lstrlenW ( DeviceName ) + 1 ;
lstrcpyW ( pTempPtr , OutputPort ) ;
lpDevNames - > wOutputOffset = pTempPtr - pDevNamesSpace ;
PRINTDLG_GetDefaultPrinterNameA ( buf , sizeof ( buf ) ) ;
MultiByteToWideChar ( CP_ACP , 0 , buf , - 1 , bufW , - 1 ) ;
lpDevNames - > wDefault = ( lstrcmpW ( bufW , DeviceName ) = = 0 ) ? 1 : 0 ;
GlobalUnlock ( * hmem ) ;
return TRUE ;
}
2002-06-01 01:06:46 +02:00
static BOOL PRINTDLG_CreateDevNames16 ( HGLOBAL16 * hmem , char * DeviceDriverName ,
2001-01-02 23:26:09 +01:00
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 ) ;
2002-06-01 01:06:46 +02:00
2001-01-02 23:26:09 +01:00
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 ;
2002-06-01 01:06:46 +02:00
2001-01-02 23:26:09 +01:00
pTempPtr + = strlen ( DeviceName ) + 1 ;
strcpy ( pTempPtr , OutputPort ) ;
lpDevNames - > wOutputOffset = pTempPtr - pDevNamesSpace ;
2002-04-11 19:32:49 +02:00
PRINTDLG_GetDefaultPrinterNameA ( buf , sizeof ( buf ) ) ;
2001-01-02 23:26:09 +01:00
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 .
2002-06-01 01:06:46 +02:00
*
2000-05-27 00:26:06 +02:00
* 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
*/
2002-06-01 01:06:46 +02:00
static BOOL PRINTDLG_UpdatePrintDlgA ( HWND hDlg ,
2000-05-27 00:26:06 +02:00
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 ] ;
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_INVALID_PAGE_RANGE ,
2000-05-27 00:26:06 +02:00
resourcestr , 255 ) ;
sprintf ( resultstr , resourcestr , lppd - > nMinPage , lppd - > nMaxPage ) ;
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_PRINT_TITLE ,
2000-05-27 00:26:06 +02:00
resourcestr , 255 ) ;
MessageBoxA ( hDlg , resultstr , resourcestr ,
MB_OK | MB_ICONWARNING ) ;
return FALSE ;
}
lppd - > nFromPage = nFromPage ;
lppd - > nToPage = nToPage ;
2002-10-21 20:22:31 +02:00
lppd - > Flags | = PD_PAGENUMS ;
2000-05-27 00:26:06 +02:00
}
2002-10-21 20:22:31 +02:00
else
lppd - > Flags & = ~ PD_PAGENUMS ;
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 )
2002-06-01 01:06:46 +02:00
lpdm - > dmCollate =
2000-05-27 00:26:06 +02:00
( 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
}
2002-06-01 01:06:46 +02:00
static BOOL PRINTDLG_UpdatePrintDlgW ( HWND hDlg ,
2002-04-11 19:32:49 +02:00
PRINT_PTRW * PrintStructures )
{
LPPRINTDLGW lppd = PrintStructures - > dlg . lpPrintDlg ;
PDEVMODEW lpdm = PrintStructures - > lpDevMode ;
LPPRINTER_INFO_2W pi = PrintStructures - > lpPrinterInfo ;
if ( ! lpdm ) {
FIXME ( " No lpdm ptr? \n " ) ;
return FALSE ;
}
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 ] ;
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_INVALID_PAGE_RANGE ,
2002-04-11 19:32:49 +02:00
resourcestr , 255 ) ;
sprintf ( resultstr , resourcestr , lppd - > nMinPage , lppd - > nMaxPage ) ;
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_PRINT_TITLE ,
2002-04-11 19:32:49 +02:00
resourcestr , 255 ) ;
MessageBoxA ( hDlg , resultstr , resourcestr ,
MB_OK | MB_ICONWARNING ) ;
return FALSE ;
}
lppd - > nFromPage = nFromPage ;
lppd - > nToPage = nToPage ;
}
if ( IsDlgButtonChecked ( hDlg , chx1 ) = = BST_CHECKED ) { /* Print to file */
static WCHAR file [ ] = { ' F ' , ' I ' , ' L ' , ' E ' , ' : ' , 0 } ;
lppd - > Flags | = PD_PRINTTOFILE ;
pi - > pPortName = file ;
}
if ( IsDlgButtonChecked ( hDlg , chx2 ) = = BST_CHECKED ) { /* Collate */
FIXME ( " Collate lppd not yet implemented as output \n " ) ;
}
/* 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 )
2002-06-01 01:06:46 +02:00
lpdm - > dmCollate =
2002-04-11 19:32:49 +02:00
( 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 ;
}
static BOOL PRINTDLG_PaperSizeA (
2001-05-05 02:44:03 +02:00
PRINTDLGA * pdlga , const char * PaperSize , LPPOINT size
) {
DEVNAMES * dn ;
DEVMODEA * dm ;
LPSTR devname , portname ;
int i ;
2001-07-28 01:55:51 +02:00
INT NrOfEntries , ret ;
2001-05-05 02:44:03 +02:00
char * Names = NULL ;
POINT * points = NULL ;
BOOL retval = FALSE ;
2002-06-01 01:06:46 +02:00
2001-05-05 02:44:03 +02:00
dn = GlobalLock ( pdlga - > hDevNames ) ;
dm = GlobalLock ( pdlga - > hDevMode ) ;
devname = ( ( char * ) dn ) + dn - > wDeviceOffset ;
portname = ( ( char * ) dn ) + dn - > wOutputOffset ;
NrOfEntries = DeviceCapabilitiesA ( devname , portname , DC_PAPERNAMES , NULL , dm ) ;
if ( ! NrOfEntries ) {
FIXME ( " No papernames found for %s/%s \n " , devname , portname ) ;
goto out ;
}
2001-07-28 01:55:51 +02:00
if ( NrOfEntries = = - 1 ) {
ERR ( " Hmm ? DeviceCapabilities() DC_PAPERNAMES failed, ret -1 ! \n " ) ;
goto out ;
}
2002-06-01 01:06:46 +02:00
2001-05-05 02:44:03 +02:00
Names = ( char * ) HeapAlloc ( GetProcessHeap ( ) , 0 , NrOfEntries * 64 ) ;
if ( NrOfEntries ! = ( ret = DeviceCapabilitiesA ( devname , portname , DC_PAPERNAMES , Names , dm ) ) ) {
2001-07-28 01:55:51 +02:00
FIXME ( " Number of returned vals %d is not %d \n " , NrOfEntries , ret ) ;
2001-05-05 02:44:03 +02:00
goto out ;
}
for ( i = 0 ; i < NrOfEntries ; i + + )
if ( ! strcmp ( PaperSize , Names + ( 64 * i ) ) )
break ;
HeapFree ( GetProcessHeap ( ) , 0 , Names ) ;
if ( i = = NrOfEntries ) {
FIXME ( " Papersize %s not found in list? \n " , PaperSize ) ;
goto out ;
}
points = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( points [ 0 ] ) * NrOfEntries ) ;
if ( NrOfEntries ! = ( ret = DeviceCapabilitiesA ( devname , portname , DC_PAPERSIZE , ( LPBYTE ) points , dm ) ) ) {
2001-07-28 01:55:51 +02:00
FIXME ( " Number of returned sizes %d is not %d? \n " , NrOfEntries , ret ) ;
2001-05-05 02:44:03 +02:00
goto out ;
}
/* this is _10ths_ of a millimeter */
size - > x = points [ i ] . x ;
size - > y = points [ i ] . y ;
2002-04-11 19:32:49 +02:00
retval = TRUE ;
out :
GlobalUnlock ( pdlga - > hDevNames ) ;
GlobalUnlock ( pdlga - > hDevMode ) ;
if ( Names ) HeapFree ( GetProcessHeap ( ) , 0 , Names ) ;
if ( points ) HeapFree ( GetProcessHeap ( ) , 0 , points ) ;
return retval ;
}
static BOOL PRINTDLG_PaperSizeW (
PRINTDLGW * pdlga , const WCHAR * PaperSize , LPPOINT size
) {
DEVNAMES * dn ;
DEVMODEW * dm ;
LPWSTR devname , portname ;
int i ;
INT NrOfEntries , ret ;
WCHAR * Names = NULL ;
POINT * points = NULL ;
BOOL retval = FALSE ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
dn = GlobalLock ( pdlga - > hDevNames ) ;
dm = GlobalLock ( pdlga - > hDevMode ) ;
devname = ( ( WCHAR * ) dn ) + dn - > wDeviceOffset ;
portname = ( ( WCHAR * ) dn ) + dn - > wOutputOffset ;
NrOfEntries = DeviceCapabilitiesW ( devname , portname , DC_PAPERNAMES , NULL , dm ) ;
if ( ! NrOfEntries ) {
FIXME ( " No papernames found for %s/%s \n " , debugstr_w ( devname ) , debugstr_w ( portname ) ) ;
goto out ;
}
if ( NrOfEntries = = - 1 ) {
ERR ( " Hmm ? DeviceCapabilities() DC_PAPERNAMES failed, ret -1 ! \n " ) ;
goto out ;
}
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
Names = ( WCHAR * ) HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WCHAR ) * NrOfEntries * 64 ) ;
if ( NrOfEntries ! = ( ret = DeviceCapabilitiesW ( devname , portname , DC_PAPERNAMES , Names , dm ) ) ) {
FIXME ( " Number of returned vals %d is not %d \n " , NrOfEntries , ret ) ;
goto out ;
}
for ( i = 0 ; i < NrOfEntries ; i + + )
if ( ! lstrcmpW ( PaperSize , Names + ( 64 * i ) ) )
break ;
HeapFree ( GetProcessHeap ( ) , 0 , Names ) ;
if ( i = = NrOfEntries ) {
FIXME ( " Papersize %s not found in list? \n " , debugstr_w ( PaperSize ) ) ;
goto out ;
}
points = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( points [ 0 ] ) * NrOfEntries ) ;
if ( NrOfEntries ! = ( ret = DeviceCapabilitiesW ( devname , portname , DC_PAPERSIZE , ( LPWSTR ) points , dm ) ) ) {
FIXME ( " Number of returned sizes %d is not %d? \n " , NrOfEntries , ret ) ;
goto out ;
}
/* this is _10ths_ of a millimeter */
size - > x = points [ i ] . x ;
size - > y = points [ i ] . y ;
2001-05-05 02:44:03 +02:00
retval = TRUE ;
out :
GlobalUnlock ( pdlga - > hDevNames ) ;
GlobalUnlock ( pdlga - > hDevMode ) ;
if ( Names ) HeapFree ( GetProcessHeap ( ) , 0 , Names ) ;
if ( points ) HeapFree ( GetProcessHeap ( ) , 0 , points ) ;
return retval ;
}
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
*/
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_SetUpPaperComboBoxA ( HWND hDlg ,
2000-05-27 00:26:06 +02:00
int nIDComboBox ,
2002-06-01 01:06:46 +02:00
char * PrinterName ,
2000-05-27 00:26:06 +02:00
char * PortName ,
LPDEVMODEA dm )
1999-11-13 21:49:58 +01:00
{
int i ;
2001-09-11 01:14:22 +02:00
int NrOfEntries ;
1999-11-13 21:49:58 +01:00
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 ;
2002-06-01 01:06:46 +02:00
2001-09-11 01:14:22 +02:00
TRACE ( " Printer: %s, Port: %s, ComboID: %d \n " , PrinterName , PortName , nIDComboBox ) ;
2002-06-01 01:06:46 +02:00
1999-11-13 21:49:58 +01:00
/* 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
}
2002-06-01 01:06:46 +02:00
/* for some printer drivers, DeviceCapabilities calls a VXD to obtain the
1999-11-13 21:49:58 +01:00
* 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 " ) ;
2001-09-11 01:14:22 +02:00
else if ( NrOfEntries < 0 )
return FALSE ;
2000-05-27 00:26:06 +02:00
if ( DeviceCapabilitiesA ( PrinterName , PortName , fwCapability_Words , NULL , dm )
! = NrOfEntries ) {
ERR ( " Number of caps is different \n " ) ;
NrOfEntries = 0 ;
}
2002-04-11 19:32:49 +02:00
Names = HeapAlloc ( GetProcessHeap ( ) , 0 , NrOfEntries * sizeof ( char ) * NamesSize ) ;
2000-05-27 00:26:06 +02:00
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 ) ;
2002-06-01 01:06:46 +02:00
1999-11-13 21:49:58 +01:00
/* 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 ] ) ) ;
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , nIDComboBox , CB_SETITEMDATA , pos ,
2000-05-27 00:26:06 +02:00
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
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_SetUpPaperComboBoxW ( HWND hDlg ,
int nIDComboBox ,
2002-06-01 01:06:46 +02:00
WCHAR * PrinterName ,
2002-04-11 19:32:49 +02:00
WCHAR * PortName ,
LPDEVMODEW dm )
1999-02-28 21:05:11 +01:00
{
2002-04-11 19:32:49 +02:00
int i ;
int NrOfEntries ;
WCHAR * Names ;
WORD * Words ;
DWORD Sel ;
WORD oldWord = 0 ;
int NamesSize ;
int fwCapability_Names ;
int fwCapability_Words ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
TRACE ( " Printer: %s, Port: %s, ComboID: %d \n " , debugstr_w ( PrinterName ) , debugstr_w ( PortName ) , nIDComboBox ) ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
/* query the dialog box for the current selected value */
Sel = SendDlgItemMessageA ( hDlg , nIDComboBox , CB_GETCURSEL , 0 , 0 ) ;
if ( Sel ! = CB_ERR ) {
/* 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 ;
1999-05-02 13:34:26 +02:00
}
2000-05-27 00:26:06 +02:00
}
1999-05-02 13:34:26 +02:00
2002-04-11 19:32:49 +02:00
if ( nIDComboBox = = cmb2 ) {
NamesSize = 64 ;
fwCapability_Names = DC_PAPERNAMES ;
fwCapability_Words = DC_PAPERS ;
} else {
nIDComboBox = cmb3 ;
NamesSize = 24 ;
fwCapability_Names = DC_BINNAMES ;
fwCapability_Words = DC_BINS ;
}
2002-06-01 01:06:46 +02:00
/* for some printer drivers, DeviceCapabilities calls a VXD to obtain the
2002-04-11 19:32:49 +02:00
* 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 = DeviceCapabilitiesW ( PrinterName , PortName ,
fwCapability_Names , NULL , dm ) ;
if ( NrOfEntries = = 0 )
WARN ( " no Name Entries found! \n " ) ;
else if ( NrOfEntries < 0 )
return FALSE ;
if ( DeviceCapabilitiesW ( PrinterName , PortName , fwCapability_Words , NULL , dm )
! = NrOfEntries ) {
ERR ( " Number of caps is different \n " ) ;
NrOfEntries = 0 ;
}
Names = HeapAlloc ( GetProcessHeap ( ) , 0 , NrOfEntries * sizeof ( WCHAR ) * NamesSize ) ;
Words = HeapAlloc ( GetProcessHeap ( ) , 0 , NrOfEntries * sizeof ( WORD ) ) ;
NrOfEntries = DeviceCapabilitiesW ( PrinterName , PortName ,
fwCapability_Names , Names , dm ) ;
NrOfEntries = DeviceCapabilitiesW ( PrinterName , PortName ,
fwCapability_Words , ( LPWSTR ) Words , dm ) ;
/* reset any current content in the combobox */
SendDlgItemMessageA ( hDlg , nIDComboBox , CB_RESETCONTENT , 0 , 0 ) ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
/* store new content */
for ( i = 0 ; i < NrOfEntries ; i + + ) {
DWORD pos = SendDlgItemMessageW ( hDlg , nIDComboBox , CB_ADDSTRING , 0 ,
( LPARAM ) ( & Names [ i * NamesSize ] ) ) ;
2002-06-01 01:06:46 +02:00
SendDlgItemMessageW ( hDlg , nIDComboBox , CB_SETITEMDATA , pos ,
2002-04-11 19:32:49 +02:00
Words [ i ] ) ;
}
/* 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 ) ;
HeapFree ( GetProcessHeap ( ) , 0 , Words ) ;
HeapFree ( GetProcessHeap ( ) , 0 , Names ) ;
return TRUE ;
}
/***********************************************************************
* PRINTDLG_UpdatePrinterInfoTexts [ internal ]
*/
static void PRINTDLG_UpdatePrinterInfoTextsA ( HWND hDlg , LPPRINTER_INFO_2A pi )
{
char StatusMsg [ 256 ] ;
char ResourceString [ 256 ] ;
int i ;
/* Status Message */
StatusMsg [ 0 ] = ' \0 ' ;
/* add all status messages */
for ( i = 0 ; i < 25 ; i + + ) {
if ( pi - > Status & ( 1 < < i ) ) {
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_PRINTER_STATUS_PAUSED + i ,
2002-04-11 19:32:49 +02:00
ResourceString , 255 ) ;
strcat ( StatusMsg , ResourceString ) ;
}
}
/* append "ready" */
2002-06-01 01:06:46 +02:00
/* FIXME: status==ready must only be appended if really so.
2002-04-11 19:32:49 +02:00
but how to detect ? */
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_PRINTER_STATUS_READY ,
2002-04-11 19:32:49 +02:00
ResourceString , 255 ) ;
strcat ( StatusMsg , ResourceString ) ;
2003-05-14 02:02:17 +02:00
SetDlgItemTextA ( hDlg , stc12 , StatusMsg ) ;
2002-04-11 19:32:49 +02:00
/* set all other printer info texts */
2003-05-14 02:02:17 +02:00
SetDlgItemTextA ( hDlg , stc11 , pi - > pDriverName ) ;
2002-04-11 19:32:49 +02:00
if ( pi - > pLocation ! = NULL & & pi - > pLocation [ 0 ] ! = ' \0 ' )
2003-05-14 02:02:17 +02:00
SetDlgItemTextA ( hDlg , stc14 , pi - > pLocation ) ;
2002-04-11 19:32:49 +02:00
else
2003-05-14 02:02:17 +02:00
SetDlgItemTextA ( hDlg , stc14 , pi - > pPortName ) ;
SetDlgItemTextA ( hDlg , stc13 , pi - > pComment ? pi - > pComment : " " ) ;
2002-04-11 19:32:49 +02:00
return ;
}
static void PRINTDLG_UpdatePrinterInfoTextsW ( HWND hDlg , LPPRINTER_INFO_2W pi )
{
WCHAR StatusMsg [ 256 ] ;
WCHAR ResourceString [ 256 ] ;
2003-05-14 02:02:17 +02:00
static const WCHAR emptyW [ ] = { 0 } ;
2002-04-11 19:32:49 +02:00
int i ;
/* Status Message */
StatusMsg [ 0 ] = ' \0 ' ;
/* add all status messages */
for ( i = 0 ; i < 25 ; i + + ) {
if ( pi - > Status & ( 1 < < i ) ) {
2002-06-01 01:06:46 +02:00
LoadStringW ( COMDLG32_hInstance , PD32_PRINTER_STATUS_PAUSED + i ,
2002-04-11 19:32:49 +02:00
ResourceString , 255 ) ;
lstrcatW ( StatusMsg , ResourceString ) ;
}
}
/* append "ready" */
2002-06-01 01:06:46 +02:00
/* FIXME: status==ready must only be appended if really so.
2002-04-11 19:32:49 +02:00
but how to detect ? */
2002-06-01 01:06:46 +02:00
LoadStringW ( COMDLG32_hInstance , PD32_PRINTER_STATUS_READY ,
2002-04-11 19:32:49 +02:00
ResourceString , 255 ) ;
lstrcatW ( StatusMsg , ResourceString ) ;
2003-05-14 02:02:17 +02:00
SetDlgItemTextW ( hDlg , stc12 , StatusMsg ) ;
2002-04-11 19:32:49 +02:00
/* set all other printer info texts */
2003-05-14 02:02:17 +02:00
SetDlgItemTextW ( hDlg , stc11 , pi - > pDriverName ) ;
2002-04-11 19:32:49 +02:00
if ( pi - > pLocation ! = NULL & & pi - > pLocation [ 0 ] ! = ' \0 ' )
2003-05-14 02:02:17 +02:00
SetDlgItemTextW ( hDlg , stc14 , pi - > pLocation ) ;
2002-04-11 19:32:49 +02:00
else
2003-05-14 02:02:17 +02:00
SetDlgItemTextW ( hDlg , stc14 , pi - > pPortName ) ;
SetDlgItemTextW ( hDlg , stc13 , pi - > pComment ? pi - > pComment : emptyW ) ;
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
*/
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_ChangePrinterA ( HWND hDlg , char * name ,
2000-05-27 00:26:06 +02:00
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 ) ;
2001-05-02 03:10:43 +02:00
if ( PrintStructures - > lpDriverInfo )
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDriverInfo ) ;
2000-05-27 00:26:06 +02:00
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 ) ;
2001-05-02 03:10:43 +02:00
GetPrinterDriverA ( hprn , NULL , 3 , NULL , 0 , & needed ) ;
PrintStructures - > lpDriverInfo = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
if ( ! GetPrinterDriverA ( hprn , NULL , 3 , ( LPBYTE ) PrintStructures - > lpDriverInfo ,
needed , & needed ) ) {
ERR ( " GetPrinterDriverA failed for %s, fix your config! \n " , PrintStructures - > lpPrinterInfo - > pPrinterName ) ;
return FALSE ;
}
2000-05-27 00:26:06 +02:00
ClosePrinter ( hprn ) ;
1999-11-13 21:49:58 +01:00
2002-04-11 19:32:49 +02:00
PRINTDLG_UpdatePrinterInfoTextsA ( 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 ] ;
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_PRINT_ALL_X_PAGES ,
2000-05-27 00:26:06 +02:00
resourcestr , 49 ) ;
sprintf ( result , resourcestr , lppd - > nMaxPage - lppd - > nMinPage + 1 ) ;
SendDlgItemMessageA ( hDlg , rad1 , WM_SETTEXT , 0 , ( LPARAM ) result ) ;
}
2002-06-01 01:06:46 +02:00
/* Collate pages
2000-05-27 00:26:06 +02:00
*
* FIXME : The ico3 is not displayed for some reason . I don ' t know why .
*/
if ( lppd - > Flags & PD_COLLATE ) {
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
2000-05-27 00:26:06 +02:00
( LPARAM ) PrintStructures - > hCollateIcon ) ;
CheckDlgButton ( hDlg , chx2 , 1 ) ;
} else {
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
2000-05-27 00:26:06 +02:00
( 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 ) ) {
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , chx2 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , ico3 ) , FALSE ) ;
2000-05-27 00:26:06 +02:00
}
}
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 ) ) {
2002-06-01 01:06:46 +02:00
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 )
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , chx1 ) , FALSE ) ;
2000-05-27 00:26:06 +02:00
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 ) ;
2002-04-11 19:32:49 +02:00
PRINTDLG_SetUpPaperComboBoxA ( hDlg , cmb2 ,
PrintStructures - > lpPrinterInfo - > pPrinterName ,
PrintStructures - > lpPrinterInfo - > pPortName ,
lpdm ) ;
PRINTDLG_SetUpPaperComboBoxA ( hDlg , cmb3 ,
PrintStructures - > lpPrinterInfo - > pPrinterName ,
PrintStructures - > lpPrinterInfo - > pPortName ,
lpdm ) ;
CheckRadioButton ( hDlg , rad1 , rad2 , bPortrait ? rad1 : rad2 ) ;
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
( LPARAM ) ( bPortrait ? PrintStructures - > hPortraitIcon :
PrintStructures - > hLandscapeIcon ) ) ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
}
/* help button */
if ( ( lppd - > Flags & PD_SHOWHELP ) = = 0 ) {
/* hide if PD_SHOWHELP not specified */
2002-06-01 01:06:46 +02:00
ShowWindow ( GetDlgItem ( hDlg , pshHelp ) , SW_HIDE ) ;
2002-04-11 19:32:49 +02:00
}
return TRUE ;
}
static BOOL PRINTDLG_ChangePrinterW ( HWND hDlg , WCHAR * name ,
PRINT_PTRW * PrintStructures )
{
LPPRINTDLGW lppd = PrintStructures - > dlg . lpPrintDlg ;
LPDEVMODEW lpdm = NULL ;
LONG dmSize ;
DWORD needed ;
HANDLE hprn ;
if ( PrintStructures - > lpPrinterInfo )
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpPrinterInfo ) ;
if ( PrintStructures - > lpDriverInfo )
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDriverInfo ) ;
if ( ! OpenPrinterW ( name , & hprn , NULL ) ) {
ERR ( " Can't open printer %s \n " , debugstr_w ( name ) ) ;
return FALSE ;
}
GetPrinterW ( hprn , 2 , NULL , 0 , & needed ) ;
PrintStructures - > lpPrinterInfo = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WCHAR ) * needed ) ;
GetPrinterW ( hprn , 2 , ( LPBYTE ) PrintStructures - > lpPrinterInfo , needed ,
& needed ) ;
GetPrinterDriverW ( hprn , NULL , 3 , NULL , 0 , & needed ) ;
PrintStructures - > lpDriverInfo = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WCHAR ) * needed ) ;
if ( ! GetPrinterDriverW ( hprn , NULL , 3 , ( LPBYTE ) PrintStructures - > lpDriverInfo ,
needed , & needed ) ) {
ERR ( " GetPrinterDriverA failed for %s, fix your config! \n " , debugstr_w ( PrintStructures - > lpPrinterInfo - > pPrinterName ) ) ;
return FALSE ;
}
ClosePrinter ( hprn ) ;
PRINTDLG_UpdatePrinterInfoTextsW ( hDlg , PrintStructures - > lpPrinterInfo ) ;
if ( PrintStructures - > lpDevMode ) {
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDevMode ) ;
PrintStructures - > lpDevMode = NULL ;
}
dmSize = DocumentPropertiesW ( 0 , 0 , name , NULL , NULL , 0 ) ;
if ( dmSize = = - 1 ) {
ERR ( " DocumentProperties fails on %s \n " , debugstr_w ( name ) ) ;
return FALSE ;
}
PrintStructures - > lpDevMode = HeapAlloc ( GetProcessHeap ( ) , 0 , dmSize ) ;
dmSize = DocumentPropertiesW ( 0 , 0 , name , PrintStructures - > lpDevMode , NULL ,
DM_OUT_BUFFER ) ;
if ( lppd - > hDevMode & & ( lpdm = GlobalLock ( lppd - > hDevMode ) ) & &
! lstrcmpW ( lpdm - > dmDeviceName ,
PrintStructures - > lpDevMode - > dmDeviceName ) ) {
/* Supplied devicemode matches current printer so try to use it */
DocumentPropertiesW ( 0 , 0 , name , PrintStructures - > lpDevMode , lpdm ,
DM_OUT_BUFFER | DM_IN_BUFFER ) ;
}
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"... */
{
/* ansi is ok */
char resourcestr [ 64 ] ;
char result [ 64 ] ;
2002-06-01 01:06:46 +02:00
LoadStringA ( COMDLG32_hInstance , PD32_PRINT_ALL_X_PAGES ,
2002-04-11 19:32:49 +02:00
resourcestr , 49 ) ;
sprintf ( result , resourcestr , lppd - > nMaxPage - lppd - > nMinPage + 1 ) ;
SendDlgItemMessageA ( hDlg , rad1 , WM_SETTEXT , 0 , ( LPARAM ) result ) ;
}
2002-06-01 01:06:46 +02:00
/* Collate pages
2002-04-11 19:32:49 +02:00
*
* FIXME : The ico3 is not displayed for some reason . I don ' t know why .
*/
if ( lppd - > Flags & PD_COLLATE ) {
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
2002-04-11 19:32:49 +02:00
( LPARAM ) PrintStructures - > hCollateIcon ) ;
CheckDlgButton ( hDlg , chx2 , 1 ) ;
} else {
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
2002-04-11 19:32:49 +02:00
( LPARAM ) PrintStructures - > hNoCollateIcon ) ;
CheckDlgButton ( hDlg , chx2 , 0 ) ;
}
if ( lppd - > Flags & PD_USEDEVMODECOPIESANDCOLLATE ) {
/* if printer doesn't support it: no Collate */
if ( ! ( lpdm - > dmFields & DM_COLLATE ) ) {
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , chx2 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , ico3 ) , FALSE ) ;
2002-04-11 19:32:49 +02:00
}
}
/* nCopies */
{
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 ) ;
}
if ( lppd - > Flags & PD_USEDEVMODECOPIESANDCOLLATE ) {
/* if printer doesn't support it: no nCopies */
if ( ! ( lpdm - > dmFields & DM_COPIES ) ) {
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , edt3 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , stc5 ) , FALSE ) ;
2002-04-11 19:32:49 +02:00
}
}
/* print to file */
CheckDlgButton ( hDlg , chx1 , ( lppd - > Flags & PD_PRINTTOFILE ) ? 1 : 0 ) ;
if ( lppd - > Flags & PD_DISABLEPRINTTOFILE )
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , chx1 ) , FALSE ) ;
2002-04-11 19:32:49 +02:00
if ( lppd - > Flags & PD_HIDEPRINTTOFILE )
ShowWindow ( GetDlgItem ( hDlg , chx1 ) , SW_HIDE ) ;
} else { /* PD_PRINTSETUP */
BOOL bPortrait = ( lpdm - > u1 . s1 . dmOrientation = = DMORIENT_PORTRAIT ) ;
PRINTDLG_SetUpPaperComboBoxW ( hDlg , cmb2 ,
2000-05-27 00:26:06 +02:00
PrintStructures - > lpPrinterInfo - > pPrinterName ,
PrintStructures - > lpPrinterInfo - > pPortName ,
lpdm ) ;
2002-04-11 19:32:49 +02:00
PRINTDLG_SetUpPaperComboBoxW ( hDlg , cmb3 ,
2000-05-27 00:26:06 +02:00
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 ) ) ;
2002-06-01 01:06:46 +02:00
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 */
2002-06-01 01:06:46 +02:00
ShowWindow ( GetDlgItem ( hDlg , pshHelp ) , SW_HIDE ) ;
2000-05-27 00:26:06 +02:00
}
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-10-08 22:40:09 +02:00
/* We load these with LoadImage because they are not a standard
2001-02-12 04:38:14 +01:00
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 ) ;
2002-06-01 01:06:46 +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 ) {
2002-06-01 01:06:46 +02:00
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 ;
2002-06-01 01:06:46 +02:00
if ( lppd - > nMinPage = = lppd - > nMaxPage )
lppd - > Flags | = PD_NOPAGENUMS ;
2000-05-27 00:26:06 +02:00
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 ) ) {
2002-06-01 01:06:46 +02:00
/* Fill Combobox
2001-01-02 23:26:09 +01:00
*/
pdn = GlobalLock ( lppd - > hDevNames ) ;
pdm = GlobalLock ( lppd - > hDevMode ) ;
if ( pdn )
name = ( char * ) pdn + pdn - > wDeviceOffset ;
else if ( pdm )
name = pdm - > dmDeviceName ;
2002-04-11 19:32:49 +02:00
PRINTDLG_SetUpPrinterListComboA ( hDlg , comboID , name ) ;
2001-01-02 23:26:09 +01:00
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 ) )
2002-04-11 19:32:49 +02:00
PRINTDLG_ChangePrinterA ( hDlg , name , PrintStructures ) ;
2001-01-02 23:26:09 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , name ) ;
} else {
/* else use default printer */
char name [ 200 ] ;
2002-04-11 19:32:49 +02:00
BOOL ret = PRINTDLG_GetDefaultPrinterNameA ( name , sizeof ( name ) ) ;
if ( ret )
PRINTDLG_ChangePrinterA ( hDlg , name , PrintStructures ) ;
else
FIXME ( " No default printer found, expect problems! \n " ) ;
}
return TRUE ;
}
static LRESULT PRINTDLG_WMInitDialogW ( HWND hDlg , WPARAM wParam ,
PRINT_PTRW * PrintStructures )
{
LPPRINTDLGW lppd = PrintStructures - > dlg . lpPrintDlg ;
DEVNAMES * pdn ;
DEVMODEW * pdm ;
WCHAR * name = NULL ;
UINT comboID = ( lppd - > Flags & PD_PRINTSETUP ) ? cmb1 : cmb4 ;
/* load Collate ICONs */
/* We load these with LoadImage because they are not a standard
size and we don ' t want them rescaled */
PrintStructures - > hCollateIcon =
LoadImageA ( COMDLG32_hInstance , " PD32_COLLATE " , IMAGE_ICON , 0 , 0 , 0 ) ;
2002-06-01 01:06:46 +02:00
PrintStructures - > hNoCollateIcon =
2002-04-11 19:32:49 +02:00
LoadImageA ( COMDLG32_hInstance , " PD32_NOCOLLATE " , IMAGE_ICON , 0 , 0 , 0 ) ;
/* These can be done with LoadIcon */
PrintStructures - > hPortraitIcon =
LoadIconA ( COMDLG32_hInstance , " PD32_PORTRAIT " ) ;
PrintStructures - > hLandscapeIcon =
LoadIconA ( COMDLG32_hInstance , " PD32_LANDSCAPE " ) ;
if ( PrintStructures - > hCollateIcon = = 0 | |
PrintStructures - > hNoCollateIcon = = 0 | |
PrintStructures - > hPortraitIcon = = 0 | |
PrintStructures - > hLandscapeIcon = = 0 ) {
ERR ( " no icon in resourcefile \n " ) ;
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
EndDialog ( hDlg , FALSE ) ;
}
/*
* 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 ) {
2002-06-01 01:06:46 +02:00
if ( ( PrintStructures - > HelpMessageID =
2002-04-11 19:32:49 +02:00
RegisterWindowMessageA ( HELPMSGSTRINGA ) ) = = 0 ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_REGISTERMSGFAIL ) ;
return FALSE ;
}
} else
PrintStructures - > HelpMessageID = 0 ;
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 ) ;
}
/* 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 ;
2002-06-01 01:06:46 +02:00
if ( lppd - > nMinPage = = lppd - > nMaxPage )
lppd - > Flags | = PD_NOPAGENUMS ;
2002-04-11 19:32:49 +02:00
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 we have the combo box, fill it */
if ( GetDlgItem ( hDlg , comboID ) ) {
2002-06-01 01:06:46 +02:00
/* Fill Combobox
2002-04-11 19:32:49 +02:00
*/
pdn = GlobalLock ( lppd - > hDevNames ) ;
pdm = GlobalLock ( lppd - > hDevMode ) ;
if ( pdn )
name = ( WCHAR * ) pdn + pdn - > wDeviceOffset ;
else if ( pdm )
name = pdm - > dmDeviceName ;
PRINTDLG_SetUpPrinterListComboW ( hDlg , comboID , name ) ;
if ( pdm ) GlobalUnlock ( lppd - > hDevMode ) ;
if ( pdn ) GlobalUnlock ( lppd - > hDevNames ) ;
/* Now find selected printer and update rest of dlg */
/* ansi is ok here */
name = HeapAlloc ( GetProcessHeap ( ) , 0 , 256 * sizeof ( WCHAR ) ) ;
if ( GetDlgItemTextW ( hDlg , comboID , name , 255 ) )
PRINTDLG_ChangePrinterW ( hDlg , name , PrintStructures ) ;
HeapFree ( GetProcessHeap ( ) , 0 , name ) ;
} else {
/* else use default printer */
WCHAR name [ 200 ] ;
BOOL ret = PRINTDLG_GetDefaultPrinterNameW ( name , sizeof ( name ) ) ;
2001-01-02 23:26:09 +01:00
if ( ret )
2002-04-11 19:32:49 +02:00
PRINTDLG_ChangePrinterW ( hDlg , name , PrintStructures ) ;
2001-01-02 23:26:09 +01:00
else
FIXME ( " No default printer found, expect problems! \n " ) ;
}
return TRUE ;
}
2002-04-11 19:32:49 +02:00
2001-01-02 23:26:09 +01:00
/***********************************************************************
* 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 " ) ;
2002-06-01 01:06:46 +02:00
PrintStructures - > hNoCollateIcon =
2001-01-02 23:26:09 +01:00
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 ) {
2002-06-01 01:06:46 +02:00
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 ;
2001-07-14 02:47:20 +02:00
if ( ! ( lppd - > Flags & PD_PRINTSETUP ) ) {
/* We have a print quality combo box. What shall we do? */
if ( GetDlgItem ( hDlg , cmb1 ) ) {
char buf [ 20 ] ;
FIXME ( " Print quality only displaying currently. \n " ) ;
pdm = GlobalLock16 ( lppd - > hDevMode ) ;
if ( pdm ) {
switch ( pdm - > dmPrintQuality ) {
case DMRES_HIGH : strcpy ( buf , " High " ) ; break ;
case DMRES_MEDIUM : strcpy ( buf , " Medium " ) ; break ;
case DMRES_LOW : strcpy ( buf , " Low " ) ; break ;
case DMRES_DRAFT : strcpy ( buf , " Draft " ) ; break ;
case 0 : strcpy ( buf , " Default " ) ; break ;
default : sprintf ( buf , " %ddpi " , pdm - > dmPrintQuality ) ; break ;
}
GlobalUnlock16 ( lppd - > hDevMode ) ;
2002-06-01 01:06:46 +02:00
} else
2001-07-14 02:47:20 +02:00
strcpy ( buf , " Default " ) ;
SendDlgItemMessageA ( hDlg , cmb1 , CB_ADDSTRING , 0 , ( LPARAM ) buf ) ;
SendDlgItemMessageA ( hDlg , cmb1 , CB_SETCURSEL , 0 , 0 ) ;
EnableWindow ( GetDlgItem ( hDlg , cmb1 ) , FALSE ) ;
}
}
2001-01-02 23:26:09 +01: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 .
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 ;
2002-06-01 01:06:46 +02:00
if ( lppd - > nMinPage = = lppd - > nMaxPage )
lppd - > Flags | = PD_NOPAGENUMS ;
2001-01-02 23:26:09 +01:00
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 ) ) {
2002-06-01 01:06:46 +02:00
/* Fill Combobox
2001-01-02 23:26:09 +01:00
*/
pdn = GlobalLock16 ( lppd - > hDevNames ) ;
pdm = GlobalLock16 ( lppd - > hDevMode ) ;
if ( pdn )
name = ( char * ) pdn + pdn - > wDeviceOffset ;
else if ( pdm )
name = pdm - > dmDeviceName ;
2002-04-11 19:32:49 +02:00
PRINTDLG_SetUpPrinterListComboA ( hDlg , comboID , name ) ;
2001-01-02 23:26:09 +01:00
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 ) )
2002-04-11 19:32:49 +02:00
PRINTDLG_ChangePrinterA ( hDlg , name , PrintStructures ) ;
2001-01-02 23:26:09 +01:00
} else {
/* else just use default printer */
char name [ 200 ] ;
2002-04-11 19:32:49 +02:00
BOOL ret = PRINTDLG_GetDefaultPrinterNameA ( name , sizeof ( name ) ) ;
2001-01-02 23:26:09 +01:00
if ( ret )
2002-04-11 19:32:49 +02:00
PRINTDLG_ChangePrinterA ( hDlg , name , PrintStructures ) ;
2001-01-02 23:26:09 +01:00
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 ]
*/
2002-06-01 01:06:46 +02:00
static LRESULT PRINTDLG_WMCommandA ( 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 " ) ;
2002-04-11 19:32:49 +02:00
if ( PRINTDLG_UpdatePrintDlgA ( hDlg , PrintStructures ) ! = TRUE ) {
2001-01-02 23:26:09 +01:00
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 " ) ;
2002-06-01 01:06:46 +02:00
SendMessageA ( lppd - > hwndOwner , PrintStructures - > HelpMessageID ,
1999-05-02 13:34:26 +02:00
( 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 )
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
1999-07-30 20:10:21 +02:00
( LPARAM ) PrintStructures - > hCollateIcon ) ;
else
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
1999-07-30 20:10:21 +02:00
( LPARAM ) PrintStructures - > hNoCollateIcon ) ;
2002-06-01 01:06:46 +02:00
break ;
1999-07-30 20:10:21 +02:00
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 ;
2001-07-14 02:47:20 +02:00
case psh1 : /* Print Setup */
{
PRINTDLG16 pdlg ;
2002-06-01 01:06:46 +02:00
2001-07-14 02:47:20 +02:00
if ( ! PrintStructures - > dlg . lpPrintDlg16 ) {
FIXME ( " The 32bit print dialog does not have this button!? \n " ) ;
break ;
}
memcpy ( & pdlg , PrintStructures - > dlg . lpPrintDlg16 , sizeof ( pdlg ) ) ;
pdlg . Flags | = PD_PRINTSETUP ;
2002-09-06 22:40:42 +02:00
pdlg . hwndOwner = HWND_16 ( hDlg ) ;
2001-07-14 02:47:20 +02:00
if ( ! PrintDlg16 ( & pdlg ) )
break ;
}
break ;
2000-05-27 00:26:06 +02:00
case psh2 : /* Properties button */
{
HANDLE hPrinter ;
2002-04-11 19:32:49 +02:00
char PrinterName [ 256 ] ;
GetDlgItemTextA ( hDlg , PrinterComboID , PrinterName , 255 ) ;
if ( ! OpenPrinterA ( PrinterName , & hPrinter , NULL ) ) {
FIXME ( " Call to OpenPrinter did not succeed! \n " ) ;
break ;
}
2002-06-01 01:06:46 +02:00
DocumentPropertiesA ( hDlg , hPrinter , PrinterName ,
2002-04-11 19:32:49 +02:00
PrintStructures - > lpDevMode ,
PrintStructures - > lpDevMode ,
DM_IN_BUFFER | DM_OUT_BUFFER | DM_IN_PROMPT ) ;
ClosePrinter ( hPrinter ) ;
break ;
}
case rad1 : /* Paperorientation */
if ( lppd - > Flags & PD_PRINTSETUP )
{
lpdm - > u1 . s1 . dmOrientation = DMORIENT_PORTRAIT ;
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
( LPARAM ) ( PrintStructures - > hPortraitIcon ) ) ;
}
break ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
case rad2 : /* Paperorientation */
if ( lppd - > Flags & PD_PRINTSETUP )
{
lpdm - > u1 . s1 . dmOrientation = DMORIENT_LANDSCAPE ;
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
( LPARAM ) ( PrintStructures - > hLandscapeIcon ) ) ;
}
break ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
case cmb1 : /* Printer Combobox in PRINT SETUP, quality combobox in PRINT */
if ( PrinterComboID ! = wParam ) {
FIXME ( " No handling for print quality combo box yet. \n " ) ;
break ;
}
/* FALLTHROUGH */
case cmb4 : /* Printer combobox */
if ( HIWORD ( wParam ) = = CBN_SELCHANGE ) {
char PrinterName [ 256 ] ;
GetDlgItemTextA ( hDlg , LOWORD ( wParam ) , PrinterName , 255 ) ;
PRINTDLG_ChangePrinterA ( 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 ) ;
}
2002-06-01 01:06:46 +02:00
break ;
2002-04-11 19:32:49 +02: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 , stc10 , STM_SETIMAGE ,
( WPARAM ) IMAGE_ICON ,
( LPARAM ) PrintStructures - > hPortraitIcon ) ;
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 , stc10 , STM_SETIMAGE ,
( WPARAM ) IMAGE_ICON ,
( LPARAM ) PrintStructures - > hLandscapeIcon ) ;
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE ,
( WPARAM ) IMAGE_ICON ,
( LPARAM ) PrintStructures - > hLandscapeIcon ) ;
}
}
break ;
}
}
return FALSE ;
2002-06-01 01:06:46 +02:00
}
2002-04-11 19:32:49 +02:00
2002-06-01 01:06:46 +02:00
static LRESULT PRINTDLG_WMCommandW ( HWND hDlg , WPARAM wParam ,
2002-04-11 19:32:49 +02:00
LPARAM lParam , PRINT_PTRW * PrintStructures )
{
LPPRINTDLGW lppd = PrintStructures - > dlg . lpPrintDlg ;
UINT PrinterComboID = ( lppd - > Flags & PD_PRINTSETUP ) ? cmb1 : cmb4 ;
LPDEVMODEW lpdm = PrintStructures - > lpDevMode ;
switch ( LOWORD ( wParam ) ) {
case IDOK :
TRACE ( " OK button was hit \n " ) ;
if ( PRINTDLG_UpdatePrintDlgW ( hDlg , PrintStructures ) ! = TRUE ) {
FIXME ( " Update printdlg was not successful! \n " ) ;
return ( FALSE ) ;
}
EndDialog ( hDlg , TRUE ) ;
return ( TRUE ) ;
case IDCANCEL :
TRACE ( " CANCEL button was hit \n " ) ;
EndDialog ( hDlg , FALSE ) ;
return ( FALSE ) ;
case pshHelp :
TRACE ( " HELP button was hit \n " ) ;
2002-06-01 01:06:46 +02:00
SendMessageW ( lppd - > hwndOwner , PrintStructures - > HelpMessageID ,
2002-04-11 19:32:49 +02:00
( WPARAM ) hDlg , ( LPARAM ) lppd ) ;
break ;
case chx2 : /* collate pages checkbox */
if ( IsDlgButtonChecked ( hDlg , chx2 ) = = BST_CHECKED )
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
2002-04-11 19:32:49 +02:00
( LPARAM ) PrintStructures - > hCollateIcon ) ;
else
2002-06-01 01:06:46 +02:00
SendDlgItemMessageA ( hDlg , ico3 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
2002-04-11 19:32:49 +02:00
( LPARAM ) PrintStructures - > hNoCollateIcon ) ;
2002-06-01 01:06:46 +02:00
break ;
2002-04-11 19:32:49 +02:00
case edt1 : /* from page nr editbox */
case edt2 : /* to page nr editbox */
if ( HIWORD ( wParam ) = = EN_CHANGE ) {
WORD nToPage ;
WORD nFromPage ;
nFromPage = GetDlgItemInt ( hDlg , edt1 , NULL , FALSE ) ;
nToPage = GetDlgItemInt ( hDlg , edt2 , NULL , FALSE ) ;
if ( nFromPage ! = lppd - > nFromPage | | nToPage ! = lppd - > nToPage )
CheckRadioButton ( hDlg , rad1 , rad3 , rad3 ) ;
}
break ;
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 ;
case psh1 : /* Print Setup */
{
ERR ( " psh1 is called from 16bit code only, we should not get here. \n " ) ;
}
break ;
case psh2 : /* Properties button */
{
HANDLE hPrinter ;
WCHAR PrinterName [ 256 ] ;
2000-05-27 00:26:06 +02:00
2002-04-11 19:32:49 +02:00
GetDlgItemTextW ( hDlg , PrinterComboID , PrinterName , 255 ) ;
if ( ! OpenPrinterW ( 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 ;
}
2002-06-01 01:06:46 +02:00
DocumentPropertiesW ( hDlg , hPrinter , PrinterName ,
2000-05-27 00:26:06 +02:00
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 )
2001-05-07 22:14:57 +02:00
{
2001-02-12 20:42:08 +01:00
lpdm - > u1 . s1 . dmOrientation = DMORIENT_PORTRAIT ;
2001-05-07 22:14:57 +02:00
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
( LPARAM ) ( PrintStructures - > hPortraitIcon ) ) ;
}
2001-02-12 20:42:08 +01:00
break ;
2002-06-01 01:06:46 +02:00
2001-02-12 20:42:08 +01:00
case rad2 : /* Paperorientation */
if ( lppd - > Flags & PD_PRINTSETUP )
2001-05-07 22:14:57 +02:00
{
2001-02-12 20:42:08 +01:00
lpdm - > u1 . s1 . dmOrientation = DMORIENT_LANDSCAPE ;
2001-05-07 22:14:57 +02:00
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE , ( WPARAM ) IMAGE_ICON ,
( LPARAM ) ( PrintStructures - > hLandscapeIcon ) ) ;
}
2001-02-12 20:42:08 +01:00
break ;
2002-06-01 01:06:46 +02:00
2001-07-14 02:47:20 +02:00
case cmb1 : /* Printer Combobox in PRINT SETUP, quality combobox in PRINT */
if ( PrinterComboID ! = wParam ) {
FIXME ( " No handling for print quality combo box yet. \n " ) ;
break ;
}
/* FALLTHROUGH */
2000-05-27 00:26:06 +02:00
case cmb4 : /* Printer combobox */
if ( HIWORD ( wParam ) = = CBN_SELCHANGE ) {
2002-04-11 19:32:49 +02:00
WCHAR PrinterName [ 256 ] ;
GetDlgItemTextW ( hDlg , LOWORD ( wParam ) , PrinterName , 255 ) ;
PRINTDLG_ChangePrinterW ( hDlg , PrinterName , PrintStructures ) ;
2000-05-27 00:26:06 +02:00
}
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 )
2002-04-11 19:32:49 +02:00
lpdm - > dmDefaultSource = SendDlgItemMessageW ( hDlg , cmb3 ,
2000-05-27 00:26:06 +02:00
CB_GETITEMDATA , Sel ,
0 ) ;
}
2002-06-01 01:06:46 +02:00
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 ;
2001-07-14 02:47:20 +02:00
SendDlgItemMessageA ( hDlg , stc10 , STM_SETIMAGE ,
( WPARAM ) IMAGE_ICON ,
( LPARAM ) PrintStructures - > hPortraitIcon ) ;
2001-02-12 19:09:34 +01:00
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 ;
2001-07-14 02:47:20 +02:00
SendDlgItemMessageA ( hDlg , stc10 , STM_SETIMAGE ,
( WPARAM ) IMAGE_ICON ,
( LPARAM ) PrintStructures - > hLandscapeIcon ) ;
2001-02-12 19:09:34 +01:00
SendDlgItemMessageA ( hDlg , ico1 , STM_SETIMAGE ,
( WPARAM ) IMAGE_ICON ,
( LPARAM ) PrintStructures - > hLandscapeIcon ) ;
}
}
break ;
}
}
1999-02-28 21:05:11 +01:00
return FALSE ;
2002-06-01 01:06:46 +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
* PrintDlgProcA [ internal ]
1999-11-13 21:49:58 +01:00
*/
2002-10-31 02:04:39 +01:00
INT_PTR CALLBACK PrintDlgProcA ( HWND hDlg , UINT uMsg , WPARAM wParam ,
2000-05-27 00:26:06 +02:00
LPARAM lParam )
1999-11-13 21:49:58 +01:00
{
2000-05-27 00:26:06 +02:00
PRINT_PTRA * PrintStructures ;
2002-10-31 02:04:39 +01:00
INT_PTR res = FALSE ;
1999-11-13 21:49:58 +01:00
2000-05-27 00:26:06 +02:00
if ( uMsg ! = WM_INITDIALOG ) {
2002-06-13 23:41:08 +02:00
PrintStructures = ( PRINT_PTRA * ) GetPropA ( hDlg , " __WINE_PRINTDLGDATA " ) ;
2000-05-27 00:26:06 +02:00
if ( ! PrintStructures )
return FALSE ;
} else {
PrintStructures = ( PRINT_PTRA * ) lParam ;
2002-11-22 00:55:10 +01:00
SetPropA ( hDlg , " __WINE_PRINTDLGDATA " , PrintStructures ) ;
2000-05-27 00:26:06 +02:00
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
2002-06-01 01:06:46 +02:00
) ;
2000-05-27 00:26:06 +02:00
return res ;
1999-11-13 21:49:58 +01:00
}
2002-06-01 01:06:46 +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 :
2002-04-11 19:32:49 +02:00
return PRINTDLG_WMCommandA ( hDlg , wParam , lParam , PrintStructures ) ;
case WM_DESTROY :
DestroyIcon ( PrintStructures - > hCollateIcon ) ;
DestroyIcon ( PrintStructures - > hNoCollateIcon ) ;
DestroyIcon ( PrintStructures - > hPortraitIcon ) ;
DestroyIcon ( PrintStructures - > hLandscapeIcon ) ;
if ( PrintStructures - > hwndUpDown )
DestroyWindow ( PrintStructures - > hwndUpDown ) ;
return FALSE ;
2002-06-01 01:06:46 +02:00
}
2002-04-11 19:32:49 +02:00
return res ;
}
2002-10-31 02:04:39 +01:00
INT_PTR CALLBACK PrintDlgProcW ( HWND hDlg , UINT uMsg , WPARAM wParam ,
2002-04-11 19:32:49 +02:00
LPARAM lParam )
{
PRINT_PTRW * PrintStructures ;
2002-10-31 02:04:39 +01:00
INT_PTR res = FALSE ;
2002-04-11 19:32:49 +02:00
if ( uMsg ! = WM_INITDIALOG ) {
2003-03-17 22:22:57 +01:00
PrintStructures = ( PRINT_PTRW * ) GetWindowLongW ( hDlg , DWL_USER ) ;
2002-04-11 19:32:49 +02:00
if ( ! PrintStructures )
return FALSE ;
} else {
PrintStructures = ( PRINT_PTRW * ) lParam ;
2002-06-01 01:06:46 +02:00
SetWindowLongA ( hDlg , DWL_USER , lParam ) ;
2002-04-11 19:32:49 +02:00
res = PRINTDLG_WMInitDialogW ( hDlg , wParam , PrintStructures ) ;
if ( PrintStructures - > dlg . lpPrintDlg - > Flags & PD_ENABLEPRINTHOOK )
res = PrintStructures - > dlg . lpPrintDlg - > lpfnPrintHook (
hDlg , uMsg , wParam , ( LPARAM ) PrintStructures - > dlg . lpPrintDlg
2002-06-01 01:06:46 +02:00
) ;
2002-04-11 19:32:49 +02:00
return res ;
}
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
if ( PrintStructures - > dlg . lpPrintDlg - > Flags & PD_ENABLEPRINTHOOK ) {
res = PrintStructures - > dlg . lpPrintDlg - > lpfnPrintHook ( hDlg , uMsg , wParam ,
lParam ) ;
if ( res ) return res ;
}
switch ( uMsg ) {
case WM_COMMAND :
return PRINTDLG_WMCommandW ( 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 ;
2002-06-01 01:06:46 +02:00
}
2000-05-27 00:26:06 +02:00
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 )
{
2002-09-17 00:47:05 +02:00
HRSRC hResInfo ;
HGLOBAL hDlgTmpl32 ;
2001-02-26 23:32:35 +01:00
LPCVOID template32 ;
DWORD size ;
HGLOBAL16 hGlobal16 ;
LPVOID template ;
2002-06-01 01:06:46 +02:00
2003-04-30 00:52:02 +02:00
if ( ! ( hResInfo = FindResourceA ( COMDLG32_hInstance ,
2001-02-26 23:32:35 +01:00
PrintResourceName , RT_DIALOGA ) ) )
{
COMDLG32_SetCommDlgExtendedError ( CDERR_FINDRESFAILURE ) ;
return 0 ;
}
2003-04-30 00:52:02 +02:00
if ( ! ( hDlgTmpl32 = LoadResource ( COMDLG32_hInstance , hResInfo ) ) | |
2001-02-26 23:32:35 +01:00
! ( template32 = LockResource ( hDlgTmpl32 ) ) )
{
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
return 0 ;
}
2003-04-30 00:52:02 +02:00
size = SizeofResource ( COMDLG32_hInstance , hResInfo ) ;
2001-02-26 23:32:35 +01:00
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
*
*/
2002-04-11 19:32:49 +02:00
static HGLOBAL PRINTDLG_GetDlgTemplateA ( PRINTDLGA * lppd )
2000-05-27 00:26:06 +02:00
{
2002-09-17 00:47:05 +02:00
HRSRC hResInfo ;
HGLOBAL hDlgTmpl ;
2000-05-27 00:26:06 +02:00
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 ;
2002-06-01 01:06:46 +02:00
} else if ( lppd - > Flags & PD_ENABLESETUPTEMPLATE ) {
2000-05-27 00:26:06 +02:00
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
2002-04-11 19:32:49 +02:00
static HGLOBAL PRINTDLG_GetDlgTemplateW ( PRINTDLGW * lppd )
{
2002-09-17 00:47:05 +02:00
HRSRC hResInfo ;
HGLOBAL hDlgTmpl ;
2002-04-11 19:32:49 +02:00
const WCHAR xpsetup [ ] = { ' P ' , ' R ' , ' I ' , ' N ' , ' T ' , ' 3 ' , ' 2 ' , ' _ ' , ' S ' , ' E ' , ' T ' , ' U ' , ' P ' , 0 } ;
const WCHAR xprint [ ] = { ' P ' , ' R ' , ' I ' , ' N ' , ' T ' , ' 3 ' , ' 2 ' , 0 } ;
if ( lppd - > Flags & PD_PRINTSETUP ) {
if ( lppd - > Flags & PD_ENABLESETUPTEMPLATEHANDLE ) {
hDlgTmpl = lppd - > hSetupTemplate ;
2002-06-01 01:06:46 +02:00
} else if ( lppd - > Flags & PD_ENABLESETUPTEMPLATE ) {
2002-04-11 19:32:49 +02:00
hResInfo = FindResourceW ( lppd - > hInstance ,
lppd - > lpSetupTemplateName , RT_DIALOGW ) ;
hDlgTmpl = LoadResource ( lppd - > hInstance , hResInfo ) ;
} else {
hResInfo = FindResourceW ( COMDLG32_hInstance , xpsetup , RT_DIALOGW ) ;
hDlgTmpl = LoadResource ( COMDLG32_hInstance , hResInfo ) ;
}
} else {
if ( lppd - > Flags & PD_ENABLEPRINTTEMPLATEHANDLE ) {
hDlgTmpl = lppd - > hPrintTemplate ;
} else if ( lppd - > Flags & PD_ENABLEPRINTTEMPLATE ) {
hResInfo = FindResourceW ( lppd - > hInstance ,
lppd - > lpPrintTemplateName ,
RT_DIALOGW ) ;
hDlgTmpl = LoadResource ( lppd - > hInstance , hResInfo ) ;
} else {
hResInfo = FindResourceW ( COMDLG32_hInstance , xprint , RT_DIALOGW ) ;
hDlgTmpl = LoadResource ( COMDLG32_hInstance , hResInfo ) ;
}
}
return hDlgTmpl ;
}
2001-05-05 02:44:03 +02: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 ;
2002-06-01 01:06:46 +02:00
} else if ( lppd - > Flags & PD_ENABLESETUPTEMPLATE ) {
2001-01-02 23:26:09 +01:00
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
*/
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_CreateDCA ( 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
2002-04-11 19:32:49 +02:00
static BOOL PRINTDLG_CreateDCW ( LPPRINTDLGW lppd )
{
DEVNAMES * pdn = GlobalLock ( lppd - > hDevNames ) ;
DEVMODEW * pdm = GlobalLock ( lppd - > hDevMode ) ;
if ( lppd - > Flags & PD_RETURNDC ) {
lppd - > hDC = CreateDCW ( ( WCHAR * ) pdn + pdn - > wDriverOffset ,
( WCHAR * ) pdn + pdn - > wDeviceOffset ,
( WCHAR * ) pdn + pdn - > wOutputOffset ,
pdm ) ;
} else if ( lppd - > Flags & PD_RETURNIC ) {
lppd - > hDC = CreateICW ( ( WCHAR * ) pdn + pdn - > wDriverOffset ,
( WCHAR * ) pdn + pdn - > wDeviceOffset ,
( WCHAR * ) pdn + pdn - > wOutputOffset ,
pdm ) ;
}
GlobalUnlock ( lppd - > hDevNames ) ;
GlobalUnlock ( lppd - > hDevMode ) ;
return lppd - > hDC ? TRUE : FALSE ;
}
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 ) {
2002-11-01 02:50:06 +01:00
lppd - > hDC = HDC_16 ( CreateDCA ( ( char * ) pdn + pdn - > wDriverOffset ,
2001-01-02 23:26:09 +01:00
( char * ) pdn + pdn - > wDeviceOffset ,
( char * ) pdn + pdn - > wOutputOffset ,
2002-11-01 02:50:06 +01:00
pdm ) ) ;
2001-01-02 23:26:09 +01:00
} else if ( lppd - > Flags & PD_RETURNIC ) {
2002-11-01 02:50:06 +01:00
lppd - > hDC = HDC_16 ( CreateICA ( ( char * ) pdn + pdn - > wDriverOffset ,
2001-01-02 23:26:09 +01:00
( char * ) pdn + pdn - > wDeviceOffset ,
( char * ) pdn + pdn - > wOutputOffset ,
2002-11-01 02:50:06 +01:00
pdm ) ) ;
2001-01-02 23:26:09 +01:00
}
GlobalUnlock16 ( lppd - > hDevNames ) ;
GlobalUnlock16 ( lppd - > hDevMode ) ;
return lppd - > hDC ? TRUE : FALSE ;
}
2000-05-27 00:26:06 +02:00
/***********************************************************************
2002-04-11 19:32:49 +02:00
* PrintDlgA ( COMDLG32 . @ )
*
* 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 ( ) .
2002-06-01 01:06:46 +02:00
* * Settings are not yet taken from a provided DevMode or
2002-04-11 19:32:49 +02:00
* default printer settings .
*/
BOOL WINAPI PrintDlgA (
LPPRINTDLGA lppd /* [in/out] ptr to PRINTDLG32 struct */
)
{
BOOL bRet = FALSE ;
LPVOID ptr ;
2002-11-01 02:50:06 +01:00
HINSTANCE hInst = ( HINSTANCE ) GetWindowLongA ( lppd - > hwndOwner , GWL_HINSTANCE ) ;
2002-04-11 19:32:49 +02:00
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 ) ;
}
2002-11-22 00:55:10 +01:00
TRACE ( " (%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p \n "
" pp. %d-%d, min p %d, max p %d, copies %d, hinst %p \n "
2002-04-11 19:32:49 +02:00
" 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 ) ;
2002-06-01 01:06:46 +02:00
return FALSE ;
2002-04-11 19:32:49 +02:00
}
if ( lppd - > Flags & PD_RETURNDEFAULT ) {
PRINTER_INFO_2A * pbuf ;
DRIVER_INFO_3A * dbuf ;
HANDLE hprn ;
DWORD needed ;
if ( lppd - > hDevMode | | lppd - > hDevNames ) {
WARN ( " hDevMode or hDevNames non-zero for PD_RETURNDEFAULT \n " ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_RETDEFFAILURE ) ;
2002-04-11 19:32:49 +02:00
return FALSE ;
}
if ( ! PRINTDLG_OpenDefaultPrinter ( & hprn ) ) {
WARN ( " Can't find default printer \n " ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_NODEFAULTPRN ) ;
2002-04-11 19:32:49 +02:00
return FALSE ;
}
GetPrinterA ( hprn , 2 , NULL , 0 , & needed ) ;
pbuf = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
GetPrinterA ( hprn , 2 , ( LPBYTE ) pbuf , needed , & needed ) ;
GetPrinterDriverA ( hprn , NULL , 3 , NULL , 0 , & needed ) ;
dbuf = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
if ( ! GetPrinterDriverA ( hprn , NULL , 3 , ( LPBYTE ) dbuf , needed , & needed ) ) {
ERR ( " GetPrinterDriverA failed, le %ld, fix your config for printer %s! \n " , GetLastError ( ) , pbuf - > pPrinterName ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_RETDEFFAILURE ) ;
2002-04-11 19:32:49 +02:00
return FALSE ;
}
ClosePrinter ( hprn ) ;
PRINTDLG_CreateDevNames ( & ( lppd - > hDevNames ) ,
dbuf - > pDriverPath ,
pbuf - > pPrinterName ,
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 ) ;
HeapFree ( GetProcessHeap ( ) , 0 , dbuf ) ;
bRet = TRUE ;
} else {
HGLOBAL hDlgTmpl ;
PRINT_PTRA * PrintStructures ;
2002-06-01 01:06:46 +02:00
/* load Dialog resources,
* depending on Flags indicates Print32 or Print32_setup dialog
2002-04-11 19:32:49 +02:00
*/
hDlgTmpl = PRINTDLG_GetDlgTemplateA ( lppd ) ;
if ( ! hDlgTmpl ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
return FALSE ;
}
ptr = LockResource ( hDlgTmpl ) ;
if ( ! ptr ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
return FALSE ;
}
PrintStructures = HeapAlloc ( GetProcessHeap ( ) , HEAP_ZERO_MEMORY ,
sizeof ( PRINT_PTRA ) ) ;
PrintStructures - > dlg . lpPrintDlg = lppd ;
/* and create & process the dialog .
* - 1 is failure , 0 is broken hwnd , everything else is ok .
*/
bRet = ( 0 < DialogBoxIndirectParamA ( hInst , ptr , lppd - > hwndOwner ,
PrintDlgProcA ,
( LPARAM ) PrintStructures ) ) ;
if ( bRet ) {
DEVMODEA * lpdm = PrintStructures - > lpDevMode , * lpdmReturn ;
PRINTER_INFO_2A * pi = PrintStructures - > lpPrinterInfo ;
DRIVER_INFO_3A * di = PrintStructures - > lpDriverInfo ;
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 ) ,
di - > pDriverPath ,
pi - > pPrinterName ,
pi - > pPortName
) ;
GlobalUnlock ( lppd - > hDevMode ) ;
}
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDevMode ) ;
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpPrinterInfo ) ;
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDriverInfo ) ;
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures ) ;
}
if ( bRet & & ( lppd - > Flags & PD_RETURNDC | | lppd - > Flags & PD_RETURNIC ) )
bRet = PRINTDLG_CreateDCA ( lppd ) ;
2002-06-01 01:06:46 +02:00
TRACE ( " exit! (%d) \n " , bRet ) ;
return bRet ;
2002-04-11 19:32:49 +02:00
}
/***********************************************************************
* PrintDlgW ( COMDLG32 . @ )
2000-05-27 00:26:06 +02:00
*/
2002-04-11 19:32:49 +02:00
BOOL WINAPI PrintDlgW (
LPPRINTDLGW lppd /* [in/out] ptr to PRINTDLG32 struct */
2000-05-27 00:26:06 +02:00
)
{
BOOL bRet = FALSE ;
LPVOID ptr ;
2003-03-06 23:43:43 +01:00
HINSTANCE hInst = ( HINSTANCE ) GetWindowLongW ( lppd - > hwndOwner , GWL_HINSTANCE ) ;
2000-05-27 00:26:06 +02:00
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 ) ;
}
2002-11-22 00:55:10 +01:00
TRACE ( " (%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p \n "
" pp. %d-%d, min p %d, max p %d, copies %d, hinst %p \n "
2000-05-27 00:26:06 +02:00
" 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 ) ;
}
2002-04-11 19:32:49 +02:00
if ( lppd - > lStructSize ! = sizeof ( PRINTDLGW ) ) {
2000-05-27 00:26:06 +02:00
WARN ( " structure size failure !!! \n " ) ;
COMDLG32_SetCommDlgExtendedError ( CDERR_STRUCTSIZE ) ;
2002-06-01 01:06:46 +02:00
return FALSE ;
2000-05-27 00:26:06 +02:00
}
if ( lppd - > Flags & PD_RETURNDEFAULT ) {
2002-04-11 19:32:49 +02:00
PRINTER_INFO_2W * pbuf ;
DRIVER_INFO_3W * dbuf ;
2000-05-27 00:26:06 +02:00
HANDLE hprn ;
DWORD needed ;
if ( lppd - > hDevMode | | lppd - > hDevNames ) {
WARN ( " hDevMode or hDevNames non-zero for PD_RETURNDEFAULT \n " ) ;
2002-06-01 01:06:46 +02:00
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 " ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_NODEFAULTPRN ) ;
2000-05-27 00:26:06 +02:00
return FALSE ;
}
2002-04-11 19:32:49 +02:00
GetPrinterW ( hprn , 2 , NULL , 0 , & needed ) ;
pbuf = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WCHAR ) * needed ) ;
GetPrinterW ( hprn , 2 , ( LPBYTE ) pbuf , needed , & needed ) ;
2001-05-02 03:10:43 +02:00
2002-04-11 19:32:49 +02:00
GetPrinterDriverW ( hprn , NULL , 3 , NULL , 0 , & needed ) ;
dbuf = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WCHAR ) * needed ) ;
if ( ! GetPrinterDriverW ( hprn , NULL , 3 , ( LPBYTE ) dbuf , needed , & needed ) ) {
ERR ( " GetPrinterDriverA failed, le %ld, fix your config for printer %s! \n " , GetLastError ( ) , debugstr_w ( pbuf - > pPrinterName ) ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_RETDEFFAILURE ) ;
2001-05-02 03:10:43 +02:00
return FALSE ;
}
2000-05-27 00:26:06 +02:00
ClosePrinter ( hprn ) ;
2001-05-02 03:10:43 +02:00
2002-04-11 19:32:49 +02:00
PRINTDLG_CreateDevNamesW ( & ( lppd - > hDevNames ) ,
2001-05-02 03:10:43 +02:00
dbuf - > pDriverPath ,
pbuf - > pPrinterName ,
2000-05-27 00:26:06 +02:00
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 ) ;
2001-05-02 03:10:43 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , dbuf ) ;
2000-05-27 00:26:06 +02:00
bRet = TRUE ;
} else {
HGLOBAL hDlgTmpl ;
2002-04-11 19:32:49 +02:00
PRINT_PTRW * PrintStructures ;
2000-05-27 00:26:06 +02:00
2002-06-01 01:06:46 +02:00
/* load Dialog resources,
* depending on Flags indicates Print32 or Print32_setup dialog
2000-05-27 00:26:06 +02:00
*/
2002-04-11 19:32:49 +02:00
hDlgTmpl = PRINTDLG_GetDlgTemplateW ( 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 ,
2002-04-11 19:32:49 +02:00
sizeof ( PRINT_PTRW ) ) ;
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
*/
2002-04-11 19:32:49 +02:00
bRet = ( 0 < DialogBoxIndirectParamW ( hInst , ptr , lppd - > hwndOwner ,
PrintDlgProcW ,
2001-01-02 23:26:09 +01:00
( LPARAM ) PrintStructures ) ) ;
2000-05-27 00:26:06 +02:00
if ( bRet ) {
2002-04-11 19:32:49 +02:00
DEVMODEW * lpdm = PrintStructures - > lpDevMode , * lpdmReturn ;
PRINTER_INFO_2W * pi = PrintStructures - > lpPrinterInfo ;
DRIVER_INFO_3W * di = PrintStructures - > lpDriverInfo ;
2000-05-27 00:26:06 +02:00
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 ) ;
}
}
2002-04-11 19:32:49 +02:00
PRINTDLG_CreateDevNamesW ( & ( lppd - > hDevNames ) ,
2001-05-02 03:10:43 +02:00
di - > pDriverPath ,
pi - > pPrinterName ,
pi - > pPortName
) ;
2000-05-27 00:26:06 +02:00
GlobalUnlock ( lppd - > hDevMode ) ;
}
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDevMode ) ;
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpPrinterInfo ) ;
2001-05-02 03:10:43 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDriverInfo ) ;
2000-05-27 00:26:06 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures ) ;
}
if ( bRet & & ( lppd - > Flags & PD_RETURNDC | | lppd - > Flags & PD_RETURNIC ) )
2002-04-11 19:32:49 +02:00
bRet = PRINTDLG_CreateDCW ( lppd ) ;
2000-05-27 00:26:06 +02:00
2002-06-01 01:06:46 +02:00
TRACE ( " exit! (%d) \n " , bRet ) ;
return bRet ;
2000-05-27 00:26:06 +02:00
}
2001-01-02 23:26:09 +01:00
/***********************************************************************
2001-07-02 21:59:40 +02:00
* PrintDlg ( COMMDLG .20 )
2002-06-01 01:06:46 +02:00
*
2001-01-02 23:26:09 +01:00
* 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 ;
2002-11-22 00:55:10 +01:00
HINSTANCE16 hInst = GetWindowWord ( HWND_32 ( lppd - > hwndOwner ) , GWL_HINSTANCE ) ;
2001-01-02 23:26:09 +01:00
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 ;
2001-05-02 03:10:43 +02:00
DRIVER_INFO_3A * dbuf ;
2001-01-02 23:26:09 +01:00
HANDLE hprn ;
DWORD needed ;
if ( lppd - > hDevMode | | lppd - > hDevNames ) {
WARN ( " hDevMode or hDevNames non-zero for PD_RETURNDEFAULT \n " ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_RETDEFFAILURE ) ;
2001-01-02 23:26:09 +01:00
return FALSE ;
}
if ( ! PRINTDLG_OpenDefaultPrinter ( & hprn ) ) {
WARN ( " Can't find default printer \n " ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_NODEFAULTPRN ) ;
2001-01-02 23:26:09 +01:00
return FALSE ;
}
GetPrinterA ( hprn , 2 , NULL , 0 , & needed ) ;
pbuf = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
GetPrinterA ( hprn , 2 , ( LPBYTE ) pbuf , needed , & needed ) ;
2001-05-02 03:10:43 +02:00
GetPrinterDriverA ( hprn , NULL , 3 , NULL , 0 , & needed ) ;
dbuf = HeapAlloc ( GetProcessHeap ( ) , 0 , needed ) ;
if ( ! GetPrinterDriverA ( hprn , NULL , 3 , ( LPBYTE ) dbuf , needed , & needed ) ) {
ERR ( " GetPrinterDriverA failed for %s, le %ld, fix your config! \n " ,
pbuf - > pPrinterName , GetLastError ( ) ) ;
2002-06-01 01:06:46 +02:00
COMDLG32_SetCommDlgExtendedError ( PDERR_RETDEFFAILURE ) ;
2001-05-02 03:10:43 +02:00
return FALSE ;
}
2001-01-02 23:26:09 +01:00
ClosePrinter ( hprn ) ;
2001-05-02 03:10:43 +02:00
PRINTDLG_CreateDevNames16 ( & ( lppd - > hDevNames ) ,
dbuf - > pDriverPath ,
pbuf - > pPrinterName ,
pbuf - > pPortName ) ;
2001-01-02 23:26:09 +01:00
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 ) ;
2001-05-02 03:10:43 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , dbuf ) ;
2001-01-02 23:26:09 +01:00
bRet = TRUE ;
} else {
2002-11-22 00:55:10 +01:00
HGLOBAL16 hDlgTmpl ;
2001-01-02 23:26:09 +01:00
PRINT_PTRA * PrintStructures ;
2002-06-01 01:06:46 +02:00
/* load Dialog resources,
* depending on Flags indicates Print32 or Print32_setup dialog
2001-01-02 23:26:09 +01:00
*/
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);
2002-09-06 22:40:42 +02:00
CVAL ( Flags ) ;
PrintStructures - > dlg . lpPrintDlg - > hwndOwner = HWND_32 ( lppd - > hwndOwner ) ;
2002-11-22 00:55:10 +01:00
PrintStructures - > dlg . lpPrintDlg - > hDC = HDC_32 ( lppd - > hDC ) ;
2001-01-02 23:26:09 +01:00
CVAL ( nFromPage ) ; CVAL ( nToPage ) ; CVAL ( nMinPage ) ; CVAL ( nMaxPage ) ;
2002-11-22 00:55:10 +01:00
CVAL ( nCopies ) ;
PrintStructures - > dlg . lpPrintDlg - > hInstance = HINSTANCE_32 ( lppd - > hInstance ) ;
CVAL ( lCustData ) ;
2001-01-02 23:26:09 +01:00
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 ;
2001-05-02 03:10:43 +02:00
DRIVER_INFO_3A * di = PrintStructures - > lpDriverInfo ;
2001-01-02 23:26:09 +01:00
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 ) ;
}
}
2001-05-02 03:10:43 +02:00
PRINTDLG_CreateDevNames16 ( & ( lppd - > hDevNames ) ,
di - > pDriverPath ,
pi - > pPrinterName ,
pi - > pPortName
) ;
2001-01-02 23:26:09 +01:00
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 ) ;
2001-05-02 03:10:43 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures - > lpDriverInfo ) ;
2001-01-02 23:26:09 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , PrintStructures ) ;
}
if ( bRet & & ( lppd - > Flags & PD_RETURNDC | | lppd - > Flags & PD_RETURNIC ) )
bRet = PRINTDLG_CreateDC16 ( lppd ) ;
2002-06-01 01:06:46 +02:00
TRACE ( " exit! (%d) \n " , bRet ) ;
return bRet ;
2001-01-02 23:26:09 +01:00
}
2000-05-27 00:26:06 +02:00
/***********************************************************************
*
* PageSetupDlg
2001-05-05 02:44:03 +02:00
* rad1 - portrait
* rad2 - landscape
* cmb2 - paper size
* cmb3 - source ( tray ? )
* edt4 - border left
* edt5 - border top
* edt6 - border right
* edt7 - border bottom
* psh3 - " Printer... "
2000-05-27 00:26:06 +02:00
*/
1999-02-28 21:05:11 +01:00
2001-05-05 02:44:03 +02:00
typedef struct {
LPPAGESETUPDLGA dlga ;
PRINTDLGA pdlg ;
2002-04-11 19:32:49 +02:00
} PageSetupDataA ;
typedef struct {
LPPAGESETUPDLGW dlga ;
PRINTDLGW pdlg ;
} PageSetupDataW ;
2001-05-05 02:44:03 +02:00
2002-04-11 19:32:49 +02:00
static HGLOBAL PRINTDLG_GetPGSTemplateA ( PAGESETUPDLGA * lppd )
2001-05-05 02:44:03 +02:00
{
2002-09-17 00:47:05 +02:00
HRSRC hResInfo ;
HGLOBAL hDlgTmpl ;
2001-05-05 02:44:03 +02:00
if ( lppd - > Flags & PSD_ENABLEPAGESETUPTEMPLATEHANDLE ) {
hDlgTmpl = lppd - > hPageSetupTemplate ;
2002-06-01 01:06:46 +02:00
} else if ( lppd - > Flags & PSD_ENABLEPAGESETUPTEMPLATE ) {
2001-05-05 02:44:03 +02:00
hResInfo = FindResourceA ( lppd - > hInstance ,
lppd - > lpPageSetupTemplateName , RT_DIALOGA ) ;
hDlgTmpl = LoadResource ( lppd - > hInstance , hResInfo ) ;
} else {
hResInfo = FindResourceA ( COMDLG32_hInstance , ( LPCSTR ) PAGESETUPDLGORD , RT_DIALOGA ) ;
hDlgTmpl = LoadResource ( COMDLG32_hInstance , hResInfo ) ;
}
return hDlgTmpl ;
}
2002-04-11 19:32:49 +02:00
static HGLOBAL PRINTDLG_GetPGSTemplateW ( PAGESETUPDLGW * lppd )
{
2002-09-17 00:47:05 +02:00
HRSRC hResInfo ;
HGLOBAL hDlgTmpl ;
2002-04-11 19:32:49 +02:00
if ( lppd - > Flags & PSD_ENABLEPAGESETUPTEMPLATEHANDLE ) {
hDlgTmpl = lppd - > hPageSetupTemplate ;
2002-06-01 01:06:46 +02:00
} else if ( lppd - > Flags & PSD_ENABLEPAGESETUPTEMPLATE ) {
2002-04-11 19:32:49 +02:00
hResInfo = FindResourceW ( lppd - > hInstance ,
lppd - > lpPageSetupTemplateName , RT_DIALOGW ) ;
hDlgTmpl = LoadResource ( lppd - > hInstance , hResInfo ) ;
} else {
hResInfo = FindResourceW ( COMDLG32_hInstance , ( LPCWSTR ) PAGESETUPDLGORD , RT_DIALOGW ) ;
hDlgTmpl = LoadResource ( COMDLG32_hInstance , hResInfo ) ;
}
return hDlgTmpl ;
}
2001-05-05 02:44:03 +02:00
static DWORD
_c_10mm2size ( PAGESETUPDLGA * dlga , DWORD size ) {
if ( dlga - > Flags & PSD_INTHOUSANDTHSOFINCHES )
return 10 * size * 10 / 25.4 ;
/* If we don't have a flag, we can choose one. Use millimeters
* to avoid confusing me
*/
dlga - > Flags | = PSD_INHUNDREDTHSOFMILLIMETERS ;
return 10 * size ;
}
static DWORD
_c_inch2size ( PAGESETUPDLGA * dlga , DWORD size ) {
if ( dlga - > Flags & PSD_INTHOUSANDTHSOFINCHES )
return size ;
if ( dlga - > Flags & PSD_INHUNDREDTHSOFMILLIMETERS )
return ( size * 254 ) / 10 ;
/* if we don't have a flag, we can choose one. Use millimeters
* to avoid confusing me
*/
dlga - > Flags | = PSD_INHUNDREDTHSOFMILLIMETERS ;
return ( size * 254 ) / 10 ;
}
static void
2002-04-11 19:32:49 +02:00
_c_size2strA ( PageSetupDataA * pda , DWORD size , LPSTR strout ) {
strcpy ( strout , " <undef> " ) ;
if ( pda - > dlga - > Flags & PSD_INHUNDREDTHSOFMILLIMETERS ) {
sprintf ( strout , " %.2fmm " , ( size * 1.0 ) / 100.0 ) ;
return ;
}
if ( pda - > dlga - > Flags & PSD_INTHOUSANDTHSOFINCHES ) {
sprintf ( strout , " %.2fin " , ( size * 1.0 ) / 1000.0 ) ;
return ;
}
pda - > dlga - > Flags | = PSD_INHUNDREDTHSOFMILLIMETERS ;
sprintf ( strout , " %.2fmm " , ( size * 1.0 ) / 100.0 ) ;
return ;
}
static void
_c_size2strW ( PageSetupDataW * pda , DWORD size , LPSTR strout ) {
2001-05-05 02:44:03 +02:00
strcpy ( strout , " <undef> " ) ;
if ( pda - > dlga - > Flags & PSD_INHUNDREDTHSOFMILLIMETERS ) {
sprintf ( strout , " %.2fmm " , ( size * 1.0 ) / 100.0 ) ;
return ;
}
if ( pda - > dlga - > Flags & PSD_INTHOUSANDTHSOFINCHES ) {
sprintf ( strout , " %.2fin " , ( size * 1.0 ) / 1000.0 ) ;
return ;
}
pda - > dlga - > Flags | = PSD_INHUNDREDTHSOFMILLIMETERS ;
sprintf ( strout , " %.2fmm " , ( size * 1.0 ) / 100.0 ) ;
return ;
}
static DWORD
2002-04-11 19:32:49 +02:00
_c_str2size ( PAGESETUPDLGA * dlga , LPCSTR strin ) {
2001-05-05 02:44:03 +02:00
float val ;
char rest [ 200 ] ;
rest [ 0 ] = ' \0 ' ;
if ( ! sscanf ( strin , " %f%s " , & val , rest ) )
return 0 ;
if ( ! strcmp ( rest , " in " ) | | ! strcmp ( rest , " inch " ) ) {
2002-04-11 19:32:49 +02:00
if ( dlga - > Flags & PSD_INTHOUSANDTHSOFINCHES )
2001-05-05 02:44:03 +02:00
return 1000 * val ;
else
return val * 25.4 * 100 ;
}
if ( ! strcmp ( rest , " cm " ) ) { rest [ 0 ] = ' m ' ; val = val * 10.0 ; }
if ( ! strcmp ( rest , " m " ) ) { strcpy ( rest , " mm " ) ; val = val * 1000.0 ; }
if ( ! strcmp ( rest , " mm " ) ) {
2002-04-11 19:32:49 +02:00
if ( dlga - > Flags & PSD_INHUNDREDTHSOFMILLIMETERS )
2001-05-05 02:44:03 +02:00
return 100 * val ;
else
return 1000.0 * val / 25.4 ;
}
if ( rest [ 0 ] = = ' \0 ' ) {
/* use application supplied default */
2002-04-11 19:32:49 +02:00
if ( dlga - > Flags & PSD_INHUNDREDTHSOFMILLIMETERS ) {
2001-05-05 02:44:03 +02:00
/* 100*mm */
return 100.0 * val ;
}
2002-04-11 19:32:49 +02:00
if ( dlga - > Flags & PSD_INTHOUSANDTHSOFINCHES ) {
2001-05-05 02:44:03 +02:00
/* 1000*inch */
return 1000.0 * val ;
}
}
ERR ( " Did not find a conversion for type '%s'! \n " , rest ) ;
return 0 ;
}
/*
* This is called on finish and will update the output fields of the
* struct .
*/
static BOOL
2002-04-11 19:32:49 +02:00
PRINTDLG_PS_UpdateDlgStructA ( HWND hDlg , PageSetupDataA * pda ) {
2001-05-05 02:44:03 +02:00
DEVNAMES * dn ;
DEVMODEA * dm ;
LPSTR devname , portname ;
char papername [ 64 ] ;
char buf [ 200 ] ;
2002-06-01 01:06:46 +02:00
2001-05-05 02:44:03 +02:00
dn = GlobalLock ( pda - > pdlg . hDevNames ) ;
dm = GlobalLock ( pda - > pdlg . hDevMode ) ;
devname = ( ( char * ) dn ) + dn - > wDeviceOffset ;
portname = ( ( char * ) dn ) + dn - > wOutputOffset ;
2002-04-11 19:32:49 +02:00
PRINTDLG_SetUpPaperComboBoxA ( hDlg , cmb2 , devname , portname , dm ) ;
PRINTDLG_SetUpPaperComboBoxA ( hDlg , cmb3 , devname , portname , dm ) ;
2001-05-05 02:44:03 +02:00
if ( GetDlgItemTextA ( hDlg , cmb2 , papername , sizeof ( papername ) ) > 0 ) {
2002-04-11 19:32:49 +02:00
PRINTDLG_PaperSizeA ( & ( pda - > pdlg ) , papername , & ( pda - > dlga - > ptPaperSize ) ) ;
2001-05-05 02:44:03 +02:00
pda - > dlga - > ptPaperSize . x = _c_10mm2size ( pda - > dlga , pda - > dlga - > ptPaperSize . x ) ;
pda - > dlga - > ptPaperSize . y = _c_10mm2size ( pda - > dlga , pda - > dlga - > ptPaperSize . y ) ;
} else
FIXME ( " could not get dialog text for papersize cmbbox? \n " ) ;
2002-04-11 19:32:49 +02:00
# define GETVAL(id,val) if (GetDlgItemTextA(hDlg,id,buf,sizeof(buf))>0) { val = _c_str2size(pda->dlga,buf); } else { FIXME("could not get dlgitemtexta for %x\n",id); }
GETVAL ( edt4 , pda - > dlga - > rtMargin . left ) ;
GETVAL ( edt5 , pda - > dlga - > rtMargin . top ) ;
GETVAL ( edt6 , pda - > dlga - > rtMargin . right ) ;
GETVAL ( edt7 , pda - > dlga - > rtMargin . bottom ) ;
# undef GETVAL
/* If we are in landscape, swap x and y of page size */
if ( IsDlgButtonChecked ( hDlg , rad2 ) ) {
DWORD tmp ;
tmp = pda - > dlga - > ptPaperSize . x ;
pda - > dlga - > ptPaperSize . x = pda - > dlga - > ptPaperSize . y ;
pda - > dlga - > ptPaperSize . y = tmp ;
}
GlobalUnlock ( pda - > pdlg . hDevNames ) ;
GlobalUnlock ( pda - > pdlg . hDevMode ) ;
return TRUE ;
}
static BOOL
PRINTDLG_PS_UpdateDlgStructW ( HWND hDlg , PageSetupDataW * pda ) {
DEVNAMES * dn ;
DEVMODEW * dm ;
LPWSTR devname , portname ;
WCHAR papername [ 64 ] ;
char buf [ 200 ] ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
dn = GlobalLock ( pda - > pdlg . hDevNames ) ;
dm = GlobalLock ( pda - > pdlg . hDevMode ) ;
devname = ( ( WCHAR * ) dn ) + dn - > wDeviceOffset ;
portname = ( ( WCHAR * ) dn ) + dn - > wOutputOffset ;
PRINTDLG_SetUpPaperComboBoxW ( hDlg , cmb2 , devname , portname , dm ) ;
PRINTDLG_SetUpPaperComboBoxW ( hDlg , cmb3 , devname , portname , dm ) ;
if ( GetDlgItemTextW ( hDlg , cmb2 , papername , sizeof ( papername ) ) > 0 ) {
PRINTDLG_PaperSizeW ( & ( pda - > pdlg ) , papername , & ( pda - > dlga - > ptPaperSize ) ) ;
pda - > dlga - > ptPaperSize . x = _c_10mm2size ( ( LPPAGESETUPDLGA ) pda - > dlga , pda - > dlga - > ptPaperSize . x ) ;
pda - > dlga - > ptPaperSize . y = _c_10mm2size ( ( LPPAGESETUPDLGA ) pda - > dlga , pda - > dlga - > ptPaperSize . y ) ;
} else
FIXME ( " could not get dialog text for papersize cmbbox? \n " ) ;
# define GETVAL(id,val) if (GetDlgItemTextA(hDlg,id,buf,sizeof(buf))>0) { val = _c_str2size((LPPAGESETUPDLGA)pda->dlga,buf); } else { FIXME("could not get dlgitemtexta for %x\n",id); }
2001-05-05 02:44:03 +02:00
GETVAL ( edt4 , pda - > dlga - > rtMargin . left ) ;
GETVAL ( edt5 , pda - > dlga - > rtMargin . top ) ;
GETVAL ( edt6 , pda - > dlga - > rtMargin . right ) ;
GETVAL ( edt7 , pda - > dlga - > rtMargin . bottom ) ;
# undef GETVAL
/* If we are in landscape, swap x and y of page size */
if ( IsDlgButtonChecked ( hDlg , rad2 ) ) {
DWORD tmp ;
tmp = pda - > dlga - > ptPaperSize . x ;
pda - > dlga - > ptPaperSize . x = pda - > dlga - > ptPaperSize . y ;
pda - > dlga - > ptPaperSize . y = tmp ;
}
GlobalUnlock ( pda - > pdlg . hDevNames ) ;
GlobalUnlock ( pda - > pdlg . hDevMode ) ;
return TRUE ;
}
/*
* This is called after returning from PrintDlg ( ) .
*/
static BOOL
2002-04-11 19:32:49 +02:00
PRINTDLG_PS_ChangePrinterA ( HWND hDlg , PageSetupDataA * pda ) {
2001-05-05 02:44:03 +02:00
DEVNAMES * dn ;
DEVMODEA * dm ;
LPSTR devname , portname ;
2002-06-01 01:06:46 +02:00
2001-05-05 02:44:03 +02:00
dn = GlobalLock ( pda - > pdlg . hDevNames ) ;
dm = GlobalLock ( pda - > pdlg . hDevMode ) ;
devname = ( ( char * ) dn ) + dn - > wDeviceOffset ;
portname = ( ( char * ) dn ) + dn - > wOutputOffset ;
2002-04-11 19:32:49 +02:00
PRINTDLG_SetUpPaperComboBoxA ( hDlg , cmb2 , devname , portname , dm ) ;
PRINTDLG_SetUpPaperComboBoxA ( hDlg , cmb3 , devname , portname , dm ) ;
GlobalUnlock ( pda - > pdlg . hDevNames ) ;
GlobalUnlock ( pda - > pdlg . hDevMode ) ;
return TRUE ;
}
static BOOL
PRINTDLG_PS_ChangePrinterW ( HWND hDlg , PageSetupDataW * pda ) {
DEVNAMES * dn ;
DEVMODEW * dm ;
LPWSTR devname , portname ;
2002-06-01 01:06:46 +02:00
2002-04-11 19:32:49 +02:00
dn = GlobalLock ( pda - > pdlg . hDevNames ) ;
dm = GlobalLock ( pda - > pdlg . hDevMode ) ;
devname = ( ( WCHAR * ) dn ) + dn - > wDeviceOffset ;
portname = ( ( WCHAR * ) dn ) + dn - > wOutputOffset ;
PRINTDLG_SetUpPaperComboBoxW ( hDlg , cmb2 , devname , portname , dm ) ;
PRINTDLG_SetUpPaperComboBoxW ( hDlg , cmb3 , devname , portname , dm ) ;
2001-05-05 02:44:03 +02:00
GlobalUnlock ( pda - > pdlg . hDevNames ) ;
GlobalUnlock ( pda - > pdlg . hDevMode ) ;
return TRUE ;
}
static BOOL
2002-04-11 19:32:49 +02:00
PRINTDLG_PS_WMCommandA (
HWND hDlg , WPARAM wParam , LPARAM lParam , PageSetupDataA * pda
2001-05-05 02:44:03 +02:00
) {
switch ( LOWORD ( wParam ) ) {
case IDOK :
2002-04-11 19:32:49 +02:00
if ( ! PRINTDLG_PS_UpdateDlgStructA ( hDlg , pda ) )
2001-05-05 02:44:03 +02:00
return ( FALSE ) ;
EndDialog ( hDlg , TRUE ) ;
return TRUE ;
case IDCANCEL :
EndDialog ( hDlg , FALSE ) ;
return FALSE ;
case psh3 : {
pda - > pdlg . Flags = 0 ;
pda - > pdlg . hwndOwner = hDlg ;
if ( PrintDlgA ( & ( pda - > pdlg ) ) )
2002-04-11 19:32:49 +02:00
PRINTDLG_PS_ChangePrinterA ( hDlg , pda ) ;
return TRUE ;
}
}
FIXME ( " loword (lparam) %d, wparam 0x%x, lparam %08lx, STUB mostly. \n " ,
LOWORD ( lParam ) , wParam , lParam
) ;
return FALSE ;
}
static BOOL
PRINTDLG_PS_WMCommandW (
HWND hDlg , WPARAM wParam , LPARAM lParam , PageSetupDataW * pda
) {
switch ( LOWORD ( wParam ) ) {
case IDOK :
if ( ! PRINTDLG_PS_UpdateDlgStructW ( hDlg , pda ) )
return ( FALSE ) ;
EndDialog ( hDlg , TRUE ) ;
return TRUE ;
case IDCANCEL :
EndDialog ( hDlg , FALSE ) ;
return FALSE ;
case psh3 : {
pda - > pdlg . Flags = 0 ;
pda - > pdlg . hwndOwner = hDlg ;
if ( PrintDlgW ( & ( pda - > pdlg ) ) )
PRINTDLG_PS_ChangePrinterW ( hDlg , pda ) ;
2001-05-05 02:44:03 +02:00
return TRUE ;
}
}
FIXME ( " loword (lparam) %d, wparam 0x%x, lparam %08lx, STUB mostly. \n " ,
LOWORD ( lParam ) , wParam , lParam
) ;
return FALSE ;
}
2002-10-31 02:04:39 +01:00
static INT_PTR CALLBACK
2001-05-05 02:44:03 +02:00
PageDlgProcA ( HWND hDlg , UINT uMsg , WPARAM wParam , LPARAM lParam )
{
2002-04-11 19:32:49 +02:00
PageSetupDataA * pda ;
2002-10-31 02:04:39 +01:00
INT_PTR res = FALSE ;
2001-05-05 02:44:03 +02:00
if ( uMsg = = WM_INITDIALOG ) {
res = TRUE ;
2002-04-11 19:32:49 +02:00
pda = ( PageSetupDataA * ) lParam ;
2002-11-22 00:55:10 +01:00
SetPropA ( hDlg , " __WINE_PAGESETUPDLGDATA " , pda ) ;
2001-05-05 02:44:03 +02:00
if ( pda - > dlga - > Flags & PSD_ENABLEPAGESETUPHOOK ) {
res = pda - > dlga - > lpfnPageSetupHook ( hDlg , uMsg , wParam , lParam ) ;
if ( ! res ) {
FIXME ( " Setup page hook failed? \n " ) ;
res = TRUE ;
}
}
if ( pda - > dlga - > Flags & PSD_ENABLEPAGEPAINTHOOK ) {
FIXME ( " PagePaintHook not yet implemented! \n " ) ;
}
if ( pda - > dlga - > Flags & PSD_DISABLEPRINTER )
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , psh3 ) , FALSE ) ;
2001-05-05 02:44:03 +02:00
if ( pda - > dlga - > Flags & PSD_DISABLEMARGINS ) {
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , edt4 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , edt5 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , edt6 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , edt7 ) , FALSE ) ;
2001-05-05 02:44:03 +02:00
}
/* width larger as height -> landscape */
if ( pda - > dlga - > ptPaperSize . x > pda - > dlga - > ptPaperSize . y )
CheckRadioButton ( hDlg , rad1 , rad2 , rad2 ) ;
else /* this is default if papersize is not set */
CheckRadioButton ( hDlg , rad1 , rad2 , rad1 ) ;
if ( pda - > dlga - > Flags & PSD_DISABLEORIENTATION ) {
EnableWindow ( GetDlgItem ( hDlg , rad1 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , rad2 ) , FALSE ) ;
}
/* We fill them out enabled or not */
if ( pda - > dlga - > Flags & PSD_MARGINS ) {
char str [ 100 ] ;
2002-04-11 19:32:49 +02:00
_c_size2strA ( pda , pda - > dlga - > rtMargin . left , str ) ;
2001-05-05 02:44:03 +02:00
SetDlgItemTextA ( hDlg , edt4 , str ) ;
2002-04-11 19:32:49 +02:00
_c_size2strA ( pda , pda - > dlga - > rtMargin . top , str ) ;
2001-05-05 02:44:03 +02:00
SetDlgItemTextA ( hDlg , edt5 , str ) ;
2002-04-11 19:32:49 +02:00
_c_size2strA ( pda , pda - > dlga - > rtMargin . right , str ) ;
2001-05-05 02:44:03 +02:00
SetDlgItemTextA ( hDlg , edt6 , str ) ;
2002-04-11 19:32:49 +02:00
_c_size2strA ( pda , pda - > dlga - > rtMargin . bottom , str ) ;
2001-05-05 02:44:03 +02:00
SetDlgItemTextA ( hDlg , edt7 , str ) ;
} else {
/* default is 1 inch */
DWORD size = _c_inch2size ( pda - > dlga , 1000 ) ;
char str [ 20 ] ;
2002-04-11 19:32:49 +02:00
_c_size2strA ( pda , size , str ) ;
SetDlgItemTextA ( hDlg , edt4 , str ) ;
SetDlgItemTextA ( hDlg , edt5 , str ) ;
SetDlgItemTextA ( hDlg , edt6 , str ) ;
SetDlgItemTextA ( hDlg , edt7 , str ) ;
}
PRINTDLG_PS_ChangePrinterA ( hDlg , pda ) ;
if ( pda - > dlga - > Flags & PSD_DISABLEPAPER ) {
EnableWindow ( GetDlgItem ( hDlg , cmb2 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , cmb3 ) , FALSE ) ;
}
return TRUE ;
} else {
pda = ( PageSetupDataA * ) GetPropA ( hDlg , " __WINE_PAGESETUPDLGDATA " ) ;
if ( ! pda ) {
WARN ( " __WINE_PAGESETUPDLGDATA prop not set? \n " ) ;
return FALSE ;
}
if ( pda - > dlga - > Flags & PSD_ENABLEPAGESETUPHOOK ) {
res = pda - > dlga - > lpfnPageSetupHook ( hDlg , uMsg , wParam , lParam ) ;
if ( res ) return res ;
}
}
switch ( uMsg ) {
case WM_COMMAND :
return PRINTDLG_PS_WMCommandA ( hDlg , wParam , lParam , pda ) ;
}
return FALSE ;
}
2002-10-31 02:04:39 +01:00
static INT_PTR CALLBACK
2002-04-11 19:32:49 +02:00
PageDlgProcW ( HWND hDlg , UINT uMsg , WPARAM wParam , LPARAM lParam )
{
PageSetupDataW * pda ;
BOOL res = FALSE ;
if ( uMsg = = WM_INITDIALOG ) {
res = TRUE ;
pda = ( PageSetupDataW * ) lParam ;
2002-11-22 00:55:10 +01:00
SetPropA ( hDlg , " __WINE_PAGESETUPDLGDATA " , pda ) ;
2002-04-11 19:32:49 +02:00
if ( pda - > dlga - > Flags & PSD_ENABLEPAGESETUPHOOK ) {
res = pda - > dlga - > lpfnPageSetupHook ( hDlg , uMsg , wParam , lParam ) ;
if ( ! res ) {
FIXME ( " Setup page hook failed? \n " ) ;
res = TRUE ;
}
}
if ( pda - > dlga - > Flags & PSD_ENABLEPAGEPAINTHOOK ) {
FIXME ( " PagePaintHook not yet implemented! \n " ) ;
}
if ( pda - > dlga - > Flags & PSD_DISABLEPRINTER )
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , psh3 ) , FALSE ) ;
2002-04-11 19:32:49 +02:00
if ( pda - > dlga - > Flags & PSD_DISABLEMARGINS ) {
2002-06-01 01:06:46 +02:00
EnableWindow ( GetDlgItem ( hDlg , edt4 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , edt5 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , edt6 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , edt7 ) , FALSE ) ;
2002-04-11 19:32:49 +02:00
}
/* width larger as height -> landscape */
if ( pda - > dlga - > ptPaperSize . x > pda - > dlga - > ptPaperSize . y )
CheckRadioButton ( hDlg , rad1 , rad2 , rad2 ) ;
else /* this is default if papersize is not set */
CheckRadioButton ( hDlg , rad1 , rad2 , rad1 ) ;
if ( pda - > dlga - > Flags & PSD_DISABLEORIENTATION ) {
EnableWindow ( GetDlgItem ( hDlg , rad1 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , rad2 ) , FALSE ) ;
}
/* We fill them out enabled or not */
if ( pda - > dlga - > Flags & PSD_MARGINS ) {
char str [ 100 ] ;
_c_size2strW ( pda , pda - > dlga - > rtMargin . left , str ) ;
SetDlgItemTextA ( hDlg , edt4 , str ) ;
_c_size2strW ( pda , pda - > dlga - > rtMargin . top , str ) ;
SetDlgItemTextA ( hDlg , edt5 , str ) ;
_c_size2strW ( pda , pda - > dlga - > rtMargin . right , str ) ;
SetDlgItemTextA ( hDlg , edt6 , str ) ;
_c_size2strW ( pda , pda - > dlga - > rtMargin . bottom , str ) ;
SetDlgItemTextA ( hDlg , edt7 , str ) ;
} else {
/* default is 1 inch */
DWORD size = _c_inch2size ( ( LPPAGESETUPDLGA ) pda - > dlga , 1000 ) ;
char str [ 20 ] ;
_c_size2strW ( pda , size , str ) ;
2001-05-05 02:44:03 +02:00
SetDlgItemTextA ( hDlg , edt4 , str ) ;
SetDlgItemTextA ( hDlg , edt5 , str ) ;
SetDlgItemTextA ( hDlg , edt6 , str ) ;
SetDlgItemTextA ( hDlg , edt7 , str ) ;
}
2002-04-11 19:32:49 +02:00
PRINTDLG_PS_ChangePrinterW ( hDlg , pda ) ;
2001-05-05 02:44:03 +02:00
if ( pda - > dlga - > Flags & PSD_DISABLEPAPER ) {
EnableWindow ( GetDlgItem ( hDlg , cmb2 ) , FALSE ) ;
EnableWindow ( GetDlgItem ( hDlg , cmb3 ) , FALSE ) ;
}
return TRUE ;
} else {
2002-04-11 19:32:49 +02:00
pda = ( PageSetupDataW * ) GetPropA ( hDlg , " __WINE_PAGESETUPDLGDATA " ) ;
2001-05-05 02:44:03 +02:00
if ( ! pda ) {
WARN ( " __WINE_PAGESETUPDLGDATA prop not set? \n " ) ;
return FALSE ;
}
if ( pda - > dlga - > Flags & PSD_ENABLEPAGESETUPHOOK ) {
res = pda - > dlga - > lpfnPageSetupHook ( hDlg , uMsg , wParam , lParam ) ;
if ( res ) return res ;
}
}
switch ( uMsg ) {
case WM_COMMAND :
2002-04-11 19:32:49 +02:00
return PRINTDLG_PS_WMCommandW ( hDlg , wParam , lParam , pda ) ;
2001-05-05 02:44:03 +02:00
}
return FALSE ;
}
2000-05-27 00:26:06 +02:00
/***********************************************************************
2001-06-19 05:34:07 +02:00
* PageSetupDlgA ( COMDLG32 . @ )
2000-05-27 00:26:06 +02:00
*/
BOOL WINAPI PageSetupDlgA ( LPPAGESETUPDLGA setupdlg ) {
2001-05-05 02:44:03 +02:00
HGLOBAL hDlgTmpl ;
LPVOID ptr ;
BOOL bRet ;
2002-04-11 19:32:49 +02:00
PageSetupDataA * pda ;
2001-05-05 02:44:03 +02:00
PRINTDLGA pdlg ;
if ( TRACE_ON ( commdlg ) ) {
char flagstr [ 1000 ] = " " ;
struct pd_flags * pflag = psd_flags ;
for ( ; pflag - > name ; pflag + + ) {
if ( setupdlg - > Flags & pflag - > flag ) {
strcat ( flagstr , pflag - > name ) ;
strcat ( flagstr , " | " ) ;
}
}
2002-11-22 00:55:10 +01:00
TRACE ( " (%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p \n "
" hinst %p, flags %08lx (%s) \n " ,
2001-05-05 02:44:03 +02:00
setupdlg , setupdlg - > hwndOwner , setupdlg - > hDevMode ,
2002-06-01 01:06:46 +02:00
setupdlg - > hDevNames ,
2001-05-05 02:44:03 +02:00
setupdlg - > hInstance , setupdlg - > Flags , flagstr ) ;
}
/* First get default printer data, we need it right after that. */
memset ( & pdlg , 0 , sizeof ( pdlg ) ) ;
pdlg . lStructSize = sizeof ( pdlg ) ;
pdlg . Flags = PD_RETURNDEFAULT ;
bRet = PrintDlgA ( & pdlg ) ;
if ( ! bRet ) return FALSE ;
/* short cut exit, just return default values */
if ( setupdlg - > Flags & PSD_RETURNDEFAULT ) {
setupdlg - > hDevMode = pdlg . hDevMode ;
setupdlg - > hDevNames = pdlg . hDevNames ;
/* FIXME: Just return "A4" for now. */
2002-04-11 19:32:49 +02:00
PRINTDLG_PaperSizeA ( & pdlg , " A4 " , & setupdlg - > ptPaperSize ) ;
2001-05-05 02:44:03 +02:00
setupdlg - > ptPaperSize . x = _c_10mm2size ( setupdlg , setupdlg - > ptPaperSize . x ) ;
setupdlg - > ptPaperSize . y = _c_10mm2size ( setupdlg , setupdlg - > ptPaperSize . y ) ;
2001-04-27 20:02:46 +02:00
return TRUE ;
2001-05-05 02:44:03 +02:00
}
2002-04-11 19:32:49 +02:00
hDlgTmpl = PRINTDLG_GetPGSTemplateA ( setupdlg ) ;
2001-05-05 02:44:03 +02:00
if ( ! hDlgTmpl ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
return FALSE ;
}
ptr = LockResource ( hDlgTmpl ) ;
if ( ! ptr ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
return FALSE ;
}
pda = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( * pda ) ) ;
pda - > dlga = setupdlg ;
memcpy ( & pda - > pdlg , & pdlg , sizeof ( pdlg ) ) ;
bRet = ( 0 < DialogBoxIndirectParamA (
setupdlg - > hInstance ,
ptr ,
setupdlg - > hwndOwner ,
PageDlgProcA ,
( LPARAM ) pda )
) ;
return bRet ;
2000-05-27 00:26:06 +02:00
}
/***********************************************************************
2001-06-19 05:34:07 +02:00
* PageSetupDlgW ( COMDLG32 . @ )
2000-05-27 00:26:06 +02:00
*/
BOOL WINAPI PageSetupDlgW ( LPPAGESETUPDLGW setupdlg ) {
2002-04-11 19:32:49 +02:00
HGLOBAL hDlgTmpl ;
LPVOID ptr ;
BOOL bRet ;
PageSetupDataW * pdw ;
PRINTDLGW pdlg ;
if ( TRACE_ON ( commdlg ) ) {
char flagstr [ 1000 ] = " " ;
struct pd_flags * pflag = psd_flags ;
for ( ; pflag - > name ; pflag + + ) {
if ( setupdlg - > Flags & pflag - > flag ) {
strcat ( flagstr , pflag - > name ) ;
strcat ( flagstr , " | " ) ;
}
}
2002-11-22 00:55:10 +01:00
TRACE ( " (%p): hwndOwner = %p, hDevMode = %p, hDevNames = %p \n "
" hinst %p, flags %08lx (%s) \n " ,
2002-04-11 19:32:49 +02:00
setupdlg , setupdlg - > hwndOwner , setupdlg - > hDevMode ,
2002-06-01 01:06:46 +02:00
setupdlg - > hDevNames ,
2002-04-11 19:32:49 +02:00
setupdlg - > hInstance , setupdlg - > Flags , flagstr ) ;
}
/* First get default printer data, we need it right after that. */
memset ( & pdlg , 0 , sizeof ( pdlg ) ) ;
pdlg . lStructSize = sizeof ( pdlg ) ;
pdlg . Flags = PD_RETURNDEFAULT ;
bRet = PrintDlgW ( & pdlg ) ;
if ( ! bRet ) return FALSE ;
/* short cut exit, just return default values */
if ( setupdlg - > Flags & PSD_RETURNDEFAULT ) {
const WCHAR a4 [ ] = { ' A ' , ' 4 ' , 0 } ;
setupdlg - > hDevMode = pdlg . hDevMode ;
setupdlg - > hDevNames = pdlg . hDevNames ;
/* FIXME: Just return "A4" for now. */
PRINTDLG_PaperSizeW ( & pdlg , a4 , & setupdlg - > ptPaperSize ) ;
setupdlg - > ptPaperSize . x = _c_10mm2size ( ( LPPAGESETUPDLGA ) setupdlg , setupdlg - > ptPaperSize . x ) ;
setupdlg - > ptPaperSize . y = _c_10mm2size ( ( LPPAGESETUPDLGA ) setupdlg , setupdlg - > ptPaperSize . y ) ;
return TRUE ;
}
hDlgTmpl = PRINTDLG_GetPGSTemplateW ( setupdlg ) ;
if ( ! hDlgTmpl ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
return FALSE ;
}
ptr = LockResource ( hDlgTmpl ) ;
if ( ! ptr ) {
COMDLG32_SetCommDlgExtendedError ( CDERR_LOADRESFAILURE ) ;
2000-05-27 00:26:06 +02:00
return FALSE ;
2002-04-11 19:32:49 +02:00
}
pdw = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( * pdw ) ) ;
pdw - > dlga = setupdlg ;
memcpy ( & pdw - > pdlg , & pdlg , sizeof ( pdlg ) ) ;
bRet = ( 0 < DialogBoxIndirectParamW (
setupdlg - > hInstance ,
ptr ,
setupdlg - > hwndOwner ,
PageDlgProcW ,
( LPARAM ) pdw )
) ;
return bRet ;
2000-05-27 00:26:06 +02:00
}
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
/***********************************************************************
2001-07-02 21:59:40 +02:00
* PrintDlgProc ( COMMDLG .21 )
1999-02-28 21:05:11 +01:00
*/
2002-10-31 02:04:39 +01:00
BOOL16 CALLBACK PrintDlgProc16 ( HWND16 hDlg16 , UINT16 uMsg , WPARAM16 wParam ,
1999-02-28 21:05:11 +01:00
LPARAM lParam )
{
2002-09-06 22:40:42 +02:00
HWND hDlg = HWND_32 ( hDlg16 ) ;
2001-01-02 23:26:09 +01:00
PRINT_PTRA * PrintStructures ;
2002-10-31 02:04:39 +01:00
BOOL16 res = FALSE ;
2001-01-02 23:26:09 +01:00
if ( uMsg ! = WM_INITDIALOG ) {
2002-06-13 23:41:08 +02:00
PrintStructures = ( PRINT_PTRA * ) GetPropA ( hDlg , " __WINE_PRINTDLGDATA " ) ;
2001-01-02 23:26:09 +01:00
if ( ! PrintStructures )
return FALSE ;
} else {
PrintStructures = ( PRINT_PTRA * ) lParam ;
2002-11-22 00:55:10 +01:00
SetPropA ( hDlg , " __WINE_PRINTDLGDATA " , PrintStructures ) ;
2001-01-02 23:26:09 +01:00
res = PRINTDLG_WMInitDialog16 ( hDlg , wParam , PrintStructures ) ;
if ( PrintStructures - > dlg . lpPrintDlg16 - > Flags & PD_ENABLEPRINTHOOK ) {
res = CallWindowProc16 (
( WNDPROC16 ) PrintStructures - > dlg . lpPrintDlg16 - > lpfnPrintHook ,
2002-09-06 22:40:42 +02:00
hDlg16 , uMsg , wParam , ( LPARAM ) PrintStructures - > dlg . lpPrintDlg16
2001-01-02 23:26:09 +01:00
) ;
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
}
2002-06-01 01:06:46 +02:00
2001-01-02 23:26:09 +01:00
if ( PrintStructures - > dlg . lpPrintDlg16 - > Flags & PD_ENABLEPRINTHOOK ) {
res = CallWindowProc16 (
( WNDPROC16 ) PrintStructures - > dlg . lpPrintDlg16 - > lpfnPrintHook ,
2002-09-06 22:40:42 +02:00
hDlg16 , uMsg , wParam , lParam
2001-01-02 23:26:09 +01:00
) ;
2001-02-26 23:32:35 +01:00
if ( LOWORD ( res ) ) return res ;
2001-01-02 23:26:09 +01:00
}
switch ( uMsg ) {
2001-05-05 02:45:45 +02:00
case WM_COMMAND : {
/* We need to map those for the 32bit window procedure, compare
* with 32 Ato16 mapper in winproc . c
*/
2002-04-11 19:32:49 +02:00
return PRINTDLG_WMCommandA (
2001-05-05 02:45:45 +02:00
hDlg ,
MAKEWPARAM ( wParam , HIWORD ( lParam ) ) ,
LOWORD ( lParam ) ,
PrintStructures
) ;
}
2001-01-02 23:26:09 +01:00
case WM_DESTROY :
DestroyIcon ( PrintStructures - > hCollateIcon ) ;
DestroyIcon ( PrintStructures - > hNoCollateIcon ) ;
/* FIXME: don't forget to delete the paper orientation icons here! */
return FALSE ;
2002-06-01 01:06:46 +02:00
}
2001-01-02 23:26:09 +01:00
return res ;
1999-02-28 21:05:11 +01:00
}
/***********************************************************************
2001-07-02 21:59:40 +02:00
* PrintSetupDlgProc ( COMMDLG .22 )
1999-02-28 21:05:11 +01:00
*/
2002-10-31 02:04:39 +01:00
BOOL16 CALLBACK PrintSetupDlgProc16 ( HWND16 hWnd16 , UINT16 wMsg , WPARAM16 wParam ,
2000-05-27 00:26:06 +02:00
LPARAM lParam )
1999-02-28 21:05:11 +01:00
{
2002-09-06 22:40:42 +02:00
HWND hWnd = HWND_32 ( hWnd16 ) ;
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
/***********************************************************************
2001-06-19 05:34:07 +02:00
* PrintDlgExA ( COMDLG32 . @ )
2000-06-02 21:36:53 +02:00
*/
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 ;
}
/***********************************************************************
2001-06-19 05:34:07 +02:00
* PrintDlgExW ( COMDLG32 . @ )
2000-06-02 21:36:53 +02:00
*/
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 ;
}