home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / DYNASPLI.ZIP / MainFrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-03  |  1.6 KB  |  64 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__76E949CB_9CAD_11D1_907F_00A024782894__INCLUDED_)
  6. #define AFX_MAINFRM_H__76E949CB_9CAD_11D1_907F_00A024782894__INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. #include "DynSplitterWnd.h"
  13.  
  14. class CMainFrame : public CFrameWnd
  15. {
  16. protected: // create from serialization only
  17.     CMainFrame();
  18.     DECLARE_DYNCREATE(CMainFrame)
  19.  
  20. // Attributes
  21. protected:
  22.     CDynSplitterWnd m_wndSplitter;
  23. public:
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CMainFrame)
  31.     public:
  32.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  33.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. public:
  38.     virtual ~CMainFrame();
  39. #ifdef _DEBUG
  40.     virtual void AssertValid() const;
  41.     virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43.  
  44. protected:  // control bar embedded members
  45.     CStatusBar  m_wndStatusBar;
  46.     CToolBar    m_wndToolBar;
  47.  
  48. // Generated message map functions
  49. protected:
  50.     //{{AFX_MSG(CMainFrame)
  51.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52.     afx_msg void OnDynSplit();
  53.     afx_msg void OnUpdateDynSplit(CCmdUI* pCmdUI);
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.  
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62.  
  63. #endif // !defined(AFX_MAINFRM_H__76E949CB_9CAD_11D1_907F_00A024782894__INCLUDED_)
  64.