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

CAD

开发平台:

Visual C++

  1. // ELLIPS.h: interface for the CELLIPS class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ELLIPS_H__E2534E0F_041D_47F1_B5AA_48DD5186EE6F__INCLUDED_)
  5. #define AFX_ELLIPS_H__E2534E0F_041D_47F1_B5AA_48DD5186EE6F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CELLIPS  
  10. {
  11. class  ellips_data
  12. {
  13. public:
  14. ellips_data(CPoint certrepoint,CPoint bottomright,int m_line_style,int m_line_width,COLORREF m_line_color);
  15. virtual ~ellips_data();
  16. public:
  17. CPoint certrepoint;
  18. CPoint bottomright;
  19. int m_line_style;
  20. int m_line_width;
  21. COLORREF m_line_color;
  22. };
  23. public:
  24. CPtrArray m_ellips_save;
  25. public:
  26. CELLIPS();
  27. virtual ~CELLIPS();
  28. void ellips_drawAttribution(CDC*pDC);
  29. void ellips_drawMove(CPoint m_pointorg,CPoint m_pointfal,CDC *pDC,int m_line_style,int m_line_width,COLORREF m_line_color);
  30. void ellips_store(CPoint m_pointorg,CPoint m_pointfal,int m_line_style,int m_line_width,COLORREF m_line_color);
  31. void ellips_catchcertre(CPoint point,CRgn *prgn,CDC *pDC);
  32. void ellips_fillpoint(CPoint point,CDC *pDC);
  33. void ellips_searchcertre(CPoint point,CPoint *pnearpoint,CRgn *prgn);
  34. bool ellips_searchellips(CPoint point,int *pNum,int *pnStyle,CDC* pmdc);
  35. bool ellips_editselect(CPoint point,CPoint *ppointorg,int Num);
  36. void ellips_editmove(CPoint pointorg,CPoint pointfal,int Num,CDC *pDC);
  37. void ellips_editmovestore(CPoint pointorg,CPoint pointfal,int Num);
  38. void ellips_del(int Num);
  39. };
  40. #endif // !defined(AFX_ELLIPS_H__E2534E0F_041D_47F1_B5AA_48DD5186EE6F__INCLUDED_)