X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Events.cpp;h=e113d3ae7f73b1cbcd66bce97a8dc37b41ff8172;hb=f36409774efce7c530518a1553946c9c76526fb9;hp=7847f99b10a4fca3e4a00a30ba3ed87f84637df6;hpb=d9f67347ca13fdc5da871432165ee5ad66c6f3ff;p=modules%2Fshaper.git diff --git a/src/Model/Model_Events.cpp b/src/Model/Model_Events.cpp index 7847f99b1..e113d3ae7 100644 --- a/src/Model/Model_Events.cpp +++ b/src/Model/Model_Events.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_Events.cxx -// Created: 10 Apr 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 #include @@ -27,11 +41,10 @@ void Model_EventCreator::sendDeleted(const std::shared_ptr& t Events_Loop::loop()->send(aMsg, true); } -void Model_EventCreator::sendReordered(const std::shared_ptr& theDoc, - const std::string& theGroup) const +void Model_EventCreator::sendReordered(const std::shared_ptr& theReordered) const { std::shared_ptr aMsg( - new Model_OrderUpdatedMessage(theDoc, theGroup)); + new Model_OrderUpdatedMessage(theReordered)); Events_Loop::loop()->send(aMsg, true); } @@ -64,7 +77,7 @@ std::shared_ptr Model_ObjectUpdatedMessage::newEmpty() void Model_ObjectUpdatedMessage::Join(const std::shared_ptr& theJoined) { - std::shared_ptr aJoined = + std::shared_ptr aJoined = std::dynamic_pointer_cast(theJoined); std::set::iterator aFIter = aJoined->myObjects.begin(); for (; aFIter != aJoined->myObjects.end(); aFIter++) { @@ -75,16 +88,18 @@ void Model_ObjectUpdatedMessage::Join(const std::shared_ptr /////////////////////// DELETED MESSAGE ///////////////////////////// Model_ObjectDeletedMessage::Model_ObjectDeletedMessage( const std::shared_ptr& theDoc, const std::string& theGroup) - : ModelAPI_ObjectDeletedMessage(messageId(), 0), - myDoc(theDoc) + : ModelAPI_ObjectDeletedMessage(messageId(), 0) { - if (!theGroup.empty()) - myGroups.insert(theGroup); + if (!theGroup.empty()) { + myGroups.push_back( + std::pair, std::string>(theDoc, theGroup)); + } } std::shared_ptr Model_ObjectDeletedMessage::newEmpty() { - return std::shared_ptr(new Model_ObjectDeletedMessage(myDoc, "")); + static const std::shared_ptr anEmpty; + return std::shared_ptr(new Model_ObjectDeletedMessage(anEmpty, "")); } const Events_ID Model_ObjectDeletedMessage::messageId() @@ -95,19 +110,29 @@ const Events_ID Model_ObjectDeletedMessage::messageId() void Model_ObjectDeletedMessage::Join(const std::shared_ptr& theJoined) { - std::shared_ptr aJoined = + std::shared_ptr aJoined = std::dynamic_pointer_cast(theJoined); - std::set::iterator aGIter = aJoined->myGroups.begin(); - for (; aGIter != aJoined->myGroups.end(); aGIter++) { - myGroups.insert(*aGIter); + + const std::list, std::string>>& aJGroups = + aJoined->groups(); + + std::list, std::string>>::iterator aGIter; + std::list, std::string>>::const_iterator aJIter; + for (aJIter = aJGroups.cbegin(); aJIter != aJGroups.cend(); aJIter++) { + for (aGIter = myGroups.begin(); aGIter != myGroups.end(); aGIter++) { + if (aGIter->first == aJIter->first && aGIter->second == aJIter->second) + break; // exists, so no need to insert + } + if (aGIter == myGroups.end()) + myGroups.push_back(*aJIter); } } /////////////////////// REORDERED MESSAGE ///////////////////////////// Model_OrderUpdatedMessage::Model_OrderUpdatedMessage( - const std::shared_ptr& theDoc, const std::string& theGroup) - : ModelAPI_OrderUpdatedMessage(messageId(), 0), - myDoc(theDoc), myGroup(theGroup) + FeaturePtr theReordered, const void* theSender) + : ModelAPI_OrderUpdatedMessage(messageId(), theSender), + myReordered(theReordered) { }