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

对话框与窗口

开发平台:

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__4FA08078_1069_44D7_8380_47F9D64AA544__INCLUDED_)
  21. #define AFX_MAINFRM_H__4FA08078_1069_44D7_8380_47F9D64AA544__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CMainFrame : public CXTPFrameWnd, CXTPOffice2007FrameHook
  26. {
  27. protected: // create from serialization only
  28. CMainFrame();
  29. DECLARE_DYNCREATE(CMainFrame)
  30. // Attributes
  31. public:
  32. // Operations
  33. public:
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CMainFrame)
  37. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CMainFrame();
  42. void AddEdit();
  43. void AddLogo();
  44. void AddAnimation();
  45. void AddButton(int nIcon, int nID);
  46. void AddSwitchButtons();
  47. void AddZoomButton();
  48. void AddZoomSlider();
  49. void AddProgress();
  50. void TestProgress();
  51. CString m_strMessage;
  52. #ifdef _DEBUG
  53. virtual void AssertValid() const;
  54. virtual void Dump(CDumpContext& dc) const;
  55. #endif
  56. protected:  // control bar embedded members
  57. CXTPStatusBar  m_wndStatusBar;
  58. CEdit         m_wndEditCtrl;
  59. CAnimateCtrl  m_wndAnimCtrl;
  60. CProgressCtrl m_wndProgCtrl;
  61. BOOL m_bPlayAnimation;
  62. UINT m_nPaneID;
  63. XTPPaintTheme m_eOfficeTheme;
  64. void SetOfficeTheme(XTPPaintTheme eOfficeTheme);
  65. BOOL UpdateThemeCombo(XTPPaintTheme eOfficeTheme, CXTPControlComboBox* pComboTheme = NULL);
  66. // Generated message map functions
  67. protected:
  68. //{{AFX_MSG(CMainFrame)
  69. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  70. afx_msg void OnClose();
  71. afx_msg void OnStatusBarShowButtons();
  72. afx_msg void OnUpdateStatusBarShowButtons(CCmdUI* pCmdUI);
  73. afx_msg void OnStatusBarShowAviAnimation();
  74. afx_msg void OnUpdateStatusBarShowAviAnimation(CCmdUI* pCmdUI);
  75. afx_msg void OnStatusBarShowProgressBar();
  76. afx_msg void OnUpdateStatusBarShowProgressBar(CCmdUI* pCmdUI);
  77. afx_msg void OnStatusBarShowEditControl();
  78. afx_msg void OnUpdateStatusBarShowEditControl(CCmdUI* pCmdUI);
  79. afx_msg void OnStatusBarShowCompanyLogo();
  80. afx_msg void OnUpdateStatusBarShowCompanyLogo(CCmdUI* pCmdUI);
  81. afx_msg void OnStatusBarPlayAnimation();
  82. afx_msg void OnUpdateStatusBarPlayAnimation(CCmdUI* pCmdUI);
  83. afx_msg void OnStatusBarTestProgress();
  84. afx_msg void OnUpdateStatusBarTestProgress(CCmdUI* pCmdUI);
  85. //}}AFX_MSG
  86. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl);
  87. afx_msg void OnOfficeThemeChanged(NMHDR* pNMHDR, LRESULT* pResult);
  88. afx_msg void OnCustomize();
  89. afx_msg void OnViewTheme(UINT nID);
  90. afx_msg void OnUpdateViewTheme(CCmdUI* pCmdUI);
  91. afx_msg void OnIndicatorButton(UINT nID);
  92. afx_msg void OnUpdateIndicatorButton(CCmdUI* pCmdUI);
  93. DECLARE_MESSAGE_MAP()
  94. };
  95. /////////////////////////////////////////////////////////////////////////////
  96. //{{AFX_INSERT_LOCATION}}
  97. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  98. #endif // !defined(AFX_MAINFRM_H__4FA08078_1069_44D7_8380_47F9D64AA544__INCLUDED_)