MainFrm.h
上传用户:lin85885
上传日期:2013-04-27
资源大小:796k
文件大小:2k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__BDDF9568_C67B_11D3_91F5_0000E83E7EBA__INCLUDED_)
  5. #define AFX_MAINFRM_H__BDDF9568_C67B_11D3_91F5_0000E83E7EBA__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ChildView.h"
  10. class CMainFrame : public CFrameWnd
  11. {
  12. public:
  13. CMainFrame();
  14. protected: 
  15. DECLARE_DYNAMIC(CMainFrame)
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CMainFrame();
  29. #ifdef _DEBUG
  30. virtual void AssertValid() const;
  31. virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33. protected:  // control bar embedded members
  34. CToolBar    m_wndToolBar;
  35. CToolBar m_wndInteractLeft;
  36. CChildView m_wndView;
  37. public:
  38. CStatusBar m_wndStatusBar;
  39. CToolBar m_wndInteractRight;
  40. CProgressCtrl m_Progress;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMainFrame)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. afx_msg void OnSetFocus(CWnd *pOldWnd);
  46. afx_msg void OnSize(UINT nType, int cx, int cy);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_MAINFRM_H__BDDF9568_C67B_11D3_91F5_0000E83E7EBA__INCLUDED_)