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__F09AFCA0_D058_4459_A180_1F62F89ECA12__INCLUDED_)
  21. #define AFX_MAINFRM_H__F09AFCA0_D058_4459_A180_1F62F89ECA12__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "DockingPaneManager.h"
  26. #include "ExplorerView.h"
  27. #include "IconsView.h"
  28. #include "ToolsView.h"
  29. #include "ColorsView.h"
  30. class CMainFrame : public CXTPMDIFrameWnd
  31. {
  32. DECLARE_DYNAMIC(CMainFrame)
  33. public:
  34. CMainFrame();
  35. // Attributes
  36. public:
  37. CDockingPaneManager m_paneManager;
  38. CExplorerView m_wndExplorerView;
  39. CIconsView m_wndIconsView;
  40. CColorsView m_wndColorsView;
  41. CToolsView m_wndToolsView;
  42. LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  43. // Operations
  44. public:
  45. // Overrides
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CMainFrame)
  48. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  49. virtual void OnSetPreviewMode(BOOL bPreview, CPrintPreviewState* pState);
  50. //}}AFX_VIRTUAL
  51. // Implementation
  52. public:
  53. void RefreshPanes();
  54. virtual ~CMainFrame();
  55. #ifdef _DEBUG
  56. virtual void AssertValid() const;
  57. virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59. protected:  // control bar embedded members
  60. CStatusBar  m_wndStatusBar;
  61. CToolBar    m_wndToolBar;
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CMainFrame)
  65. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66. // NOTE - the ClassWizard will add and remove member functions here.
  67. //    DO NOT EDIT what you see in these blocks of generated code!
  68. //}}AFX_MSG
  69. afx_msg void OnCustomize();
  70. afx_msg void OnClose();
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. AFX_INLINE void RefreshPanes()
  74. {
  75. ((CMainFrame*)AfxGetMainWnd())->RefreshPanes();
  76. }
  77. /////////////////////////////////////////////////////////////////////////////
  78. //{{AFX_INSERT_LOCATION}}
  79. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  80. #endif // !defined(AFX_MAINFRM_H__F09AFCA0_D058_4459_A180_1F62F89ECA12__INCLUDED_)