splitfrm.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // splitfrm.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CSplitFrame frame with splitter
  22. #ifndef __AFXEXT_H__
  23. #include <afxext.h>
  24. #endif
  25. class CSplitFrame : public CMDIChildWnd
  26. {
  27. DECLARE_DYNCREATE(CSplitFrame)
  28. protected:
  29. CSplitFrame();          // protected constructor used by dynamic creation
  30. // Attributes
  31. protected:
  32. CXTSplitterWnd    m_wndSplitter;
  33. int m_nColor;
  34. public:
  35. // Operations
  36. public:
  37. afx_msg LRESULT OnGetTabColor(WPARAM, LPARAM);
  38. afx_msg void OnUpdateSelectColor(CCmdUI* pCmdUI);
  39. afx_msg void OnSelectColor(UINT nColor);
  40. afx_msg void OnUpdateSelectColorNone(CCmdUI* pCmdUI);
  41. afx_msg void OnSelectColorNone();
  42. // Implementation
  43. public:
  44. virtual ~CSplitFrame();
  45. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  46. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  47. virtual void ActivateFrame(int nCmdShow = -1);
  48. void OnMDIActivate(BOOL bActivate, CWnd* pActivateWnd, CWnd* pWnd);
  49. // Generated message map functions
  50. //{{AFX_MSG(CSplitFrame)
  51. // NOTE - the ClassWizard will add and remove member functions here.
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. /////////////////////////////////////////////////////////////////////////////