Enabling XP Print Dialog for Windows Enabling XP Print Progress Dialog Enabling XP Page Setup Dialog Fixing nsPrintPreviewContext to use nsIPrintPreviewContext Bug 113917 r=dcone sr=attinasi git-svn-id: svn://10.0.0.236/trunk@111213 18797224-902f-48f8-a5cc-f745e15eee43
76 lines
2.1 KiB
C++
76 lines
2.1 KiB
C++
#if !defined(AFX_PRINTSETUPDIALOG_H__ABEFEDA3_8AFA_4D77_9E89_646E9E5DD93C__INCLUDED_)
|
|
#define AFX_PRINTSETUPDIALOG_H__ABEFEDA3_8AFA_4D77_9E89_646E9E5DD93C__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// PrintSetupDialog.h : header file
|
|
//
|
|
class nsIPrintSettings;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPrintSetupDialog dialog
|
|
|
|
class CPrintSetupDialog : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CPrintSetupDialog(nsIPrintSettings* aPrintSettings, CWnd* pParent = NULL); // standard constructor
|
|
void SetPrintSettings(nsIPrintSettings* aPrintSettings);
|
|
void GetPaperSizeInfo(short& aType, double& aWidth, double& aHeight);
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CPrintSetupDialog)
|
|
enum { IDD = IDD_PRINTSETUP_DIALOG };
|
|
CString m_BottomMargin;
|
|
CString m_LeftMargin;
|
|
CString m_RightMargin;
|
|
CString m_TopMargin;
|
|
int m_Scaling;
|
|
BOOL m_PrintBGImages;
|
|
BOOL m_PrintBGColors;
|
|
CString m_PaperSize;
|
|
double m_PaperHeight;
|
|
double m_PaperWidth;
|
|
int m_IsInches;
|
|
CString m_FooterLeft;
|
|
CString m_FooterMiddle;
|
|
CString m_FooterRight;
|
|
CString m_HeaderLeft;
|
|
CString m_HeaderMiddle;
|
|
CString m_HeaderRight;
|
|
//}}AFX_DATA
|
|
|
|
int m_PaperSizeInx;
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CPrintSetupDialog)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
nsIPrintSettings* m_PrintSettings;
|
|
|
|
void EnableUserDefineControls(BOOL aEnable);
|
|
int GetPaperSizeIndexFromData(short aType, double aW, double aH);
|
|
int GetPaperSizeIndex(const CString& aStr);
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CPrintSetupDialog)
|
|
virtual void OnOK();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnCustomdrawScale(NMHDR* pNMHDR, LRESULT* pResult);
|
|
afx_msg void OnKillfocusScaleTxt();
|
|
afx_msg void OnSelchangePaperSizeCbx();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_PRINTSETUPDIALOG_H__ABEFEDA3_8AFA_4D77_9E89_646E9E5DD93C__INCLUDED_)
|