cmake/Tests/MFC/mfc1/MainFrm.h

36 lines
668 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
// MainFrm.h : interface of the CMainFrame class
//
#pragma once
class CMainFrame : public CMDIFrameWnd
{
2016-07-09 11:21:54 +02:00
DECLARE_DYNAMIC(CMainFrame)
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
CMainFrame();
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Attributes
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
// Operations
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
// Overrides
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Implementation
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
virtual ~CMainFrame();
2012-02-18 12:40:36 +02:00
#ifdef _DEBUG
2016-07-09 11:21:54 +02:00
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
2012-02-18 12:40:36 +02:00
#endif
2016-07-09 11:21:54 +02:00
protected: // control bar embedded members
CStatusBar m_wndStatusBar;
CToolBar m_wndToolBar;
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Generated message map functions
2012-02-18 12:40:36 +02:00
protected:
2016-07-09 11:21:54 +02:00
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
2012-02-18 12:40:36 +02:00
};