X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.cpp;h=4eee01130ea56cad1a35f415f88a224171b7bc55;hb=f9426a402de748e9d13085856a7cf72a3659135d;hp=31759862f1fe20f53d1bc72133dc191f94c8772e;hpb=f5730610627de0f531514f1a5118c38f40c28c11;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.cpp b/src/PartSetPlugin/PartSetPlugin_Part.cpp index 31759862f..4eee01130 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Part.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSetPlugin_Part.cxx -// Created: 27 Mar 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 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_Session.h" @@ -12,8 +26,6 @@ #include #include -using namespace std; - PartSetPlugin_Part::PartSetPlugin_Part() { } @@ -30,7 +42,9 @@ void PartSetPlugin_Part::execute() 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())) { + 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 @@ -108,10 +122,14 @@ bool PartSetPlugin_Part::isSub(ObjectPtr theObject) const void PartSetPlugin_Part::removeFeature(std::shared_ptr theFeature) { +} + +void PartSetPlugin_Part::erase() { ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); if (aResult.get()) { DocumentPtr aDoc = aResult->partDoc(); - if (aDoc.get() && aDoc->isOpened()) - aDoc->removeFeature(theFeature); + if (aDoc.get()) + aDoc->eraseAllFeatures(); } + ModelAPI_Feature::erase(); }