| Line | |
|---|
| 1 | // MainFrm.h : interface of the CMainFrame class
|
|---|
| 2 | //
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 | #pragma once
|
|---|
| 6 |
|
|---|
| 7 | class CMainFrame : public CMDIFrameWnd
|
|---|
| 8 | {
|
|---|
| 9 | DECLARE_DYNAMIC(CMainFrame)
|
|---|
| 10 | public:
|
|---|
| 11 | CMainFrame();
|
|---|
| 12 |
|
|---|
| 13 | // Attributes
|
|---|
| 14 | public:
|
|---|
| 15 |
|
|---|
| 16 | // Operations
|
|---|
| 17 | public:
|
|---|
| 18 |
|
|---|
| 19 | // Overrides
|
|---|
| 20 | public:
|
|---|
| 21 | virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|---|
| 22 |
|
|---|
| 23 | // Implementation
|
|---|
| 24 | public:
|
|---|
| 25 | virtual ~CMainFrame();
|
|---|
| 26 | #ifdef _DEBUG
|
|---|
| 27 | virtual void AssertValid() const;
|
|---|
| 28 | virtual void Dump(CDumpContext& dc) const;
|
|---|
| 29 | #endif
|
|---|
| 30 |
|
|---|
| 31 | protected: // control bar embedded members
|
|---|
| 32 | CStatusBar m_wndStatusBar;
|
|---|
| 33 | CToolBar m_wndToolBar;
|
|---|
| 34 |
|
|---|
| 35 | // Generated message map functions
|
|---|
| 36 | protected:
|
|---|
| 37 | afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|---|
| 38 | DECLARE_MESSAGE_MAP()
|
|---|
| 39 | };
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
Note: See
TracBrowser
for help on using the repository browser.