X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.cpp;h=794fcd4fa2a58a459ac81a0cb302d1d87055721f;hb=7b4a6a2a335d41a647e0f6a6becb7c23df042be1;hp=58c2d85fd3384c6ca14a7a3506ce77c5a0306ecf;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.cpp b/src/PartSetPlugin/PartSetPlugin_Part.cpp index 58c2d85fd..794fcd4fa 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Part.cpp @@ -10,6 +10,7 @@ #include "ModelAPI_Data.h" #include "ModelAPI_AttributeDocRef.h" #include +#include using namespace std; @@ -27,11 +28,90 @@ void PartSetPlugin_Part::execute() if (!aResult) { aResult = document()->createPart(data()); setResult(aResult); - aResult->activate(); + // do not activate part by simple execution if it is not loaded yet: it must be explicitly + // activated for this + if (!ModelAPI_Session::get()->isLoadByDemand(aResult->data()->name())) { + // On undo/redo creation of the part result the Object Borwser must get creation event + // earlier that activation of this part event (otherwise the crash is producted) + // So, send a creation event earlier, without any grouping + static Events_ID aCreateID = Events_Loop::eventByName(EVENT_OBJECT_CREATED); + ModelAPI_EventCreator::get()->sendUpdated(aResult, aCreateID, false); + + aResult->activate(); + } + } else { // execute is called for result update anyway + aResult->updateShape(); + } +} + +const std::string& PartSetPlugin_Part::documentToAdd() +{ + // part must be added only to the module document + return ModelAPI_Session::get()->moduleDocument()->kind(); +} + +std::shared_ptr PartSetPlugin_Part::addFeature(std::string theID) +{ + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get() && aDoc->isOpened()) + return aDoc->addFeature(theID); + } + return FeaturePtr(); +} + +int PartSetPlugin_Part::numberOfSubs(bool forTree) const +{ + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get() && aDoc->isOpened()) + return aDoc->numInternalFeatures(); } + return 0; } -std::shared_ptr PartSetPlugin_Part::documentToAdd() +std::shared_ptr PartSetPlugin_Part::subFeature(const int theIndex, bool forTree) { - return ModelAPI_Session::get()->moduleDocument(); + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get() && aDoc->isOpened()) { + return aDoc->internalFeature(theIndex); + } + } + return FeaturePtr(); +} + +int PartSetPlugin_Part::subFeatureId(const int theIndex) const +{ + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get() && aDoc->isOpened()) { + return aDoc->object(ModelAPI_Feature::group(), theIndex)->data()->featureId(); + } + } + return 0; // none +} + +bool PartSetPlugin_Part::isSub(ObjectPtr theObject) const +{ + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + return theObject->document() == aDoc; + } + return false; +} + +void PartSetPlugin_Part::removeFeature(std::shared_ptr theFeature) +{ + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get() && aDoc->isOpened()) + aDoc->removeFeature(theFeature); + } }