home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / wdj0796.zip / RAJA.ZIP / SPLITTER.H < prev    next >
C/C++ Source or Header  |  1996-03-08  |  872b  |  43 lines

  1. // splitter.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSplitterFrame frame with splitter
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CSplitterFrame : public CMDIChildWnd
  12. {
  13.     DECLARE_DYNCREATE(CSplitterFrame)
  14. protected:
  15.     CSplitterFrame();            // protected constructor used by dynamic creation
  16.  
  17. // Attributes
  18. protected:
  19.     CSplitterWnd    m_wndSplitter;
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Overrides
  26. public:
  27.  
  28. protected:
  29.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CSplitterFrame();
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CSplitterFrame)
  37.     afx_msg void OnViewSwitchView();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.