You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
4.6 KiB
C++
133 lines
4.6 KiB
C++
// XTPChartContentView.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(__XTPCHARTCONTENTVIEW_H__)
|
|
#define __XTPCHARTCONTENTVIEW_H__
|
|
//}}AFX_CODEJOCK_PRIVATE
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
class CXTPChartDeviceContext;
|
|
class CXTPChartDiagram;
|
|
class CXTPChartTitleCollection;
|
|
class CXTPChartElementView;
|
|
class CXTPChartSeriesCollection;
|
|
class CXTPChartLegend;
|
|
class CXTPChartPanelCollection;
|
|
class CXTPChartSeries;
|
|
class CXTPChartAppearance;
|
|
class CXTPChartLegendView;
|
|
class CXTPPropExchange;
|
|
class CXTPMarkupContext;
|
|
class CXTPChartContentView;
|
|
class CXTPChartDiagramView;
|
|
class CXTPChartBorder;
|
|
class CXTPChartDeviceCommand;
|
|
|
|
//===========================================================================
|
|
// Summary:
|
|
// This class represents the view of the chart content, which is a kind of
|
|
// CXTPChartElementView.
|
|
// Remarks:
|
|
//===========================================================================
|
|
class _XTP_EXT_CLASS CXTPChartContentView : public CXTPChartElementView
|
|
{
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Constructs a CXTPChartContentView object.
|
|
// Parameters:
|
|
// pContent - Pointer to chart content object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartContentView(CXTPChartContainer* pContainer, CXTPChartContent* pContent);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to create various child view objects, which
|
|
// constitutes the view of the content.
|
|
// Parameters:
|
|
// pDC - Pointer to chart device context.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
void CreateView(CXTPChartDeviceContext* pDC);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to calculate the view/layout of the content
|
|
// with respect to a bounding rectangle.
|
|
// Parameters:
|
|
// pDC - Pointer to chart device context.
|
|
// rcBounds - The bounding rectangle.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
void CalculateView(CXTPChartDeviceContext* pDC, CRect rcBounds);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get the legend view object associated with this
|
|
// object.
|
|
// Returns:
|
|
// Pointer to chart legend view object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartLegendView* GetLegendView() const;
|
|
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to determine current DiagramView under point
|
|
// Parameters:
|
|
// pt - Position to hit test.
|
|
// Returns:
|
|
// Pointer to CXTPChartDiagramView view object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartDiagramView* HitTestDiagramView(CPoint pt) const;
|
|
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to crate the device command for this object.
|
|
// This function create different child device command objects and
|
|
// Parameters:
|
|
// pDC - The device context.
|
|
// Returns:
|
|
// A pointer to chart device context object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
virtual CXTPChartDeviceCommand* CreateDeviceCommand(CXTPChartDeviceContext* pDC);
|
|
|
|
protected:
|
|
CRect m_rcBounds; //The bounds.
|
|
CXTPChartContent* m_pContent; //The chart content.
|
|
|
|
public:
|
|
CXTPChartLegendView* m_pLegendView; //The legend view.
|
|
CXTPChartElementView* m_pTitlesView; //The titles view.
|
|
CXTPChartElementView* m_pDiagramView; //The diagram view.
|
|
};
|
|
|
|
|
|
#endif //#if !defined(__XTPCHARTCONTENTVIEW_H__)
|