void CollectionPlugin_Group::initAttributes()
{
- data()->addAttribute(CollectionPlugin_Group::LIST_ID(),
- ModelAPI_AttributeSelectionList::typeId());
+ AttributeSelectionListPtr aList = std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(
+ data()->addAttribute(LIST_ID(), ModelAPI_AttributeSelectionList::typeId()));
+ aList->setWholeResultAllowed(true); // allow to select the whole result
}
void CollectionPlugin_Group::execute()
class ModelAPI_AttributeSelectionList : public ModelAPI_Attribute
{
+ /// Flag that indicates that the whole result selection is allowed while the selection type
+ /// may be sub-objects, so, it is the same as all sub-shapes are selected (#3005). It is "false"
+ /// by default.
+ bool myIsWholeResultAllowed;
public:
/// Adds the new reference to the end of the list
/// \param theContext object where the sub-shape was selected
/// Sets a selection filters feature if it is defined for this selection list
MODELAPI_EXPORT virtual void setFilters(FiltersFeaturePtr theFeature) = 0;
+ /// Returns true if the whole result selection corresponds to selection of all sub-shapes.
+ MODELAPI_EXPORT virtual const bool isWholeResultAllowed() const {
+ return myIsWholeResultAllowed;
+ }
+
+ /// Sets whether the whole result selection corresponds to selection of all sub-shapes.
+ MODELAPI_EXPORT virtual void setWholeResultAllowed(const bool theFlag) {
+ myIsWholeResultAllowed = theFlag;
+ }
+
protected:
- /// Objects are created for features automatically
- MODELAPI_EXPORT ModelAPI_AttributeSelectionList();
+ /// Default constructor
+ MODELAPI_EXPORT ModelAPI_AttributeSelectionList() : ModelAPI_Attribute()
+ {myIsWholeResultAllowed = false;}
};