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.
132 lines
3.7 KiB
C++
132 lines
3.7 KiB
C++
// XTPChartSeriesLabelView.cpp
|
|
//
|
|
// 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
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include <math.h>
|
|
|
|
#include "Common/XTPPropExchange.h"
|
|
|
|
#include "Types/XTPChartTypes.h"
|
|
|
|
#include "XTPChartDefines.h"
|
|
#include "XTPChartElement.h"
|
|
#include <Chart/XTPChartLegendItem.h>
|
|
#include "XTPChartElementView.h"
|
|
|
|
#include "XTPChartSeriesLabel.h"
|
|
#include <Chart/XTPChartSeriesPointView.h>
|
|
#include "XTPChartSeriesView.h"
|
|
#include "XTPChartSeriesPoint.h"
|
|
#include "XTPChartSeries.h"
|
|
#include "XTPChartSeriesStyle.h"
|
|
|
|
|
|
#include <Common/XTPMathUtils.h>
|
|
#include "Utils/XTPChartNumberFormat.h"
|
|
#include "Common/Base/Types/XTPPoint3.h"
|
|
#include "Appearance/XTPChartBorder.h"
|
|
#include "Appearance/XTPChartFillStyle.h"
|
|
#include "Appearance/XTPChartAppearance.h"
|
|
|
|
#include "Drawing/XTPChartDeviceCommand.h"
|
|
#include "Drawing/XTPChartLineDeviceCommand.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// CXTPChartSeriesLabelView
|
|
|
|
CXTPChartSeriesLabelView::CXTPChartSeriesLabelView(CXTPChartSeriesLabel* pLabel, CXTPChartSeriesPointView* pPointView, CXTPChartElementView* pParentView)
|
|
: CXTPChartElementView(pParentView)
|
|
{
|
|
m_pLabel = pLabel;
|
|
m_pPointView = pPointView;
|
|
}
|
|
|
|
void CXTPChartSeriesLabelView::CalculateLayout(CXTPChartDeviceContext* pDC)
|
|
{
|
|
UNREFERENCED_PARAMETER(pDC);
|
|
}
|
|
|
|
CXTPChartColor CXTPChartSeriesLabelView::GetActualTextColor() const
|
|
{
|
|
if (!m_pLabel->GetTextColor().IsEmpty())
|
|
return m_pLabel->GetTextColor();
|
|
|
|
CXTPChartSeriesStyle* pStyle = (CXTPChartSeriesStyle*)m_pLabel->GetOwner();
|
|
|
|
CXTPChartColor clrTextColor = pStyle->GetStyleAppearance()->GetLabelAppearance()->TextColor;
|
|
if (!clrTextColor.IsEmpty())
|
|
return clrTextColor;
|
|
|
|
return m_pPointView->GetColor().GetDarkColor();
|
|
}
|
|
|
|
CXTPChartColor CXTPChartSeriesLabelView::GetActualBorderColor() const
|
|
{
|
|
CXTPChartColor clrBorderColor = m_pLabel->GetBorder()->GetColor();
|
|
|
|
if (clrBorderColor.IsEmpty())
|
|
{
|
|
CXTPChartSeriesStyle* pStyle = (CXTPChartSeriesStyle*)m_pLabel->GetOwner();
|
|
|
|
clrBorderColor = pStyle->GetStyleAppearance()->GetLabelAppearance()->BorderColor;
|
|
|
|
if (clrBorderColor.IsEmpty())
|
|
clrBorderColor = m_pPointView->GetColor().GetDarkColor();
|
|
}
|
|
|
|
int nTransparency = m_pLabel->GetTransparency();
|
|
|
|
if (nTransparency != 255)
|
|
{
|
|
return CXTPChartColor((BYTE)nTransparency, clrBorderColor.GetR(), clrBorderColor.GetG(), clrBorderColor.GetB());
|
|
}
|
|
|
|
return clrBorderColor;
|
|
}
|
|
|
|
CXTPChartColor CXTPChartSeriesLabelView::GetActualConnectorColor() const
|
|
{
|
|
CXTPChartColor clrLineColor = m_pLabel->GetLineColor();
|
|
|
|
if (clrLineColor.IsEmpty())
|
|
{
|
|
CXTPChartSeriesStyle* pStyle = (CXTPChartSeriesStyle*)m_pLabel->GetOwner();
|
|
|
|
clrLineColor = pStyle->GetStyleAppearance()->GetLabelAppearance()->ConnectorColor;
|
|
|
|
if (clrLineColor.IsEmpty())
|
|
clrLineColor = m_pPointView->GetColor().GetDarkColor();
|
|
}
|
|
|
|
int nTransparency = m_pLabel->GetTransparency();
|
|
|
|
if (nTransparency != 255)
|
|
{
|
|
return CXTPChartColor((BYTE)nTransparency, clrLineColor.GetR(), clrLineColor.GetG(), clrLineColor.GetB());
|
|
}
|
|
|
|
return clrLineColor;
|
|
}
|
|
|
|
CXTPChartSeriesPointView* CXTPChartSeriesLabelView::GetPointView() const
|
|
{
|
|
return m_pPointView;
|
|
}
|