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

对话框与窗口

开发平台:

Visual C++

  1. // XTPRibbonQuickAccessControls.h: interface for the CXTPRibbonQuickAccessControls class.
  2. //
  3. // This file is a part of the XTREME RIBBON 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. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTPRIBBONQUICKACCESSCONTROLS_H__)
  22. #define __XTPRIBBONQUICKACCESSCONTROLS_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. #include "CommandBars/XTPControl.h"
  28. #include "CommandBars/XTPControls.h"
  29. //===========================================================================
  30. // Summary:
  31. //     CXTPRibbonControls is a CXTPControls derived class. It represents a collection
  32. //     of the controls for Ribbon Bar.
  33. //===========================================================================
  34. class _XTP_EXT_CLASS CXTPRibbonControls : public CXTPControls
  35. {
  36. DECLARE_DYNCREATE(CXTPRibbonControls)
  37. public:
  38. //-----------------------------------------------------------------------
  39. // Summary:
  40. //     Constructs a CXTPRibbonControls object
  41. //-----------------------------------------------------------------------
  42. CXTPRibbonControls();
  43. protected:
  44. //-----------------------------------------------------------------------
  45. // Summary:
  46. //     This method is called when control is removed from collection
  47. // Parameters:
  48. //     pControl - control that removed from collection
  49. //-----------------------------------------------------------------------
  50. virtual void OnControlRemoved(CXTPControl* pControl);
  51. //-----------------------------------------------------------------------
  52. // Summary:
  53. //     This method is called when control is about to be removing from collection
  54. // Parameters:
  55. //     pControl - control that removing from collection
  56. // Returns:
  57. //     TRUE to cancel removing.
  58. //-----------------------------------------------------------------------
  59. virtual BOOL OnControlRemoving(CXTPControl* pControl);
  60. virtual BOOL ShouldSerializeControl(CXTPControl* pControl);
  61. virtual void Copy(CXTPControls* pControls, BOOL bRecursive = FALSE);
  62. };
  63. //===========================================================================
  64. // Summary:
  65. //     CXTPRibbonQuickAccessControls is a CXTPControls derived class.
  66. //     It represents a collection of the controls for quick access controls for Ribbon Bar.
  67. //===========================================================================
  68. class _XTP_EXT_CLASS CXTPRibbonQuickAccessControls : public CXTPControls
  69. {
  70. public:
  71. //-----------------------------------------------------------------------
  72. // Summary:
  73. //     Constructs a CXTPRibbonQuickAccessControls object
  74. //-----------------------------------------------------------------------
  75. CXTPRibbonQuickAccessControls();
  76. //-----------------------------------------------------------------------
  77. // Summary:
  78. //     Destroys a CXTPRibbonQuickAccessControls object, handles cleanup and deallocation
  79. //-----------------------------------------------------------------------
  80. virtual ~CXTPRibbonQuickAccessControls();
  81. public:
  82. //-----------------------------------------------------------------------
  83. // Summary:
  84. //     Call this member to remove a control.
  85. // Parameters:
  86. //     pControl - Control to be removed.
  87. //-----------------------------------------------------------------------
  88. void Remove(CXTPControl* pControl);
  89. //-----------------------------------------------------------------------
  90. // Summary:
  91. //     Call this method to reset quick access controls
  92. //-----------------------------------------------------------------------
  93. void Reset();
  94. //-----------------------------------------------------------------------
  95. // Summary:
  96. //     Call this method to find Duplicate control
  97. // Parameters:
  98. //     pControl - Control to find
  99. // Returns: Pointer to Duplicate control.
  100. //-----------------------------------------------------------------------
  101. CXTPControl* FindDuplicate(CXTPControl* pControl);
  102. int IndexOf(CXTPControl* pControl) const;
  103. protected:
  104. //-----------------------------------------------------------------------
  105. // Summary:
  106. //     This method is called when control is added to collection
  107. // Parameters:
  108. //     pControl - control that added to collection
  109. virtual void OnControlAdded(CXTPControl* pControl);
  110. //-----------------------------------------------------------------------
  111. // Summary:
  112. //     This method is called when control is removed from collection
  113. // Parameters:
  114. //     pControl - control that removed from collection
  115. //-----------------------------------------------------------------------
  116. virtual void OnControlRemoved(CXTPControl* pControl);
  117. protected:
  118. //{{AFX_CODEJOCK_PRIVATE
  119. virtual void RefreshIndexes();
  120. //}}AFX_CODEJOCK_PRIVATE
  121. };
  122. #endif // !defined(__XTPRIBBONQUICKACCESSCONTROLS_H__)