X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.cpp;h=c40a0eadf3d87fec1a2374001f2e0762cba98d77;hb=f2ced587983e4e9e82c0d16dff6447fb01a5beab;hp=4fff734b89a53bcd5832e695875be50f8718a726;hpb=5d9f5c6e19b94b5b2c4bf8d314b7f7f1c6f49897;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.cpp b/src/PartSetPlugin/PartSetPlugin_Part.cpp index 4fff734b8..c40a0eadf 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Part.cpp @@ -1,12 +1,16 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Part.cxx // Created: 27 Mar 2014 // Author: Mikhail PONIKAROV #include "PartSetPlugin_Part.h" -#include "ModelAPI_PluginManager.h" +#include "ModelAPI_Session.h" #include "ModelAPI_Document.h" #include "ModelAPI_Data.h" #include "ModelAPI_AttributeDocRef.h" +#include +#include using namespace std; @@ -15,20 +19,93 @@ PartSetPlugin_Part::PartSetPlugin_Part() } void PartSetPlugin_Part::initAttributes() +{ // all is in part result +} + +void PartSetPlugin_Part::execute() { - data()->addAttribute(PartSetPlugin_Part::DOC_REF(), ModelAPI_AttributeDocRef::type()); + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (!aResult) { + aResult = document()->createPart(data()); + setResult(aResult); + // 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 Browser must get creation event + // earlier that activation of this part event (otherwise the crash is produced) + // 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(); + } } -void PartSetPlugin_Part::execute() +const std::string& PartSetPlugin_Part::documentToAdd() { - boost::shared_ptr aDocRef = data()->docRef(PartSetPlugin_Part::DOC_REF()); - if (!aDocRef->value()) { // create a document if not yet created - boost::shared_ptr aPartSetDoc = - ModelAPI_PluginManager::get()->rootDocument(); - aDocRef->setValue(aPartSetDoc->subDocument(data()->getName())); + // 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; } -boost::shared_ptr PartSetPlugin_Part::documentToAdd() { - return ModelAPI_PluginManager::get()->rootDocument(); +std::shared_ptr PartSetPlugin_Part::subFeature(const int theIndex, bool forTree) +{ + 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) +{ }