MainFrm.h
上传用户:zbjingming
上传日期:2010-01-02
资源大小:2436k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //********************************************
  2. // CMainFram.h
  3. // Main window
  4. //********************************************
  5. // feigz@ox.ios.ac.cn
  6. // Created :
  7. // Modified
  8. //********************************************
  9. #if !defined(AFX_MAINFRM_H__06A3562D_72E5_11D1_A6C2_00A0242C0A32__INCLUDED_)
  10. #define AFX_MAINFRM_H__06A3562D_72E5_11D1_A6C2_00A0242C0A32__INCLUDED_
  11. #if _MSC_VER >= 1000
  12. #pragma once
  13. #endif // _MSC_VER >= 1000
  14. class CMainFrame : public CFrameWnd
  15. {
  16. DECLARE_DYNAMIC(CMainFrame)
  17. public:
  18. CMainFrame();
  19. // Attributes
  20. public:
  21. CSplitterWnd m_wndSplitter;
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CMainFrame)
  27. public:
  28. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29. protected:
  30. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CMainFrame();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:  // control bar embedded members
  40. CStatusBar  m_wndStatusBar;
  41. CToolBar    m_wndToolBar;
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CMainFrame)
  45. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46. afx_msg void OnPaint();
  47. afx_msg void OnLookat();
  48. afx_msg void OnFileSaveAs();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_MAINFRM_H__06A3562D_72E5_11D1_A6C2_00A0242C0A32__INCLUDED_)