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

对话框与窗口

开发平台:

Visual C++

  1. // PaneProperties.h : header file
  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_PANEPROPERTIES_H__459C9EAA_E750_419F_BA3D_8AF424923076__INCLUDED_)
  21. #define AFX_PANEPROPERTIES_H__459C9EAA_E750_419F_BA3D_8AF424923076__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. struct FINDCONTROLPARAM
  26. {
  27. CXTPPropertyGridItem* pItem;
  28. BOOL bIncludeSelf;
  29. BOOL bRefresh;
  30. };
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CPaneProperties window
  33. class CPaneProperties : public CPaneHolder
  34. {
  35. typedef void (CPaneProperties::*ONCONTROLVALUECHANGEDINSTANCE)(CXTPControl* pControl, FINDCONTROLPARAM* pParam);
  36. // Construction
  37. public:
  38. CPaneProperties();
  39. // Attributes
  40. public:
  41. CXTPToolBar m_wndToolBar;
  42. CXTPPropertyGrid m_wndPropertyGrid;
  43. int m_nInstanceCount;
  44. CXTPCommandBars* m_pActiveCommandBars;
  45. CPaneHolder* m_pActivePane;
  46. CObject* m_pActiveObject;
  47. CXTPPropertyGridUpdateContext m_stateExpanding;
  48. void Refresh(CPaneHolder* pActivePane = NULL);
  49. void RefreshPaneProperties();
  50. void RefreshToolbarsPane();
  51. void RefreshControlProperties();
  52. void RefreshControlsPane();
  53. void OnPropertyChanged(CXTPControl* pControl);
  54. void FillConstraintsID(CXTPPropertyGridItem* pItem);
  55. void FillConstraintsToolbarsID(CXTPPropertyGridItem* pItem);
  56. void FillConstraintsActionsID(CXTPPropertyGridItem* pItem);
  57. void FillActionProperties(CXTPPropertyGridItem* pCategory, CXTPControlAction* pAction);
  58. void OnControlValueChanged(CXTPPropertyGridItem* pItem );
  59. void OnControlValueChangedInstance(CXTPControl* pControl, FINDCONTROLPARAM* pParam);
  60. void EnableActions();
  61. void CreateActionList(CXTPCommandBars* pCommandBars, CXTPControls* pControls);
  62. BOOL m_bApplyForGroup;
  63. // Operations
  64. public:
  65. // Overrides
  66. // ClassWizard generated virtual function overrides
  67. //{{AFX_VIRTUAL(CPaneProperties)
  68. //}}AFX_VIRTUAL
  69. // Implementation
  70. public:
  71. virtual ~CPaneProperties();
  72. // Generated message map functions
  73. protected:
  74. //{{AFX_MSG(CPaneProperties)
  75. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  76. afx_msg void OnSize(UINT nType, int cx, int cy);
  77. afx_msg void OnPanePropertiesCategorized();
  78. afx_msg void OnUpdatePanePropertiesCategorized(CCmdUI* pCmdUI);
  79. afx_msg void OnPanePropertiesAlphabetic();
  80. afx_msg void OnUpdatePanePropertiesAlphabetic(CCmdUI* pCmdUI);
  81. afx_msg void OnPanePropertiesPages();
  82. afx_msg void OnUpdatePanePropertiesPages(CCmdUI* pCmdUI);
  83. afx_msg void OnSetFocus(CWnd*);
  84. //}}AFX_MSG
  85. afx_msg LRESULT OnGridNotify(WPARAM wParam, LPARAM lParam);
  86. DECLARE_MESSAGE_MAP()
  87. };
  88. /////////////////////////////////////////////////////////////////////////////
  89. //{{AFX_INSERT_LOCATION}}
  90. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  91. #endif // !defined(AFX_PANEPROPERTIES_H__459C9EAA_E750_419F_BA3D_8AF424923076__INCLUDED_)