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__4CCF8A15_BE48_4C19_9F2B_8C1AA1EB4A2C__INCLUDED_)
  21. #define AFX_MAINFRM_H__4CCF8A15_BE48_4C19_9F2B_8C1AA1EB4A2C__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "drawobj.h"
  26. #include "PanePropertyGrid.h"
  27. CXTPPropertyGrid& GetPropertyGrid(CWnd* pFrame = 0);
  28. class CMainFrame : public CXTPMDIFrameWnd
  29. {
  30. DECLARE_DYNAMIC(CMainFrame)
  31. public:
  32. CMainFrame();
  33. // Attributes
  34. public:
  35. CXTPDockingPaneManager m_paneManager;
  36. // Operations
  37. public:
  38. CXTPDockingPaneManager* GetDockingPaneManager() {
  39. return &m_paneManager;
  40. }
  41. CPanePropertyGrid m_panePropertyGrid;
  42. // Operations
  43. public:
  44. void UpdatePropertyGridContent(CDrawView* pView);
  45. CDrawView* m_pView;
  46. BOOL m_bInUpdate;
  47. // Implementation
  48. public:
  49. virtual ~CMainFrame();
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. public:
  55. // control bar embedded members
  56. CToolBar    m_wndToolBar;
  57. CXTPStatusBar  m_wndStatusBar;
  58. CXTPTabClientWnd m_MTIClientWnd;
  59. CXTPPropertyGridUpdateContext m_stateExpanding;
  60. BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  61. // Generated message map functions
  62. protected:
  63. BOOL PreCreateWindow(CREATESTRUCT& cs);
  64. //{{AFX_MSG(CMainFrame)
  65. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66. afx_msg void OnDestroy();
  67. afx_msg LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  68. afx_msg LRESULT OnGridNotify(WPARAM wParam, LPARAM lParam);
  69. afx_msg void OnProperties();
  70. //}}AFX_MSG
  71. afx_msg void OnClose();
  72. afx_msg void OnCustomize();
  73. void OnSetPreviewMode(BOOL bPreview, CPrintPreviewState* pState);
  74. afx_msg LRESULT OnTabbarMouseMsg(WPARAM wParam,LPARAM lParam);
  75. DECLARE_MESSAGE_MAP()
  76. };
  77. inline CXTPPropertyGrid& GetPropertyGrid(CWnd* pFrame) {
  78. if (pFrame == 0) pFrame = AfxGetMainWnd();
  79. return ((CMainFrame*)pFrame)->m_panePropertyGrid.m_wndPropertyGrid;
  80. }
  81. /////////////////////////////////////////////////////////////////////////////
  82. #endif // !defined(AFX_MAINFRM_H__4CCF8A15_BE48_4C19_9F2B_8C1AA1EB4A2C__INCLUDED_)