Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.8 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // MainFrm.h : interface of the CMainFrame class
  9. //
  10. /////////////////////////////////////////////////////////////////////////////
  11. #if !defined(AFX_MAINFRM_H__66B5DA3F_6D29_46CA_81AA_4A27A938BD44__INCLUDED_)
  12. #define AFX_MAINFRM_H__66B5DA3F_6D29_46CA_81AA_4A27A938BD44__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. class CMainFrame : public CFrameWnd
  17. {
  18. protected: // create from serialization only
  19. CMainFrame();
  20. DECLARE_DYNCREATE(CMainFrame)
  21. CSplitterWnd m_wndSplitter;
  22. // Attributes
  23. public:
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMainFrame)
  29. public:
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. protected:
  32. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CMainFrame();
  37. #ifdef _DEBUG
  38. virtual void AssertValid() const;
  39. virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41. protected: // control bar embedded members
  42. CStatusBar m_wndStatusBar;
  43. CToolBar m_wndToolBar;
  44. // Generated message map functions
  45. protected:
  46. //{{AFX_MSG(CMainFrame)
  47. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  48. // NOTE - the ClassWizard will add and remove member functions here.
  49. // DO NOT EDIT what you see in these blocks of generated code!
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_MAINFRM_H__66B5DA3F_6D29_46CA_81AA_4A27A938BD44__INCLUDED_)