深入浅出CChart 每日一课――第十五课 实习之旅,百年老店之经典MFC

前面课程中,笨笨给大家的例子都是在VC下建立的Win32Application项目。

CChart是与框架无关的,其内部只使用了Win32API,没有使用任何与框架有关的代码,例如MFCWTLQT等。但CChart完全可以在这些框架下使用。

顺便介绍一下,其实最早的CChart版本就是基于MFC的,后来笨笨重新开发,抛弃了MFC

本节课介绍CChartMFC框架下的编程方法。

MFC大家都很熟了吧,实际上用VC的人大部分都是在使用MFC,而不用VC的人大部分人也不知道MFC是什么。这里笨笨假定大家使用的都是VC,所以也不用解释MFC了,呵呵。

仍然以实例的形式。

第一步,打开VC,建立一个基于MFCAppWizard(exe)向导的项目Lesson15,向导中不做任何更改,直接点Finish

第二步,拷贝五个库文件到Lesson15文件夹。

第三步,在VC中打开Lesson15View.h文件,在其头部添加如下代码。

#include "Chart.h"
#ifdef _DEBUG
#pragma comment(lib, "PlotDll_d.lib")
#else
#pragma comment(lib, "PlotDll.lib")
#endif
 


第四步,在Lesson15View.h文件中,给CLesson15View类添加一个CChartWnd变量。

CChartWnd m_ChartWnd;
第五步,利用 ClassWizardCLesson15View类添加 OnCreateOnDestroy消息处理函数。

第六步,修改OnCreate函数如下。

int CLesson15View::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
	if (CView::OnCreate(lpCreateStruct) == -1)
		return -1;
	
	// TODO: Add your specialized creation code here
	m_ChartWnd.Attach(m_hWnd, kTypeXY);
	m_ChartWnd.GetChart()->AddPoint2D(1.0, 3.0);
	m_ChartWnd.GetChart()->AddPoint2D(2.0, 2.5);
	m_ChartWnd.GetChart()->AddPoint2D(3.0, 1.0);
	m_ChartWnd.GetChart()->AddPoint2D(4.0, 6.0);
	m_ChartWnd.GetChart()->AddPoint2D(5.0, 7.0);
	m_ChartWnd.GetChart()->AddPoint2D(6.0, 2.0);
	m_ChartWnd.GetChart()->AddPoint2D(7.0, 1.0);
	m_ChartWnd.GetChart()->AddPoint2D(8.0, 4.0);
	
	m_ChartWnd.GetChart()->SetTitle(_T("测试在MFC下绘图"));

	return 0;
}
 


第七步,修改OnDestroy函数如下。

void CLesson15View::OnDestroy() 
{
	CView::OnDestroy();
	
	// TODO: Add your message handler code here
	m_ChartWnd.Detach();
}
 


运行程序,效果如图。

SouthEast

呵呵,成功了。

MFC下编程也相当相当的简单。

前面采用CChartWnd类编程,其实也可以采用CChart类,但需要手动处理消息。下面把上面的步骤修改一下。

第四步(新),在Lesson15View.h文件中,给CLesson15View类添加一个CChart变量。

CChart m_Chart;
 


第五步(),利用ClassWizardCLesson15View类添加OnCreate消息处理函数。

这里不需要处理OnDestroy

第六步(新),修改OnCreate函数如下。

int CLesson15View::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
	if (CView::OnCreate(lpCreateStruct) == -1)
		return -1;
	
	// TODO: Add your specialized creation code here
	m_Chart.SetType(kTypeXY);
	m_Chart.AddPoint2D(1.0, 3.0);
	m_Chart.AddPoint2D(2.0, 2.5);
	m_Chart.AddPoint2D(3.0, 1.0);
	m_Chart.AddPoint2D(4.0, 6.0);
	m_Chart.AddPoint2D(5.0, 7.0);
	m_Chart.AddPoint2D(6.0, 2.0);
	m_Chart.AddPoint2D(7.0, 1.0);
	m_Chart.AddPoint2D(8.0, 4.0);
	
	m_Chart.SetTitle(_T("测试在MFC下绘图"));
	
	return 0;
}
第七步(新),修改OnDraw函数如下。
void CLesson15View::OnDraw(CDC* pDC)
{
	CLesson15Doc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
	m_Chart.OnDraw(m_hWnd);
}
 
现在已经可以运行了,但还没有实现交互。

第八步,利用ClassWizard添加WM_LBUTTONDOWNWM_LBUTTONUPWM_LBUTTONDBLCLKWM_MOUSEMOVEWM_CONTEXTMENUWM_KEYDOWNWM_ERASEBKGND消息的响应函数。

第九步,修改上述响应函数如下。

void CLesson15View::OnLButtonDown(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
	if(m_Chart.OnLButtonDown(m_hWnd, point))
		GetDocument()->UpdateAllViews(NULL);
	
	//CView::OnLButtonDown(nFlags, point);
}

void CLesson15View::OnLButtonUp(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
	if(m_Chart.OnLButtonUp(m_hWnd, point))
		GetDocument()->UpdateAllViews(NULL);
	
	//CView::OnLButtonUp(nFlags, point);
}

void CLesson15View::OnLButtonDblClk(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
	if(m_Chart.OnLButtonDblClk(m_hWnd, point))
		GetDocument()->UpdateAllViews(NULL);
	
	//CView::OnLButtonDblClk(nFlags, point);
}

void CLesson15View::OnMouseMove(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
	if(m_Chart.OnMouseMove(m_hWnd, point))
		GetDocument()->UpdateAllViews(NULL);
	
	//CView::OnMouseMove(nFlags, point);
}

void CLesson15View::OnContextMenu(CWnd* pWnd, CPoint point) 
{
	// TODO: Add your message handler code here
	if(m_Chart.OnContextMenu(NULL, m_hWnd, point))
		GetDocument()->UpdateAllViews(NULL);
}

void CLesson15View::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
	// TODO: Add your message handler code here and/or call default
	if(m_Chart.OnKeyDown(m_hWnd, nChar))
		GetDocument()->UpdateAllViews(NULL);
	
	//CView::OnKeyDown(nChar, nRepCnt, nFlags);
}

BOOL CLesson15View::OnEraseBkgnd(CDC* pDC) 
{
	// TODO: Add your message handler code here and/or call default
	return TRUE;
	
	//return CView::OnEraseBkgnd(pDC);
}
 
运行程序,效果和前面一模一样。

从这里可以看出,在MFC下还是用CChartWnd编程要方便一点。

本节课笨笨给大家介绍了CChart在MFC下画折线图的例子,其它图形的画法可以照葫芦画瓢。

你可能感兴趣的:(mfc,教程,数据可视化,CChart)