Ellipse.h
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:3k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // Ellipse.h: interface for the CEllipse class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ELLIPSE_H__D4BD362E_2010_4806_97A1_98C579C3C57D__INCLUDED_)
  5. #define AFX_ELLIPSE_H__D4BD362E_2010_4806_97A1_98C579C3C57D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Shape.h"
  10. class CEllipse : public CShape  
  11. {
  12. DECLARE_SERIAL(CEllipse)
  13. /////////////////////////////////////
  14. public:
  15. public:
  16. CEllipse();          
  17.     CEllipse(COLORREF color,int penWidth,float angle);
  18. CEllipse(CEllipse * const pEllipse);
  19.     ~CEllipse(); 
  20. public:
  21. //virtual operations
  22. virtual void Serialize( CArchive& );
  23. virtual void SetPtData(CArray<float,float>& flArrayX,CArray<float,float>& flArrayY);
  24. virtual void GetPtData(CArray<float,float>& flArrayX,CArray<float,float>& flArrayY);
  25. virtual void Draw(CDC *pDC,COLORREF color,COLORREF fillColor,int penWidth);
  26. virtual void DrawPoints(CDC *pDC,COLORREF color);
  27. virtual void DrawPointsCutTo(CDC *pDC,COLORREF color,CFlRect m_rectFrom,CRect m_rectTo);
  28. virtual int IsPointinRegion(POINT point);
  29. virtual void CreatGraph(CArray<CPoint,CPoint>& ptArray,int nPenWidth,COLORREF color,COLORREF fillColor,SHAPE_FILLSTYLE nStyle=_shape_none_fill);
  30. virtual void CreatGraph(CArray<float,float>& flArrayX,CArray<float,float>& flArrayY,int nPenWidth,COLORREF color,COLORREF fillColor,SHAPE_FILLSTYLE nStyle=_shape_none_fill);
  31. virtual void DrawCutToRect(CDC *pDC,COLORREF color,COLORREF fillColor,int penWidth,CFlRect m_rectFrom,CRect m_rectTo);
  32. virtual void Move(CDC *pDC,float stepx,float stepy);
  33. virtual void PartMove(CDC *pDC,float PrevX,float PrevY,float CurX,float CurY);
  34. virtual void Rotate(CDC *pDC,float CX,float CY,float flAngle);
  35. virtual void Magnify(CDC *pDC,float CX,float CY,float flScale);
  36. //在矩形内上下反转
  37. virtual void TopToBottom(CDC* pDC,CRect rect);
  38. //在矩形内左右反转
  39. virtual void LeftToRight(CDC* pDC,CRect rect);
  40. virtual CShape* GetCopy();
  41. virtual void ExPort(FILE* outStream);//增加导出txt功能时用
  42. virtual void ImPort(FILE* InStream);
  43. virtual CString GetNameString();
  44. virtual GRAPH_SHAPE_TYPE GetShapeKind(){
  45. return _shape_Ellipse;
  46. }
  47. virtual void RefreshData(bool bRefresh);
  48. virtual int IsInRect(CRect rect);
  49. virtual CRect GetBoundaryRect();
  50. virtual CPoint GetCenterPoint();
  51. virtual int GetPtState(float flx,float fly,float flRate);
  52. virtual float GetSelectLineRate();
  53. //Begin of deletion
  54. //For Project GraphSoft,delete by FNST)Xiagongli 2004.3.31
  55. //virtual int GetPointNum(){
  56. // return 4;
  57. //}
  58. //end of deletion
  59. protected: 
  60. void BreEllipse(CDC *pDC,float xc ,float yc,float fla,float flb,COLORREF color,double angle=0,int nPenWidth=1);
  61. void FillEllipse(CDC *pDC,float xc ,float yc,float fla,float flb,double angle);
  62. ////////////////////
  63. private:
  64. //save(start)
  65. float m_fla;
  66. float m_flb;
  67. float m_flCenterx;
  68. float m_flCentery;
  69. //save(end)
  70. //not save(start)
  71. //temp(start)
  72. float m_flaTemp;
  73. float m_flbTemp;
  74. float m_flCenterxTemp;
  75. float m_flCenteryTemp;
  76. float m_flAnglePrev;
  77. //temp(end)
  78. //not save(end)
  79. };
  80. #endif // !defined(AFX_ELLIPSE_H__D4BD362E_2010_4806_97A1_98C579C3C57D__INCLUDED_)