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

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  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. #if !defined(AFX_MAINFRM_H__9DAEF6A8_0CAE_449C_BB70_0610A17BA268__INCLUDED_)
  21. #define AFX_MAINFRM_H__9DAEF6A8_0CAE_449C_BB70_0610A17BA268__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CMainFrame : public CXTPFrameWnd
  26. {
  27. protected: // create from serialization only
  28. CMainFrame();
  29. DECLARE_DYNCREATE(CMainFrame)
  30. // Attributes
  31. public:
  32. CXTPDockingPaneManager m_paneManager;
  33. CMap<UINT,UINT, CWnd* , CWnd*> m_mapPanes;
  34. int m_nCount;
  35. BOOL m_bContextMenu;
  36. BOOL m_bForbidEditClosing;
  37. BOOL m_bForbidFormClosing;
  38. BOOL m_bForbidListClosing;
  39. // Operations
  40. public:
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(CMainFrame)
  44. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~CMainFrame();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:  // control bar embedded members
  54. CStatusBar  m_wndStatusBar;
  55. CToolBar    m_wndToolBar;
  56. void ShowContextMenu(CPoint pt, CXTPDockingPane* pPopupPane);
  57. // Generated message map functions
  58. CXTPDockingPane* CreatePane(CRuntimeClass* pNewViewClass, CString strFormat, XTPDockingPaneDirection direction, CXTPDockingPane* pNeighbour = NULL) ;
  59. public:
  60. //{{AFX_MSG(CMainFrame)
  61. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  62. afx_msg void OnManagerCreateform();
  63. afx_msg LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  64. afx_msg void OnManagerCreateedit();
  65. afx_msg void OnManagerCreatelistcontrol();
  66. afx_msg void OnManagerCreate3inrow();
  67. afx_msg void OnManagerCreate3incolumn();
  68. afx_msg void OnManagerCreate3inwindow();
  69. afx_msg void OnManagerHideall();
  70. afx_msg void OnManagerShowall();
  71. afx_msg void OnManagerDestoyall();
  72. afx_msg void OnUpdateManagerAll(CCmdUI* pCmdUI);
  73. afx_msg void OnToolsAllowcontextmenu();
  74. afx_msg void OnUpdateToolsAllowcontextmenu(CCmdUI* pCmdUI);
  75. afx_msg void OnToolsForbideditclosing();
  76. afx_msg void OnUpdateToolsForbideditclosing(CCmdUI* pCmdUI);
  77. afx_msg void OnToolsForbidformclosing();
  78. afx_msg void OnUpdateToolsForbidformclosing(CCmdUI* pCmdUI);
  79. afx_msg void OnToolsForbidlistclosing();
  80. afx_msg void OnUpdateToolsForbidlistclosing(CCmdUI* pCmdUI);
  81. afx_msg void OnToolsThemeOffice2000();
  82. afx_msg void OnToolsThemeOffice2003();
  83. afx_msg void OnToolsThemeOfficexp();
  84. afx_msg void OnUpdateToolsThemeOffice2000(CCmdUI* pCmdUI);
  85. afx_msg void OnUpdateToolsThemeOffice2003(CCmdUI* pCmdUI);
  86. afx_msg void OnUpdateToolsThemeOfficexp(CCmdUI* pCmdUI);
  87. //}}AFX_MSG
  88. afx_msg void OnClose();
  89. afx_msg void OnCustomize();
  90. DECLARE_MESSAGE_MAP()
  91. };
  92. /////////////////////////////////////////////////////////////////////////////
  93. //{{AFX_INSERT_LOCATION}}
  94. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  95. #endif // !defined(AFX_MAINFRM_H__9DAEF6A8_0CAE_449C_BB70_0610A17BA268__INCLUDED_)