X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.cpp;h=4be84a309dd0415fb36cf169a853328447e630fa;hb=8031e4f1c6fb3b346fb3fd24cbdd77b6f9c1efad;hp=c8beaeac9bf40be39d76146398cc72cc0a0848fa;hpb=037c2e978c242407cc2e4357a84c3ffead3e877d;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.cpp b/src/PartSetPlugin/PartSetPlugin_Part.cpp index c8beaeac9..4be84a309 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Part.cpp @@ -1,40 +1,130 @@ -// File: PartSetPlugin_Part.cxx -// Created: 27 Mar 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #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 - -using namespace std; +#include PartSetPlugin_Part::PartSetPlugin_Part() { } void PartSetPlugin_Part::initAttributes() +{ // all is in part result +} + +void PartSetPlugin_Part::execute() +{ + 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 + std::shared_ptr aDocRef = + aResult->data()->document(ModelAPI_ResultPart::DOC_REF()); + if (!ModelAPI_Session::get()->isLoadByDemand(aResult->data()->name(), aDocRef->docId())) { + // 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(); + } +} + +const std::string& PartSetPlugin_Part::documentToAdd() { - data()->addAttribute(PartSetPlugin_Part::DOC_REF(), ModelAPI_AttributeDocRef::type()); + // part must be added only to the module document + return ModelAPI_Session::get()->moduleDocument()->kind(); } -void PartSetPlugin_Part::execute() +std::shared_ptr PartSetPlugin_Part::addFeature(std::string theID) { - 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()->name())); + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get() && aDoc->isOpened()) + return aDoc->addFeature(theID); } - // create a result only once - if (results().empty()) { - boost::shared_ptr aResult = document()->createPart(data()); - setResult(aResult); + 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::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(); +} +//LCOV_EXCL_START +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 +} +//LCOV_EXCL_STOP +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; } -boost::shared_ptr PartSetPlugin_Part::documentToAdd() { - return ModelAPI_PluginManager::get()->rootDocument(); +void PartSetPlugin_Part::erase() { + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (aResult.get()) { + DocumentPtr aDoc = aResult->partDoc(); + if (aDoc.get()) + aDoc->eraseAllFeatures(); + } + ModelAPI_Feature::erase(); }