home *** CD-ROM | disk | FTP | other *** search
- // mainfrm.h : interface of the CMainFrame class
- //
- #ifndef __AFXEXT_H__
- #include <afxext.h> // for access to CToolBar and CStatusBar
- #endif
-
- class CMainFrame : public CMDIFrameWnd
- {
- DECLARE_DYNAMIC(CMainFrame)
- public:
- CMainFrame();
-
- // Implementation
- public:
- virtual ~CMainFrame();
-
- protected: // control bar embedded members
- CStatusBar m_wndStatusBar;
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMainFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
- afx_msg BOOL OnQueryNewPalette();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-