X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_WidgetShapeSelector.cpp;h=0bbeb05e8480d3ddffc8532ae826a2ee2c458f9d;hb=327f5bbd915fb32d21f2e524a8d97536e0e5dd4b;hp=bdd7bba7a1323f37e7fd169f0818493abf2a0019;hpb=ed67f7abf2985c7225b7862c076257825a421993;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetShapeSelector.cpp b/src/PartSet/PartSet_WidgetShapeSelector.cpp old mode 100644 new mode 100755 index bdd7bba7a..0bbeb05e8 --- a/src/PartSet/PartSet_WidgetShapeSelector.cpp +++ b/src/PartSet/PartSet_WidgetShapeSelector.cpp @@ -21,6 +21,13 @@ #include +#include +#include +#include +#include +#include +#include + PartSet_WidgetShapeSelector::PartSet_WidgetShapeSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop, const Config_WidgetAPI* theData, @@ -35,39 +42,80 @@ PartSet_WidgetShapeSelector::~PartSet_WidgetShapeSelector() delete myExternalObjectMgr; } -bool PartSet_WidgetShapeSelector::setObject(ObjectPtr theSelectedObject, GeomShapePtr theShape) +//******************************************************************** +bool PartSet_WidgetShapeSelector::isValidSelectionCustom(const ModuleBase_ViewerPrs& thePrs) { - ObjectPtr aSelectedObject = theSelectedObject; - //GeomShapePtr aShape = theShape; + bool aValid = ModuleBase_WidgetShapeSelector::isValidSelectionCustom(thePrs); + if (aValid) { + ObjectPtr anObject = myWorkshop->selection()->getResult(thePrs); + aValid = myExternalObjectMgr->isValidObject(anObject); + } + return aValid; +} - FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(aSelectedObject); - if (aSelectedFeature == myFeature) // In order to avoid selection of the same object - return false; +//******************************************************************** +void PartSet_WidgetShapeSelector::setObject(ObjectPtr theSelectedObject, GeomShapePtr theShape) +{ + FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(theSelectedObject); // Do check using of external feature std::shared_ptr aSPFeature = std::dynamic_pointer_cast(aSelectedFeature); + // Processing of sketch object + if (aSPFeature.get() != NULL) { + GeomShapePtr aShape = theShape; + if (!aShape.get()) { + ResultPtr aResult = std::dynamic_pointer_cast(theSelectedObject); + if (aResult.get()) { + aShape = aResult->shape(); + } + } + setPointAttribute(theSelectedObject, aShape); + } + else + ModuleBase_WidgetShapeSelector::setObject(theSelectedObject, theShape); +} - // Do check that we can use external feature - if ((aSPFeature.get() != NULL) && aSPFeature->isExternal() && (!myExternalObjectMgr->useExternal())) - return false; - - if (aSPFeature.get() == NULL && theShape.get() != NULL && !theShape->isNull() && myExternalObjectMgr->useExternal()) { - aSelectedObject = myExternalObjectMgr->externalObject(theSelectedObject, theShape, sketch()); - } else { - // Processing of sketch object - if (theShape.get()) { - setPointAttribute(theSelectedObject, theShape); - return true; +void PartSet_WidgetShapeSelector::getGeomSelection(const ModuleBase_ViewerPrs& thePrs, + ObjectPtr& theObject, + GeomShapePtr& theShape) +{ + ModuleBase_WidgetShapeSelector::getGeomSelection(thePrs, theObject, theShape); + + FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(theObject); + std::shared_ptr aSPFeature = + std::dynamic_pointer_cast(aSelectedFeature); + // there is no a sketch feature is selected, but the shape exists, try to create an exernal object + // TODO: unite with the same functionality in PartSet_WidgetShapeSelector + if (aSPFeature.get() == NULL && myExternalObjectMgr->useExternal()) { + GeomShapePtr aShape = theShape; + if (!aShape.get()) { + ResultPtr aResult = myWorkshop->selection()->getResult(thePrs); + if (aResult.get()) + aShape = aResult->shape(); } + if (aShape.get() != NULL && !aShape->isNull()) + theObject = myExternalObjectMgr->externalObject(theObject, aShape, sketch(), myIsInValidate); } - return ModuleBase_WidgetShapeSelector::setObject(aSelectedObject, theShape); +} + +//******************************************************************** +GeomShapePtr PartSet_WidgetShapeSelector::getShape() const +{ + // an empty shape by default + DataPtr aData = myFeature->data(); + AttributePtr anAttribute = aData->attribute(attributeID()); + GeomShapePtr aShape = PartSet_Tools::findShapeBy2DPoint(anAttribute, myWorkshop); + + if (!aShape.get()) + aShape = ModuleBase_WidgetShapeSelector::getShape(); + return aShape; } //******************************************************************** void PartSet_WidgetShapeSelector::restoreAttributeValue(const bool theValid) { ModuleBase_WidgetShapeSelector::restoreAttributeValue(theValid); - myExternalObjectMgr->removeExternal(sketch(), myFeature); + myExternalObjectMgr->removeExternal(sketch(), myFeature, myWorkshop, true); } //******************************************************************** @@ -102,7 +150,7 @@ void PartSet_WidgetShapeSelector::setPointAttribute(ObjectPtr theSelectedObject, // test case is - preselection for distance operation, which contains two points selected on lines if (aPntAttr) aRefAttr->setAttr(aPntAttr); - else if (theSelectedObject) + else aRefAttr->setObject(theSelectedObject); } }