X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Remove.cpp;h=0c47368fc1eeb4ea8c56f0a99c44e78b33c3eb1a;hb=0b503091623876eda1ae9214e32f8831ef03778b;hp=da0dd7ee15654c3047d3a29715bd7558676a27fd;hpb=4da5ef887414bca016f01f3f4567d5788977dcba;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Remove.cpp b/src/PartSetPlugin/PartSetPlugin_Remove.cpp index da0dd7ee1..0c47368fc 100644 --- a/src/PartSetPlugin/PartSetPlugin_Remove.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Remove.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Remove.cxx // Created: 20 May 2014 // Author: Mikhail PONIKAROV @@ -8,25 +10,29 @@ #include #include #include +#include +#include void PartSetPlugin_Remove::execute() { - boost::shared_ptr aPManager = ModelAPI_PluginManager::get(); - boost::shared_ptr aRoot = aPManager->rootDocument(); - boost::shared_ptr aCurrent; - boost::shared_ptr a; - for(int a = aRoot->size(ModelAPI_Feature::group()) - 1; a >= 0; a--) { - FeaturePtr aFeature = boost::dynamic_pointer_cast( - aRoot->object(ModelAPI_Feature::group(), a)); - if (aFeature->getKind() == PartSetPlugin_Part::ID()) { - boost::shared_ptr aPart = - boost::static_pointer_cast(aFeature); - if (aPart && aPart->firstResult() && - aPart->firstResult()->data()->docRef(ModelAPI_ResultPart::DOC_REF())->value() == - aPManager->currentDocument()) { + std::shared_ptr aPManager = ModelAPI_Session::get(); + std::shared_ptr aRoot = aPManager->moduleDocument(); + std::shared_ptr aCurrent; + std::shared_ptr a; + for (int a = aRoot->size(ModelAPI_ResultPart::group()) - 1; a >= 0; a--) { + ResultPartPtr aPart = std::dynamic_pointer_cast( + aRoot->object(ModelAPI_ResultPart::group(), a)); + if (aPart + && aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value() + == aPManager->activeDocument()) { + FeaturePtr aFeature = aRoot->feature(aPart); + if (aFeature) { // do remove - aPart->firstResult()->data()->docRef(ModelAPI_ResultPart::DOC_REF())->value()->close(); - aRoot->removeFeature(aPart); + aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value()->close(); + std::set > aRefFeatures; + aRoot->refsToFeature(aFeature, aRefFeatures); + if (aRefFeatures.empty()) + aRoot->removeFeature(aFeature); } } }