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.
260 lines
9.0 KiB
C++
260 lines
9.0 KiB
C++
// XTPChartAxisLabel.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(__XTPCHARTAXISLABEL_H__)
|
|
#define __XTPCHARTAXISLABEL_H__
|
|
//}}AFX_CODEJOCK_PRIVATE
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
class CXTPChartAxis;
|
|
class CXTPChartNumberFormat;
|
|
|
|
//===========================================================================
|
|
// Summary:
|
|
// CXTPChartAxisLabel is a kind of CXTPChartTextElement.
|
|
// This class represents the text label on an axis.
|
|
// Remarks:This class is associated with a chart axis class.
|
|
//
|
|
//===========================================================================
|
|
class _XTP_EXT_CLASS CXTPChartAxisLabel : public CXTPChartTextElement
|
|
{
|
|
DECLARE_DYNAMIC(CXTPChartAxisLabel)
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Constructs a CXTPChartAxisLabel object.
|
|
// Parameters:
|
|
// paxis - Pointer to the associated chart axis object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartAxisLabel(CXTPChartAxis* pAxis);
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Destroys a CXTPChartAxisLabel object, handles cleanup
|
|
//-------------------------------------------------------------------------
|
|
virtual ~CXTPChartAxisLabel();
|
|
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to set the text color of the axis label.
|
|
// Parameters:
|
|
// clrTextColor - The reference to a color object, representing an ARGB value.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
void SetTextColor(const CXTPChartColor& clrTextColor);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get the apparent text color of the axis label.
|
|
// Returns:
|
|
// A chart color object, representing an ARGB value.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartColor GetTextColor() const;
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get the real text color of the axis label.
|
|
// Returns:
|
|
// A chart color object, representing an ARGB value.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartColor GetActualTextColor() const;
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to set the font of the axis label text.
|
|
// Parameters:
|
|
// pFont - The pointer to a chart font object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
void SetFont(CXTPChartFont* pFont);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get the font of the axis label.
|
|
// Returns:
|
|
// A pointer to the chart font object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartFont* GetFont() const;
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get the angle of text label.
|
|
// Returns:
|
|
// An integer value representing the angle.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
int GetAngle() const;
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to set the angle of text label.
|
|
// Parameters:
|
|
// nAgle - An integer value representing the angle.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
void SetAngle(int nAgle);
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to set the antialiasing ON or OFF.Antialiasing is
|
|
// the smooothing of sharp edges of text and drawing.
|
|
// Parameters:
|
|
// bAntialiasing - A BOOL value TRUE to set the antialiasing ON and
|
|
// FALSE to OFF the anitialiasing operation.
|
|
// Remarks:
|
|
// See Also:
|
|
//-------------------------------------------------------------------------
|
|
void SetAntialiasing(BOOL bAntialiasing);
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get whether antialiasing is enabled or not.
|
|
// Antialiasing is the smooothing of sharp edges of text and drawing.
|
|
// Returns:
|
|
// Returns boolean TRUE if the antialiasing is turned on FALSE if the
|
|
// antialiasing is turned off.
|
|
// Remarks:
|
|
// See Also:
|
|
//-------------------------------------------------------------------------
|
|
BOOL GetAntialiasing() const;
|
|
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to set the text label visible/invisible.
|
|
// Parameters:
|
|
// bVisible - BOOL value TRUE if the label is visible and FALSE
|
|
// if the label is invisible.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
void SetVisible(BOOL bVisible);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Use this function to get whether the text label visible.
|
|
// Returns:
|
|
// BOOL value TRUE if the label is visible and FALSE if the
|
|
// label is invisible.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
BOOL IsVisible() const;
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to get pointer to CXTPChartNumberFormat that specify how to convert number to string
|
|
// Returns:
|
|
// Pointer to CXTPChartNumberFormat class
|
|
// See Also: CXTPChartNumberFormat
|
|
//-------------------------------------------------------------------------
|
|
CXTPChartNumberFormat* GetFormat() const;
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Obsolete method. Use GetFormat()->SetPattern(lpszFormat) instead
|
|
// Parameters:
|
|
// lpszFormat - New Pattern to be set
|
|
// See Also: CXTPChartNumberFormat
|
|
//-------------------------------------------------------------------------
|
|
void SetFormat(LPCTSTR lpszFormat);
|
|
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Use this function to get the pointer to the axis object to which the
|
|
// label is associated.
|
|
// Returns:
|
|
// A pointer to the axis object.
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartAxis* GetAxis() const;
|
|
|
|
public:
|
|
void DoPropExchange(CXTPPropExchange* pPX);
|
|
|
|
|
|
#ifdef _XTP_ACTIVEX
|
|
public:
|
|
//{{AFX_CODEJOCK_PRIVATE
|
|
DECLARE_DISPATCH_MAP()
|
|
DECLARE_INTERFACE_MAP()
|
|
DECLARE_OLETYPELIB_EX(CXTPChartAxisLabel);
|
|
|
|
afx_msg LPDISPATCH OleGetFont();
|
|
afx_msg OLE_COLOR OleGetTextColor();
|
|
afx_msg void OleSetTextColor(OLE_COLOR clr);
|
|
afx_msg LPDISPATCH OleGetFormat();
|
|
|
|
//}}AFX_CODEJOCK_PRIVATE
|
|
#endif
|
|
|
|
protected:
|
|
CXTPChartColor m_clrTextColor; //The text color.
|
|
CXTPChartFont* m_pFont; //The font uses to render the text.
|
|
BOOL m_bVisible; //TRUE if the label is visible, FALSE if not.
|
|
BOOL m_bAntialiasing; //TRUE if antialiasing enabled, FALSE if not.
|
|
int m_nAngle; //The angle of the label.
|
|
|
|
CXTPChartNumberFormat* m_pFormat;
|
|
|
|
};
|
|
|
|
AFX_INLINE CXTPChartAxis* CXTPChartAxisLabel::GetAxis() const {
|
|
return (CXTPChartAxis*)m_pOwner;
|
|
}
|
|
|
|
|
|
AFX_INLINE CXTPChartFont* CXTPChartAxisLabel::GetFont() const {
|
|
return m_pFont;
|
|
}
|
|
|
|
AFX_INLINE int CXTPChartAxisLabel::GetAngle() const {
|
|
return m_nAngle;
|
|
}
|
|
AFX_INLINE void CXTPChartAxisLabel::SetAngle(int nAgle) {
|
|
m_nAngle = nAgle;
|
|
OnChartChanged();
|
|
}
|
|
AFX_INLINE void CXTPChartAxisLabel::SetAntialiasing(BOOL bAntialiasing) {
|
|
m_bAntialiasing = bAntialiasing;
|
|
OnChartChanged();
|
|
}
|
|
AFX_INLINE BOOL CXTPChartAxisLabel::GetAntialiasing() const {
|
|
return m_bAntialiasing;
|
|
}
|
|
AFX_INLINE BOOL CXTPChartAxisLabel::IsVisible() const {
|
|
return m_bVisible;
|
|
}
|
|
AFX_INLINE void CXTPChartAxisLabel::SetVisible(BOOL bVisible) {
|
|
m_bVisible = bVisible;
|
|
OnChartChanged();
|
|
}
|
|
AFX_INLINE CXTPChartNumberFormat* CXTPChartAxisLabel::GetFormat() const {
|
|
return m_pFormat;
|
|
}
|
|
|
|
#endif //#if !defined(__XTPCHARTAXISLABEL_H__)
|