// XTPChartRadarPointSeriesView.h // // This file is a part of the XTREME TOOLKIT PRO MFC class library. // (c)1998-2012 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN // CONSENT OF CODEJOCK SOFTWARE. // // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A // SINGLE COMPUTER. // // CONTACT INFORMATION: // support@codejock.com // http://www.codejock.com // ///////////////////////////////////////////////////////////////////////////// //{{AFX_CODEJOCK_PRIVATE #if !defined(__XTPCHARTRADARPOINTSERIESVIEW_H__) #define __XTPCHARTRADARPOINTSERIESVIEW_H__ //}}AFX_CODEJOCK_PRIVATE #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 class CXTPChartSeriesView; class CXTPChartMarker; //=========================================================================== // Summary: // This class represents the view of a point series ,which is a kind of // CXTPChartSeriesView. // Remarks: //=========================================================================== class _XTP_EXT_CLASS CXTPChartRadarPointSeriesView : public CXTPChartRadarDiagramSeriesView { public: //----------------------------------------------------------------------- // Summary: // Constructs a CXTPChartPointSeriesView object. // Parameters: // pSeries - A pointer to the chart series object. // pDiagramView - A pointer to the diagram view object. // Remarks: //----------------------------------------------------------------------- CXTPChartRadarPointSeriesView(CXTPChartSeries* pSeries, CXTPChartDiagramView* pDiagramView); protected: //----------------------------------------------------------------------- // Summary: // Call this function to create view of the series points. // Parameters: // pDC - A pointer to chart device context. // pPoint - A pointer to the chart series point object. // Returns: // A pointer to CXTPChartPointSeriesPointView object which is a kind of // CXTPChartSeriesPointView object. // Remarks: //----------------------------------------------------------------------- CXTPChartSeriesPointView* CreateSeriesPointView(CXTPChartDeviceContext* pDC, CXTPChartSeriesPoint* pPoint, CXTPChartElementView* pParentView); public: virtual CXTPChartDeviceCommand* CreateLegendDeviceCommand(CXTPChartDeviceContext* pDC, CRect rcBounds); }; //=========================================================================== // Summary: // This class represents the view of a point series point ,which is a kind of // CXTPChartSeriesPointView. // Remarks: //=========================================================================== class _XTP_EXT_CLASS CXTPChartRadarPointSeriesPointView : public CXTPChartSeriesPointView { public: //----------------------------------------------------------------------- // Summary: // Constructs a CXTPChartPointSeriesPointView object. // Parameters: // pPoint - A pointer to the chart series point. // Remarks: //----------------------------------------------------------------------- CXTPChartRadarPointSeriesPointView(CXTPChartSeriesPoint* pPoint, CXTPChartElementView* pParentView); public: //------------------------------------------------------------------------- // Summary: // This function create a CXTPChartDeviceCommand object, this object // represents the rendering of the series point. // Parameters: // pDC - Pointer to a CXTPChartDeviceContext object. // Returns: // Returns CXTPChartDeviceCommand object, this object handles // the rendering of an element in the chart.Here it handles // the drawing of the series point. // Remarks: // See Also: //------------------------------------------------------------------------- CXTPChartDeviceCommand* CreateDeviceCommand(CXTPChartDeviceContext* pDC); CXTPChartDeviceCommand* CreateLegendDeviceCommand(CXTPChartDeviceContext* pDC, CRect rcBounds); public: //------------------------------------------------------------------------- // Summary: // Call this function to get the screen point from the series point. // Returns: // Returns a screen point object CXTPChartPointF. // Remarks: // See Also: //------------------------------------------------------------------------- CXTPChartPointF GetScreenPoint() const; }; #endif //#if !defined(__XTPCHARTRADARPOINTSERIESVIEW_H__)