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

CAD

开发平台:

Visual C++

  1. // CIRCLE.h: interface for the CCIRCLE class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CIRCLE_H__D363B8D7_DE45_4384_B5C6_3C65EA78EDC1__INCLUDED_)
  5. #define AFX_CIRCLE_H__D363B8D7_DE45_4384_B5C6_3C65EA78EDC1__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CCIRCLE  
  10. {
  11. class circle_data
  12. {
  13. public:
  14. circle_data(CPoint certrepoint,double circleR,int m_line_style,int m_line_width,COLORREF m_line_color);
  15. virtual ~circle_data();
  16. public:
  17. CPoint     certrepoint;
  18. double circleR;
  19. int m_line_style;
  20. int m_line_width;
  21. COLORREF m_line_color;
  22. };
  23. public:
  24. CCIRCLE();
  25. virtual ~CCIRCLE();
  26. void circle_drawAttribution(CDC* pDC);
  27. void circle_drawMove(CPoint m_pointorg,CPoint m_pointfal,CDC*pDC,int m_line_style,int m_line_width,COLORREF m_line_color);
  28. void circle_store(CPoint m_pointorg,CPoint m_pointfal,int m_line_style,int m_line_width,COLORREF m_line_color);
  29. void circle_catchcertre(CPoint point,CRgn *prgn,CDC *pDC);
  30. void circle_fillpoint(CPoint point,CDC* pDC);
  31. void circle_searchcertre(CPoint point,CPoint *pnearpoint,CRgn *prgn);
  32. bool circle_searchcircle(CPoint point,int *pNum,int *pnStyle,CDC *pmdc);
  33. bool circle_editselect(CPoint point,CPoint*ppointorg,int Num);
  34. void circle_editmove(CPoint pointorg,CPoint pointfal,int Num,CDC* pDC);
  35. void circle_editmovestore(CPoint pointorg,CPoint pointfal,int Num);
  36. void circle_del(int Num);
  37. public:
  38. CPtrArray m_circle_save;
  39. };
  40. #endif // !defined(AFX_CIRCLE_H__D363B8D7_DE45_4384_B5C6_3C65EA78EDC1__INCLUDED_)