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

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_UIFRAME_H__88B05ED1_5789_4D06_B733_2B4CB9B7A899__INCLUDED_)
  2. #define AFX_UIFRAME_H__88B05ED1_5789_4D06_B733_2B4CB9B7A899__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // UIFrame.h : header file
  7. //
  8. #include "UITaskPanel.h"
  9. class CChildView : public CWnd
  10. {
  11. // Construction
  12. public:
  13. CChildView();
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CChildView)
  21. protected:
  22. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CChildView();
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(CChildView)
  30. afx_msg void OnPaint();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CUIFrame frame
  36. class CUIFrame : public CFrameWnd
  37. {
  38. DECLARE_DYNCREATE(CUIFrame)
  39. public:
  40. CUIFrame();           // protected constructor used by dynamic creation
  41. CChildView m_wndView;
  42. CUITaskPanel m_wndTaskPanel;
  43. CXTPStatusBar  m_wndStatusBar;
  44. CXTSplitterWndEx m_wndSplitter;
  45. // Attributes
  46. public:
  47. // Operations
  48. public:
  49. // Overrides
  50. // ClassWizard generated virtual function overrides
  51. //{{AFX_VIRTUAL(CUIFrame)
  52. public:
  53. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  54. protected:
  55. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  56. //}}AFX_VIRTUAL
  57. // Implementation
  58. protected:
  59. virtual ~CUIFrame();
  60. // Generated message map functions
  61. //{{AFX_MSG(CUIFrame)
  62. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  63. afx_msg void OnSetFocus(CWnd* pOldWnd);
  64. afx_msg void OnClose();
  65. LRESULT OnTaskPanelNotify(WPARAM wParam, LPARAM lParam);
  66. //}}AFX_MSG
  67. void SetTheme(XTPTaskPanelPaintTheme taskPanelTheme);
  68. afx_msg void OnThemeOffice2000();
  69. afx_msg void OnUpdateThemeOffice2000(CCmdUI* pCmdUI);
  70. afx_msg void OnThemeOffice2003();
  71. afx_msg void OnUpdateThemeOffice2003(CCmdUI* pCmdUI);
  72. afx_msg void OnThemeNativewinxp();
  73. afx_msg void OnUpdateThemeNativewinxp(CCmdUI* pCmdUI);
  74. afx_msg void OnThemeOffice2000plain();
  75. afx_msg void OnUpdateThemeOffice2000plain(CCmdUI* pCmdUI);
  76. afx_msg void OnThemeOfficexpplain();
  77. afx_msg void OnUpdateThemeOfficexpplain(CCmdUI* pCmdUI);
  78. afx_msg void OnThemeOffice2003plain();
  79. afx_msg void OnUpdateThemeOffice2003plain(CCmdUI* pCmdUI);
  80. afx_msg void OnThemeNativewinxpplain();
  81. afx_msg void OnUpdateThemeNativewinxpplain(CCmdUI* pCmdUI);
  82. afx_msg void OnTaskpanelAnimation();
  83. afx_msg void OnUpdateTaskpanelAnimation(CCmdUI* pCmdUI);
  84. BOOL CreateTaskPanel();
  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_UIFRAME_H__88B05ED1_5789_4D06_B733_2B4CB9B7A899__INCLUDED_)