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__22CB24AE_BB90_499A_86AF_05F3A606A16C__INCLUDED_)
  21. #define AFX_MAINFRM_H__22CB24AE_BB90_499A_86AF_05F3A606A16C__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CSplitterWndEx : public CXTSplitterWnd
  26. {
  27. public:
  28. CSplitterWndEx()
  29. {
  30. m_cyBorder = m_cxBorder = 0;
  31. m_cxSplitter = m_cySplitter = 4;
  32. m_cySplitterGap = m_cxSplitterGap = 4;
  33. }
  34. };
  35. class CPreviewFrame;
  36. class CMainFrame : public CXTPFrameWnd
  37. {
  38. protected: // create from serialization only
  39. CMainFrame();
  40. DECLARE_DYNCREATE(CMainFrame)
  41. // Attributes
  42. public:
  43. CSplitterWndEx m_wndSplitter;
  44. CSplitterWndEx m_wndSplitterCaption;
  45. CSplitterWndEx m_wndSplitterWorkspace;
  46. CSplitterWndEx m_wndSplitterPreview;
  47. CXTCaption       m_wndCaption;
  48. CFont            m_fontCaption;
  49. CXTPDockingPaneManager m_paneManager;
  50. CXTTreeCtrl m_wndTreeCtrl;
  51. CImageList m_ilTreeIcons;
  52. CPreviewFrame* m_pPreviewFrame;
  53. // Operations
  54. public:
  55. BOOL InitializeCaptionBar();
  56. // Overrides
  57. // ClassWizard generated virtual function overrides
  58. //{{AFX_VIRTUAL(CMainFrame)
  59. public:
  60. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  61. protected:
  62. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  63. //}}AFX_VIRTUAL
  64. // Implementation
  65. public:
  66. virtual ~CMainFrame();
  67. #ifdef _DEBUG
  68. virtual void AssertValid() const;
  69. virtual void Dump(CDumpContext& dc) const;
  70. #endif
  71. protected:  // control bar embedded members
  72. CXTPStatusBar  m_wndStatusBar;
  73. CToolBar    m_wndToolBar;
  74. int m_nState;
  75. // Generated message map functions
  76. protected:
  77. //{{AFX_MSG(CMainFrame)
  78. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  79. afx_msg void OnViewOfficexp();
  80. afx_msg void OnUpdateViewOfficexp(CCmdUI* pCmdUI);
  81. afx_msg void OnViewOffice2003();
  82. afx_msg void OnUpdateViewOffice2003(CCmdUI* pCmdUI);
  83. //}}AFX_MSG
  84. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl);
  85. afx_msg void OnEmptyCommand();
  86. afx_msg void OnBuildConfiguration(NMHDR* pNMHDR, LRESULT* pResult);
  87. afx_msg void OnUpdateBuildConfiguration(CCmdUI* pCmdUI);
  88. afx_msg void OnCustomize();
  89. afx_msg LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  90. public:
  91. static CArray<CXTPDockingPaneManager*, CXTPDockingPaneManager*> m_arrManagers;
  92. DECLARE_MESSAGE_MAP()
  93. };
  94. /////////////////////////////////////////////////////////////////////////////
  95. //{{AFX_INSERT_LOCATION}}
  96. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  97. #endif // !defined(AFX_MAINFRM_H__22CB24AE_BB90_499A_86AF_05F3A606A16C__INCLUDED_)