RECTANGE.h
上传用户:shangwu01
上传日期:2013-04-22
资源大小:707k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // RECTANGE.h: interface for the CRECTANGE class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_RECTANGE_H__D72692D4_F5FF_4370_A8D7_67784ADF495E__INCLUDED_)
  5. #define AFX_RECTANGE_H__D72692D4_F5FF_4370_A8D7_67784ADF495E__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CRECTANGE  
  10. {
  11. public:
  12. CRECTANGE();
  13. virtual ~CRECTANGE();
  14. class rectange_data
  15. {
  16. public:
  17. rectange_data(CPoint m_pointorg,CPoint m_pointfal,int m_line_style,int m_line_width,COLORREF m_line_color);
  18. virtual ~rectange_data();
  19. public:
  20. CPoint m_pointorg;
  21. CPoint m_pointfal;
  22. int m_line_style;
  23. int m_line_width;
  24. COLORREF m_line_color;
  25. };
  26. public:
  27. CPtrArray m_rectange_save;
  28. public:
  29. void rectange_drawMove(CPoint m_pointorg,CPoint m_pointfal,CDC *pDC,int m_line_style,int m_line_width,COLORREF m_line_color);
  30. void rectange_drawAttribution(CDC *pDC);
  31. void rectange_store(CPoint m_pointorg,CPoint m_pointfal,int m_line_style,int m_line_width,COLORREF m_line_color);
  32. };
  33. #endif // !defined(AFX_RECTANGE_H__D72692D4_F5FF_4370_A8D7_67784ADF495E__INCLUDED_)