Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
801 B

#ifndef _PGSETUP_H_
#define _PGSETUP_H_
/***************************************************************************/
class CPageSetupData
{
public:
VOID UpdateControls(HWND hDlg);
static VOID UpdateValue(HWND hDlg, int nIDDlgItem, UINT *pnResult);
VOID CalculateImageRect(const CSize &PhysicalPageSize, CPoint &PhysicalOrigin, CSize &PhysicalImageSize);
static UINT_PTR APIENTRY PageSetupHook(HWND, UINT, WPARAM, LPARAM);
static UINT_PTR APIENTRY PagePaintHook(HWND, UINT, WPARAM, LPARAM);
public:
BOOL bCenterHorizontally;
BOOL bCenterVertically;
BOOL bScaleFitTo;
UINT nAdjustToPercent;
UINT nFitToPagesWide;
UINT nFitToPagesTall;
double fPhysicalImageWidth;
double fPhysicalImageHeight;
};
#endif //_PGSETUP_H_