You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
817 B
35 lines
817 B
// Copyright (c) 1999 Microsoft Corporation. All Rights Reserved.
|
|
class CGraphStats : public CDialog
|
|
{
|
|
public:
|
|
static void DelGraphStats();
|
|
static CGraphStats * GetGraphStats(
|
|
CBoxNetDoc * pBoxNet,
|
|
CWnd * pParent = NULL );
|
|
|
|
protected:
|
|
~CGraphStats();
|
|
CGraphStats(
|
|
CBoxNetDoc * pBoxNet,
|
|
CWnd * pParent = NULL );
|
|
|
|
|
|
afx_msg void OnSize( UINT nType, int cx, int cy );
|
|
afx_msg void OnGetMinMaxInfo( MINMAXINFO FAR* lpMMI );
|
|
|
|
BOOL OnInitDialog();
|
|
void RedoList();
|
|
void ResetStats();
|
|
|
|
CBoxNetDoc * m_pBoxNet;
|
|
|
|
static CGraphStats * m_pThis;
|
|
|
|
void DoDataExchange(CDataExchange* pDX);
|
|
CListBox m_ListBox;
|
|
|
|
BOOL m_bHadInitDialog; // Received OnInitDialog message?
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|