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__9D907276_5C73_4B62_A824_6E2EF45A3300__INCLUDED_)
  21. #define AFX_MAINFRM_H__9D907276_5C73_4B62_A824_6E2EF45A3300__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 = 2;
  31. m_cxSplitter = m_cySplitter = 4;
  32. m_cySplitterGap = m_cxSplitterGap = 4;
  33. m_cxBorderShare = m_cyBorderShare = 0;
  34. m_bFlatSplit = TRUE;
  35. m_dwxStyle = XT_SPLIT_NOFULLDRAG|XT_SPLIT_NOBORDER;
  36. m_bFullDrag = FALSE;
  37. }
  38. };
  39. #include "ShortcutPaneMail.h"
  40. #include "ShortcutPaneCalendar.h"
  41. #include "ShortcutPaneFolders.h"
  42. #include "ShortcutPaneContacts.h"
  43. class CMainFrame : public CXTPFrameWnd
  44. , CXTPOffice2007FrameHook
  45. {
  46. protected: // create from serialization only
  47. CMainFrame();
  48. DECLARE_DYNCREATE(CMainFrame)
  49. // Attributes
  50. public:
  51. CSplitterWndEx m_wndSplitter;
  52. CSplitterWndEx m_wndSplitter2;
  53. CXTPShortcutBar m_wndShortcutBar;
  54. CImageList m_ilSmallShortcuts;
  55. CImageList m_ilLargeShortcuts;
  56. BOOL m_bClientPane;
  57. CShortcutPaneMail m_paneMail;
  58. CShortcutPaneCalendar m_paneCalendar;
  59. CShortcutPaneFolders m_paneFolders;
  60. CShortcutPaneContacts m_paneContacts;
  61. // Operations
  62. public:
  63. void CreateShortcutBar();
  64. // Overrides
  65. // ClassWizard generated virtual function overrides
  66. //{{AFX_VIRTUAL(CMainFrame)
  67. public:
  68. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  69. protected:
  70. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  71. //}}AFX_VIRTUAL
  72. // Implementation
  73. public:
  74. virtual ~CMainFrame();
  75. #ifdef _DEBUG
  76. virtual void AssertValid() const;
  77. virtual void Dump(CDumpContext& dc) const;
  78. #endif
  79. protected:  // control bar embedded members
  80. CXTPStatusBar  m_wndStatusBar;
  81. CToolBar m_wndToolBar;
  82. // Generated message map functions
  83. protected:
  84. //{{AFX_MSG(CMainFrame)
  85. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  86. afx_msg void OnThemeOffice2000();
  87. afx_msg void OnUpdateThemeOffice2000(CCmdUI* pCmdUI);
  88. afx_msg void OnThemeOfficexp();
  89. afx_msg void OnUpdateThemeOfficexp(CCmdUI* pCmdUI);
  90. afx_msg void OnThemeOffice2003();
  91. afx_msg void OnUpdateThemeOffice2003(CCmdUI* pCmdUI);
  92. afx_msg void OnThemeOffice2007();
  93. afx_msg void OnUpdateThemeOffice2007(CCmdUI* pCmdUI);
  94. afx_msg void OnClose();
  95. afx_msg void OnThemeClientpane();
  96. afx_msg void OnUpdateThemeClientpane(CCmdUI* pCmdUI);
  97. afx_msg void OnThemeShowexpandbutton();
  98. afx_msg void OnUpdateThemeShowexpandbutton(CCmdUI* pCmdUI);
  99. afx_msg void OnThemeShowactiveitemontop();
  100. afx_msg void OnUpdateThemeShowactiveitemontop(CCmdUI* pCmdUI);
  101. afx_msg void OnThemeAllowfreeresize();
  102. afx_msg void OnUpdateThemeAllowfreeresize(CCmdUI* pCmdUI);
  103. //}}AFX_MSG
  104. afx_msg void OnCustomize();
  105. afx_msg LRESULT OnShortcutBarNotify(WPARAM wParam, LPARAM lParam);
  106. DECLARE_MESSAGE_MAP()
  107. };
  108. /////////////////////////////////////////////////////////////////////////////
  109. //{{AFX_INSERT_LOCATION}}
  110. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  111. #endif // !defined(AFX_MAINFRM_H__9D907276_5C73_4B62_A824_6E2EF45A3300__INCLUDED_)