home *** CD-ROM | disk | FTP | other *** search
- // ModlView.h : interface of the CModalView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CModalView : public CView
- {
- protected: // create from serialization only
- CModalView();
- DECLARE_DYNCREATE(CModalView)
-
- // Attributes
- public:
- CModalDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CModalView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CModalView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CModalView)
- afx_msg void OnModifyShowdialog();
- afx_msg void OnModifyShowlistdialog();
- afx_msg void OnModifyShowlistitemdatadialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in ModalView.cpp
- inline CModalDoc* CModalView::GetDocument()
- { return (CModalDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-