⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statisticdialog.h

📁 The application wizard has created this SoccerDoctor application for you. This application not onl
💻 H
字号:
#ifndef _STATISTICDIALOG_H_
#define _STATISTICDIALOG_H_
#include "Chart/ChartCtrl.h"
#include "SortedListCtrl.h" // CStatListCtrl

// CStatisticDialog 对话框
class CAnalyzer;
class CStatisticDialog : public CDialog
{
	DECLARE_DYNAMIC(CStatisticDialog)

public:
	CStatisticDialog(const CAnalyzer* pAnalyzer, CWnd* pParent = NULL);   // 标准构造函数
	virtual ~CStatisticDialog();
	virtual BOOL OnInitDialog();
	afx_msg void OnStatChangeType(NMHDR *pNMHDR, LRESULT *pResult);
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	void ShowStatistic();

// 对话框数据
	enum { IDD = IDD_STATDIALOG };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持

	DECLARE_MESSAGE_MAP()

private:
	const CAnalyzer* _pAnalyzer;
	CTabCtrl _StatTabCtrl;
	CChartCtrl _StatChart;
	CStatListCtrl _StatList;
	void ShowSummory();
	void ShowShots(int side);
	void ShowDribbles(int side);
	void ShowIntercepts(int side);
	void ShowPasses(int side);
	void ShowOverview(int side);
	void HideAll(); // 隐藏所有的
	virtual void OnCancel();
	void InitTabCtrl();
	void InitStatChart();
	void ClearStatChart();
	void ShowStatChart();
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -