www.pudn.com > howtofft_src.zip > MainFrm.h


// MainFrm.h : interface of the CMainFrame class 
// 
 
 
#pragma once 
 
#include "ChildView.h" 
class CMainFrame : public CFrameWnd 
{ 
	 
public: 
	CMainFrame(); 
protected:  
	DECLARE_DYNAMIC(CMainFrame) 
 
// Attributes 
public: 
 
// Operations 
public: 
 
// Overrides 
public: 
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs); 
	virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo); 
 
// Implementation 
public: 
	virtual ~CMainFrame(); 
#ifdef _DEBUG 
	virtual void AssertValid() const; 
	virtual void Dump(CDumpContext& dc) const; 
#endif 
 
protected:  // control bar embedded members 
	CStatusBar  m_wndStatusBar; 
	CToolBar    m_wndToolBar; 
	CChildView    m_wndView; 
 
// Generated message map functions 
protected: 
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); 
	afx_msg void OnSetFocus(CWnd *pOldWnd); 
	DECLARE_MESSAGE_MAP() 
};