home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / wordpad / pageset.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  42 lines

  1. // pageset.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CPageSetupDlg dialog
  15.  
  16. class CPageSetupDlg : public CCSDialog
  17. {
  18. // Construction
  19. public:
  20.     CPageSetupDlg(CWnd* pParent = NULL);    // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CPageSetupDlg)
  24.     enum { IDD = IDD_PAGE_SETUP_DIALOG };
  25.     int     m_nTopMargin;
  26.     int     m_nRightMargin;
  27.     int     m_nLeftMargin;
  28.     int     m_nBottomMargin;
  29.     //}}AFX_DATA
  30.  
  31. // Implementation
  32.     static const DWORD m_nHelpIDs[];
  33.     virtual const DWORD* GetHelpIDs() {return m_nHelpIDs;}
  34. protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG(CPageSetupDlg)
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.