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