X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Remove.cpp;h=dee53bf5600c1e2fac4ceabc4d5b34968c4f0fef;hb=cb0a7bdbea9f94ea30879522b230cbe773b60dc3;hp=d77712bb34a01cd5c025da5b44165a95fc525dc8;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Remove.cpp b/src/PartSetPlugin/PartSetPlugin_Remove.cpp index d77712bb3..dee53bf56 100644 --- a/src/PartSetPlugin/PartSetPlugin_Remove.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Remove.cpp @@ -1,34 +1,55 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSetPlugin_Remove.cxx -// Created: 20 May 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_Remove.h" #include "PartSetPlugin_Part.h" + #include #include #include #include #include +#include +#include +#include + +#include void PartSetPlugin_Remove::execute() { 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->data()->document(ModelAPI_ResultPart::DOC_REF())->value()->close(); + 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)); } } }