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__8BCE75FE_E9EE_4DDD_9955_711F4299135C__INCLUDED_)
  21. #define AFX_MAINFRM_H__8BCE75FE_E9EE_4DDD_9955_711F4299135C__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CListViewEx;
  26. class CTreeViewEx;
  27. #define CMainFrameBase CXTPFrameWnd
  28. class CMainFrame : public CMainFrameBase
  29. {
  30. protected: // create from serialization only
  31. CMainFrame();
  32. DECLARE_DYNCREATE(CMainFrame)
  33. // Attributes
  34. public:
  35. // Operations
  36. public:
  37. CListViewEx* m_pListView;
  38. CTreeViewEx* m_pTreeView;
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CMainFrame)
  42. public:
  43. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  44. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~CMainFrame();
  49. CListViewEx* GetRightPane();
  50. CTreeViewEx* GetLeftPane();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:  // control bar embedded members
  56. int            m_nColumn;
  57. CXTPStatusBar   m_wndStatusBar;
  58. CXTCaption     m_wndCaption;
  59. CXTSplitterWnd m_wndSplitter;
  60. CXTSplitterWnd m_wndSplitter2;
  61. CXTTreeCtrl*   m_pwndTreeCtrl;
  62. CXTRegistryManager m_regMgr;
  63. int            m_iTheme;
  64. public:
  65. void SetTheme(int iTheme);
  66. void CloseTreeViewPane();
  67. void UpdateButtonStyle(CXTCaptionButton& btnCaption);
  68. // Generated message map functions
  69. protected:
  70. //{{AFX_MSG(CMainFrame)
  71. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  72. afx_msg void OnViewThemeDefault();
  73. afx_msg void OnUpdateViewThemeDefault(CCmdUI* pCmdUI);
  74. afx_msg void OnViewThemeOfficeXP();
  75. afx_msg void OnUpdateViewThemeOfficeXP(CCmdUI* pCmdUI);
  76. afx_msg void OnViewThemeOffice2003();
  77. afx_msg void OnUpdateViewThemeOffice2003(CCmdUI* pCmdUI);
  78. //}}AFX_MSG
  79. afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
  80. afx_msg void OnViewStyle(UINT nCommandID);
  81. afx_msg void OnPushPinButton();
  82. afx_msg void OnPushPinCancel();
  83. afx_msg void OnClose();
  84. afx_msg void OnCustomize();
  85. DECLARE_MESSAGE_MAP()
  86. };
  87. /////////////////////////////////////////////////////////////////////////////
  88. //{{AFX_INSERT_LOCATION}}
  89. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  90. #endif // !defined(AFX_MAINFRM_H__8BCE75FE_E9EE_4DDD_9955_711F4299135C__INCLUDED_)