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

  1. // SnapView.h : interface of the CSnapView class
  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.  
  15. class CSnapView : public CFormView
  16. {
  17. protected: // create from serialization only
  18.     CSnapView();
  19.     DECLARE_DYNCREATE(CSnapView)
  20.  
  21. public:
  22.     //{{AFX_DATA(CSnapView)
  23.         // NOTE: the ClassWizard will add data members here
  24.     //}}AFX_DATA
  25.  
  26. // Attributes
  27. public:
  28.     CSnapDoc* GetDocument();
  29.  
  30. // Operations
  31. public:
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CSnapView)
  36.     public:
  37.     virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  38.     virtual void OnInitialUpdate();
  39.     protected:
  40.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44. public:
  45.     virtual ~CSnapView();
  46. #ifdef _DEBUG
  47.     virtual void AssertValid() const;
  48.     virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50.  
  51. protected:
  52.     // tracks whether parent frame has already been sized.
  53.     BOOL m_bSizedBefore;
  54.  
  55.     // property sheet is wired to MDI child frame and is not displayed
  56.     CPropertySheet* m_pPropSheet;
  57.  
  58.     // one page for each menu so we can initialize controls
  59.     // using OnInitDialog
  60.     CPropertyPage* m_pPageBkfst;
  61.     CPropertyPage* m_pPageLunch;
  62.     CPropertyPage* m_pPageDinner;
  63.  
  64.     afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  65.     afx_msg void OnDraw(CDC* pDC);
  66.  
  67. // Generated message map functions
  68. protected:
  69.     //{{AFX_MSG(CSnapView)
  70.     afx_msg void OnSize(UINT nType, int cx, int cy);
  71.     //}}AFX_MSG
  72.     DECLARE_MESSAGE_MAP()
  73. };
  74.  
  75. #ifndef _DEBUG  // debug version in SnapView.cpp
  76. inline CSnapDoc* CSnapView::GetDocument()
  77.    { return (CSnapDoc*) m_pDocument; }
  78. #endif
  79.  
  80. /////////////////////////////////////////////////////////////////////////////
  81.