2011-10-25 00:55:52 +04:00
|
|
|
// MainFrm.h : interface of the CMainFrame class
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
class CMainFrame : public CMDIFrameWnd
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
DECLARE_DYNAMIC(CMainFrame)
|
2011-10-25 00:55:52 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
CMainFrame();
|
2011-10-25 00:55:52 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// Attributes
|
2011-10-25 00:55:52 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
// Operations
|
2011-10-25 00:55:52 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
// Overrides
|
2011-10-25 00:55:52 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
2011-10-25 00:55:52 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// Implementation
|
2011-10-25 00:55:52 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual ~CMainFrame();
|
2011-10-25 00:55:52 +04:00
|
|
|
#ifdef _DEBUG
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void AssertValid() const;
|
|
|
|
virtual void Dump(CDumpContext& dc) const;
|
2011-10-25 00:55:52 +04:00
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
protected: // control bar embedded members
|
|
|
|
CStatusBar m_wndStatusBar;
|
|
|
|
CToolBar m_wndToolBar;
|
2011-10-25 00:55:52 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// Generated message map functions
|
2011-10-25 00:55:52 +04:00
|
|
|
protected:
|
2016-05-16 17:34:04 +03:00
|
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
|
|
DECLARE_MESSAGE_MAP()
|
2011-10-25 00:55:52 +04:00
|
|
|
};
|