statistics.h

来自「我们的网管程序的后台软件,主要是网络方面的内容.」· C头文件 代码 · 共 68 行

H
68
字号
#if !defined(AFX_STATISTICS_H__DA501046_E3CA_4476_AE37_4271E44C2B60__INCLUDED_)
#define AFX_STATISTICS_H__DA501046_E3CA_4476_AE37_4271E44C2B60__INCLUDED_

#include "AlarmStatistics.h"
#include "PerfStatistics.h"
#include "DbStatistics.h"

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Statistics.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CStatistics dialog

class CStatistics : public CDialog
{
// Construction
public:
	void UpdateStatitics();
	CStatistics(CWnd* pParent = NULL);   // standard constructor

public:

	CTabCtrl	m_TabCtrl;

	CAlarmStatistics m_AlarmPage;
	CPerfStatistics	 m_PerfPage;
	CDbStatistics	 m_DbPage;

public:
	void OnTabClick();

// Dialog Data
	//{{AFX_DATA(CStatistics)
	enum { IDD = IDD_STATISTICS };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CStatistics)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CStatistics)
	virtual BOOL OnInitDialog();
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	afx_msg void OnStatisticsOk();
	afx_msg void OnStatisticsReset();
	afx_msg void OnStatisticsRefresh();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STATISTICS_H__DA501046_E3CA_4476_AE37_4271E44C2B60__INCLUDED_)

⌨️ 快捷键说明

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