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__23C539D4_D35C_4487_A4DE_CF7DEACA0909__INCLUDED_)
  21. #define AFX_MAINFRM_H__23C539D4_D35C_4487_A4DE_CF7DEACA0909__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "UITaskPanel.h"
  26. #include "UIFrame.h"
  27. class CMainFrame : public CXTPFrameWnd
  28. {
  29. protected: // create from serialization only
  30. CMainFrame();
  31. DECLARE_DYNCREATE(CMainFrame)
  32. // Attributes
  33. public:
  34. CXTSplitterWndEx m_wndSplitter;
  35. CXTPTaskPanel m_wndTaskPanel;
  36. CUIFrame* m_pUIFrame;
  37. // Operations
  38. public:
  39. BOOL CreateTaskPanel();
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CMainFrame)
  43. public:
  44. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  45. protected:
  46. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. virtual ~CMainFrame();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:  // control bar embedded members
  56. CXTPStatusBar  m_wndStatusBar;
  57. CToolBar m_wndToolBar;
  58. void SetTheme(XTPTaskPanelPaintTheme taskPanelTheme);
  59. void CreateTaskPanelItems();
  60. // Generated message map functions
  61. protected:
  62. //{{AFX_MSG(CMainFrame)
  63. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  64. afx_msg void OnThemeOffice2000();
  65. afx_msg void OnUpdateThemeOffice2000(CCmdUI* pCmdUI);
  66. afx_msg void OnThemeOffice2003();
  67. afx_msg void OnUpdateThemeOffice2003(CCmdUI* pCmdUI);
  68. afx_msg void OnThemeNativewinxp();
  69. afx_msg void OnUpdateThemeNativewinxp(CCmdUI* pCmdUI);
  70. afx_msg void OnThemeOffice2000plain();
  71. afx_msg void OnUpdateThemeOffice2000plain(CCmdUI* pCmdUI);
  72. afx_msg void OnThemeOfficexpplain();
  73. afx_msg void OnUpdateThemeOfficexpplain(CCmdUI* pCmdUI);
  74. afx_msg void OnThemeOffice2003plain();
  75. afx_msg void OnUpdateThemeOffice2003plain(CCmdUI* pCmdUI);
  76. afx_msg void OnThemeNativewinxpplain();
  77. afx_msg void OnUpdateThemeNativewinxpplain(CCmdUI* pCmdUI);
  78. afx_msg void OnTaskpanelAnimation();
  79. afx_msg void OnUpdateTaskpanelAnimation(CCmdUI* pCmdUI);
  80. afx_msg void OnViewSearch();
  81. afx_msg void OnThemeCustom();
  82. afx_msg void OnClose();
  83. afx_msg void OnViewUisample();
  84. afx_msg void OnUpdateViewUisample(CCmdUI* pCmdUI);
  85. //}}AFX_MSG
  86. afx_msg void OnCustomize();
  87. afx_msg LRESULT OnTaskPanelNotify(WPARAM wParam, LPARAM lParam);
  88. DECLARE_MESSAGE_MAP()
  89. };
  90. /////////////////////////////////////////////////////////////////////////////
  91. //{{AFX_INSERT_LOCATION}}
  92. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  93. #endif // !defined(AFX_MAINFRM_H__23C539D4_D35C_4487_A4DE_CF7DEACA0909__INCLUDED_)