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.

47 lines
1.2 KiB

  1. // splitfra.h : main header file for the CSplitFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSplitFrame frame with splitter
  14. #ifndef __AFXEXT_H__
  15. #include <afxext.h>
  16. #endif
  17. class CSplitFrame : public CMDIChildWnd
  18. {
  19. DECLARE_DYNCREATE(CSplitFrame)
  20. protected:
  21. CSplitFrame(); // protected constructor used by dynamic creation
  22. // Attributes
  23. protected:
  24. CSplitterWnd m_wndSplitter;
  25. public:
  26. // Operations
  27. public:
  28. // Implementation
  29. public:
  30. virtual ~CSplitFrame();
  31. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  32. // Generated message map functions
  33. //{{AFX_MSG(CSplitFrame)
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////