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

对话框与窗口

开发平台:

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__7AAA87E0_7A85_4ECD_83FF_E7325A68E317__INCLUDED_)
  21. #define AFX_MAINFRM_H__7AAA87E0_7A85_4ECD_83FF_E7325A68E317__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "PaneToolbars.h"
  26. #include "PaneProperties.h"
  27. #include "PaneControls.h"
  28. #include "PaneAccelerators.h"
  29. #include "PaneIcons.h"
  30. #include "PaneLibrary.h"
  31. #include "EmbeddedFrame.h"
  32. class CMainFrame : public CXTPMDIFrameWnd
  33. {
  34. DECLARE_DYNAMIC(CMainFrame)
  35. public:
  36. CMainFrame();
  37. // Attributes
  38. public:
  39. CXTPTabClientWnd m_MTIClientWnd;
  40. CXTPDockingPaneManager m_paneManager;
  41. CPaneToolbars m_paneToolbars;
  42. CPaneProperties m_paneProperties;
  43. CPaneControls m_paneControls;
  44. CPaneAccelerators m_paneAccelerators;
  45. CPaneIcons m_paneIcons;
  46. CPaneLibrary m_paneLibrary;
  47. CXTPCommandBars* m_pActiveCommandBars;
  48. CPaneHolder* m_pActivePane;
  49. // Operations
  50. public:
  51. void RefreshPanes(BOOL bForceAll = FALSE);
  52. CXTPCommandBars* GetActiveCommandBars();
  53. CEmbeddedFrame* GetActiveEmbeddedFrame();
  54. // Overrides
  55. // ClassWizard generated virtual function overrides
  56. //{{AFX_VIRTUAL(CMainFrame)
  57. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  58. //}}AFX_VIRTUAL
  59. // Implementation
  60. public:
  61. virtual ~CMainFrame();
  62. #ifdef _DEBUG
  63. virtual void AssertValid() const;
  64. virtual void Dump(CDumpContext& dc) const;
  65. #endif
  66. protected:  // control bar embedded members
  67. CStatusBar  m_wndStatusBar;
  68. CToolBar    m_wndToolBar;
  69. // Generated message map functions
  70. protected:
  71. //{{AFX_MSG(CMainFrame)
  72. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  73. afx_msg void OnDestroy();
  74. afx_msg void OnClose();
  75. afx_msg void OnViewProperties();
  76. afx_msg void OnViewAccelerators();
  77. afx_msg void OnViewControlspane();
  78. afx_msg void OnViewIconspane();
  79. afx_msg void OnViewToolbarspane();
  80. afx_msg void OnFileImportXmldocument();
  81. afx_msg void OnUpdateFileImportXmldocument(CCmdUI* pCmdUI);
  82. afx_msg void OnViewLibrary();
  83. //}}AFX_MSG
  84. afx_msg LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  85. afx_msg void OnCustomize();
  86. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl);
  87. void OnShowEmbeddedCommands(CCmdUI* pCmdUI);
  88. DECLARE_MESSAGE_MAP()
  89. };
  90. inline CMainFrame* GetMainFrame() {
  91. return (CMainFrame*)AfxGetMainWnd();
  92. }
  93. /////////////////////////////////////////////////////////////////////////////
  94. //{{AFX_INSERT_LOCATION}}
  95. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  96. #endif // !defined(AFX_MAINFRM_H__7AAA87E0_7A85_4ECD_83FF_E7325A68E317__INCLUDED_)