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

  1. // MaskView.h : interface of the CMaskView 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. #include "msmask.h"
  14. #include "rdc.h"
  15.  
  16. class CMaskView : public CView
  17. {
  18. protected: // create from serialization only
  19.     CMaskView();
  20.     DECLARE_DYNCREATE(CMaskView)
  21.  
  22. // Attributes
  23. public:
  24.     CString m_boundCol;
  25.     CMDIBindDoc* GetDocument();
  26.  
  27. // Operations
  28. public:
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CMaskView)
  33.     public:
  34.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  35.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  36.     protected:
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. public:
  41.     virtual ~CMaskView();
  42. #ifdef _DEBUG
  43.     virtual void AssertValid() const;
  44.     virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46.  
  47. protected:
  48.     CMSMask* m_pMaskCtl;
  49.     virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint );
  50.  
  51. // Generated message map functions
  52. protected:
  53.     //{{AFX_MSG(CMaskView)
  54.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  55.     afx_msg void OnSize(UINT nType, int cx, int cy);
  56.     afx_msg void OnDestroy();
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.  
  61. #ifndef _DEBUG  // debug version in MaskView.cpp
  62. inline CMDIBindDoc* CMaskView::GetDocument()
  63.    { return (CMDIBindDoc*) m_pDocument; }
  64. #endif
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67.