mirror of
https://github.com/zodiacon/PoolMonX
synced 2026-06-08 18:38:49 +00:00
51 lines
889 B
C++
51 lines
889 B
C++
|
|
// MainFrm.h : interface of the CMainFrame class
|
|
//
|
|
|
|
#pragma once
|
|
#include "PoolView.h"
|
|
|
|
class CMainFrame : public CFrameWnd
|
|
{
|
|
|
|
public:
|
|
CMainFrame();
|
|
protected:
|
|
DECLARE_DYNAMIC(CMainFrame)
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
public:
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CMainFrame();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
protected: // control bar embedded members
|
|
CStatusBar m_wndStatusBar;
|
|
CPoolView m_wndView;
|
|
CDialogBar m_ToolBar;
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void OnSetFocus(CWnd *pOldWnd);
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
public:
|
|
afx_msg void OnBnClickedRefresh();
|
|
};
|
|
|
|
|