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__B5CB55FF_C0FB_47A3_9B71_22E9C44D46AE__INCLUDED_)
  21. #define AFX_MAINFRM_H__B5CB55FF_C0FB_47A3_9B71_22E9C44D46AE__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CSearchOptionsView;
  26. class CSearchOptionsPane;
  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. inline CXTSplitterWnd& GetSplitterWnd() {
  38. return m_wndSplitter;
  39. }
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CMainFrame)
  43. public:
  44. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  45. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. public:
  49. void ToggleSearchPane();
  50. virtual ~CMainFrame();
  51. CSearchOptionsView* GetRightPane();
  52. #ifdef _DEBUG
  53. virtual void AssertValid() const;
  54. virtual void Dump(CDumpContext& dc) const;
  55. #endif
  56. protected:  // control bar embedded members
  57. void SetTheme(int iTheme);
  58. CXTSplitterWndEx m_wndSplitter;
  59. CXTPStatusBar   m_wndStatusBar;
  60. CXTRegistryManager m_regMgr;
  61. int            m_iTheme;
  62. bool             m_bSearchHidden;
  63. CSearchOptionsPane* m_pSearchOptionsPane;
  64. CSearchOptionsView* m_pSearchOptionsView;
  65. // Generated message map functions
  66. protected:
  67. //{{AFX_MSG(CMainFrame)
  68. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  69. afx_msg void OnToggleSearch();
  70. afx_msg void OnUpdateToggleSearch(CCmdUI* pCmdUI);
  71. afx_msg void OnViewThemeOfficeXP();
  72. afx_msg void OnUpdateViewThemeOfficeXP(CCmdUI* pCmdUI);
  73. afx_msg void OnClose();
  74. //}}AFX_MSG
  75. afx_msg void OnCustomize();
  76. afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
  77. afx_msg void OnViewStyle(UINT nCommandID);
  78. DECLARE_MESSAGE_MAP()
  79. };
  80. /////////////////////////////////////////////////////////////////////////////
  81. //{{AFX_INSERT_LOCATION}}
  82. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  83. #endif // !defined(AFX_MAINFRM_H__B5CB55FF_C0FB_47A3_9B71_22E9C44D46AE__INCLUDED_)