]> icculus.org git repositories - taylor/freespace2.git/blob - include/mainfrm.h
Initial revision
[taylor/freespace2.git] / include / mainfrm.h
1 // MainFrm.h : interface of the CMainFrame class
2 //
3 /////////////////////////////////////////////////////////////////////////////
4
5 class CMainFrame : public CMDIFrameWnd
6 {
7         DECLARE_DYNAMIC(CMainFrame)
8 public:
9         CMainFrame();
10
11 // Attributes
12 public:
13
14 // Operations
15 public:
16
17 // Overrides
18         // ClassWizard generated virtual function overrides
19         //{{AFX_VIRTUAL(CMainFrame)
20         virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
21         //}}AFX_VIRTUAL
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(CMainFrame)
38         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
39                 // NOTE - the ClassWizard will add and remove member functions here.
40                 //    DO NOT EDIT what you see in these blocks of generated code!
41         //}}AFX_MSG
42         DECLARE_MESSAGE_MAP()
43 };
44
45 /////////////////////////////////////////////////////////////////////////////
46