X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Remove.cpp;h=7bc6f3a1cc358ce8a59614e256de426aadd7c648;hb=2f0f92a23aed113b059b26ae5c84efa74c58348a;hp=2aea700f2a61f4a3e0fdaad6f2d9e485f20dee29;hpb=5d9f5c6e19b94b5b2c4bf8d314b7f7f1c6f49897;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Remove.cpp b/src/PartSetPlugin/PartSetPlugin_Remove.cpp index 2aea700f2..7bc6f3a1c 100644 --- a/src/PartSetPlugin/PartSetPlugin_Remove.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Remove.cpp @@ -1,28 +1,42 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Remove.cxx // Created: 20 May 2014 // Author: Mikhail PONIKAROV #include "PartSetPlugin_Remove.h" #include "PartSetPlugin_Part.h" + #include #include #include +#include +#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(getGroup()) - 1; a >= 0; a--) { - FeaturePtr aFeature = aRoot->feature(getGroup(), a, true); - if (aFeature->getKind() == PartSetPlugin_Part::ID()) { - boost::shared_ptr aPart = - boost::static_pointer_cast(aFeature); - if (aPart->data()->docRef(PartSetPlugin_Part::DOC_REF())->value() == aPManager->currentDocument()) { - // do remove - aPart->data()->docRef(PartSetPlugin_Part::DOC_REF())->value()->close(); - aRoot->removeFeature(aPart); + std::shared_ptr aPManager = ModelAPI_Session::get(); + std::shared_ptr aRoot = aPManager->moduleDocument(); + DocumentPtr aThisDoc = document(); + ResultPtr aPart = ModelAPI_Tools::findPartResult(aRoot, aThisDoc); + if (aPart.get()) { + FeaturePtr aFeature = aRoot->feature(aPart); + if (aFeature) { + // do remove, but don't do real close (features are erased without persistence changes + // document remove may be undoed) + // aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value()->close(); + std::set > aRefFeatures; + aRoot->refsToFeature(aFeature, aRefFeatures); + if (aRefFeatures.empty()) { + aRoot->removeFeature(aFeature); + // the redisplay signal should be flushed in order to erase the feature presentation + // in the viewer after removeFeature from the document + Events_Loop::loop()->flush(Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)); } } }