concealment="true"
greed="true">
<validator id="GeomValidators_ShapeType" parameters="wire,shell,compsolid,compound"/>
- <validator id="GeomValidators_BodyShapes"/>
+ <validator id="GeomValidators_BodyShapes" parameters="toplevel"/>
</shape_selector>
<multi_selector id="subshapes"
label="Sub-Shapes to keep:"
#include <ModelAPI_AttributeSelectionList.h>
#include <ModelAPI_Object.h>
#include <ModelAPI_ResultConstruction.h>
+#include <ModelAPI_Tools.h>
bool GeomValidators_BodyShapes::isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
theError = "Error: Result construction selected.";
return false;
}
+ // additional check that the selected object is top-level result
+ if (theArguments.size() > 0 && *(theArguments.rbegin()) == "toplevel") {
+ if (ModelAPI_Tools::compSolidOwner(aContext).get()) {
+ theError = "Error: Only higher level shape allowed.";
+ return false;
+ }
+ }
} else if(anAttributeType == ModelAPI_AttributeSelectionList::typeId()) {
AttributeSelectionListPtr anAttrSelectionList =
std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(theAttribute);