Source code of Windows XP (NT5)
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.

60 lines
1.7 KiB

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__2E2118C8_2E1B_11D1_ACDA_00A0C908F98C__INCLUDED_)
  5. #define AFX_MAINFRM_H__2E2118C8_2E1B_11D1_ACDA_00A0C908F98C__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. protected:
  16. CSplitterWnd m_wndSplitterMainFrame; // Note that the main frame
  17. // is overlaid with a splitter
  18. CSplitterWnd m_wndSplitterInfoPane; // window with three panes.
  19. // Additional splitter windows
  20. CSplitterWnd m_wndSplitterOutputPane; // are nested in
  21. // m_wndSplitterMainFrame.
  22. public:
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CMainFrame)
  28. public:
  29. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CMainFrame();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMainFrame)
  42. afx_msg void OnClose();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_MAINFRM_H__2E2118C8_2E1B_11D1_ACDA_00A0C908F98C__INCLUDED_)