📄 chartlegend.h
字号:
/*
*
* ChartLegend.h
*
* Written by C閐ric Moonen (cedric_moonen@hotmail.com)
*
*
*
* This code may be used for any non-commercial and commercial purposes in a compiled form.
* The code may be redistributed as long as it remains unmodified and providing that the
* author name and this disclaimer remain intact. The sources can be modified WITH the author
* consent only.
*
* This code is provided without any garanties. I cannot be held responsible for the damage or
* the loss of time it causes. Use it at your own risks
*
* An e-mail to notify me that you are using this code is appreciated also.
*
*
*/
#if !defined(AFX_CHARTLEGEND_H__CD72E5A0_8F52_472A_A611_C588F642080B__INCLUDED_)
#define AFX_CHARTLEGEND_H__CD72E5A0_8F52_472A_A611_C588F642080B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "ChartObject.h"
#include <string>
class CChartSerie;
class CChartLegend : public CChartObject
{
friend CChartCtrl;
public:
// int SerieIndexFromPoint(CPoint NewPoint) const;
void SetFont(int iPointSize,std::wstring strFaceName)
{
m_iFontSize = iPointSize;
m_strFontName = strFaceName;
}
CChartLegend(CChartCtrl* pParent);
virtual ~CChartLegend();
private:
void Draw(CDC* pDC);
void SetPosition(int LeftBorder, int TopBorder, CDC* pDC);
CSize GetSize(CDC* pDC) const;
std::wstring m_strFontName;
int m_iFontSize;
int m_iTextHeigh;
};
#endif // !defined(AFX_CHARTLEGEND_H__CD72E5A0_8F52_472A_A611_C588F642080B__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -