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

3D图形编程

开发平台:

Visual C++

  1. #if !defined(AFX_PROJECTVIEW_H__3BBD1605_8929_46C7_8F1C_C4C15093C7D3__INCLUDED_)
  2. #define AFX_PROJECTVIEW_H__3BBD1605_8929_46C7_8F1C_C4C15093C7D3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ProjectView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CProjectView view
  10. class CMainFrame;
  11. class CProjectView : public CView
  12. {
  13. protected:
  14. CProjectView();           // protected constructor used by dynamic creation
  15. DECLARE_DYNCREATE(CProjectView)
  16. CMainFrame *m_pfr;
  17. CString m_ProName;
  18. CClientDC *m_pDC;
  19. bool m_bShowBmp;
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. void ShowBmpMessageFun(LPARAM lp, WPARAM wp);
  25. void ShowSelArear(HBITMAP hBmp, CDC *pDC);
  26. void InvalidatethisRect();
  27. void AngleChanging(LPARAM lp, WPARAM wp);
  28. CString GetAngle(int Angle);
  29. void DrawCoordinate(CDC *pDC);
  30. void DrawRect(CDC *pDC);
  31. int m_WitchPro;  //确定画哪种投影的参数0为什么也不画,1画X投影,2画Y投影,3画Z投影,4画当前位置投影
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CProjectView)
  35. public:
  36. virtual void OnInitialUpdate();
  37. protected:
  38. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. virtual ~CProjectView();
  43. #ifdef _DEBUG
  44. virtual void AssertValid() const;
  45. virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CProjectView)
  50. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  51. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_PROJECTVIEW_H__3BBD1605_8929_46C7_8F1C_C4C15093C7D3__INCLUDED_)