]> icculus.org git repositories - taylor/freespace2.git/blob - include/mainfrm.h
rendering functions mostly done; more complete shader setup
[taylor/freespace2.git] / include / mainfrm.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
11  *
12  * All source code herein is the property of Volition, Inc. You may not sell 
13  * or otherwise commercially exploit the source or things you created based on
14  * the source.
15  */
16
17 /*
18  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
19  *
20  * All source code herein is the property of Volition, Inc. You may not sell 
21  * or otherwise commercially exploit the source or things you created based on
22  * the source.
23  */
24
25 // MainFrm.h : interface of the CMainFrame class
26 //
27 /////////////////////////////////////////////////////////////////////////////
28
29 class CMainFrame : public CMDIFrameWnd
30 {
31         DECLARE_DYNAMIC(CMainFrame)
32 public:
33         CMainFrame();
34
35 // Attributes
36 public:
37
38 // Operations
39 public:
40
41 // Overrides
42         // ClassWizard generated virtual function overrides
43         //{{AFX_VIRTUAL(CMainFrame)
44         virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
45         //}}AFX_VIRTUAL
46
47 // Implementation
48 public:
49         virtual ~CMainFrame();
50 #ifdef _DEBUG
51         virtual void AssertValid() const;
52         virtual void Dump(CDumpContext& dc) const;
53 #endif
54
55 protected:  // control bar embedded members
56         CStatusBar  m_wndStatusBar;
57         CToolBar    m_wndToolBar;
58
59 // Generated message map functions
60 protected:
61         //{{AFX_MSG(CMainFrame)
62         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
63                 // NOTE - the ClassWizard will add and remove member functions here.
64                 //    DO NOT EDIT what you see in these blocks of generated code!
65         //}}AFX_MSG
66         DECLARE_MESSAGE_MAP()
67 };
68
69 /////////////////////////////////////////////////////////////////////////////
70