MainFrm.h
上传用户:wangdan
上传日期:2022-06-30
资源大小:739k
文件大小:2k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__98BEE19C_D252_4AB2_9C74_ABC8D7AD9049__INCLUDED_)
  5. #define AFX_MAINFRM_H__98BEE19C_D252_4AB2_9C74_ABC8D7AD9049__INCLUDED_
  6. #include "Test1View.h"
  7. #include "MySp.h"
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. class CControlWnd;
  12. class CProjectView;
  13. class CXProject;
  14. class CYProject;
  15. class CZProject;
  16. class CMainFrame : public CFrameWnd
  17. {
  18. protected: // create from serialization only
  19. CMainFrame();
  20. DECLARE_DYNCREATE(CMainFrame)
  21. // Attributes
  22. public:
  23. CTest1View *m_pView; //三维空间窗口
  24. CControlWnd *m_pCtrlWnd; //控制台窗口
  25. CProjectView *m_pProView; //任意三维投影窗口
  26. CXProject *m_pXPro; //x投影区
  27. CYProject *m_pYPro; //Y投影区
  28. CZProject *m_pZPro; //Z投影区
  29. MySp m_Sp1,m_Sp2,m_Sp3,m_Sp4;
  30. CFont m_13Font;
  31. CProgressCtrl m_Progress;
  32. BOOL m_bCreat;       //进度条是否已创建 
  33. // Operations
  34. public:
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CMainFrame)
  38. public:
  39. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  40. protected:
  41. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. void InvalidateAllWnd();
  46. void PrecessReadFile(WPARAM wP, LPARAM lp);
  47. void CreateProcess();
  48. void CreateFont();
  49. void GetWndPointer();
  50. virtual ~CMainFrame();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:  // control bar embedded members
  56. CStatusBar  m_wndStatusBar;
  57. CToolBar    m_wndToolBar;
  58. // Generated message map functions
  59. protected:
  60. //{{AFX_MSG(CMainFrame)
  61. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  62. afx_msg void OnSize(UINT nType, int cx, int cy);
  63. afx_msg void OnClose();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. /////////////////////////////////////////////////////////////////////////////
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_MAINFRM_H__98BEE19C_D252_4AB2_9C74_ABC8D7AD9049__INCLUDED_)