X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Events.cpp;h=34d9522d86c42182630f13c92a9a121754a634d8;hb=45400ecc7d183dd2d2edb875bdb36f8fc031bc2c;hp=421c493e27f8ee577ba7ce00695ae54b87be8f31;hpb=b2a34ee4bab2fe2d97f900cbdafcaf122344c46c;p=modules%2Fshaper.git diff --git a/src/Model/Model_Events.cpp b/src/Model/Model_Events.cpp index 421c493e2..34d9522d8 100644 --- a/src/Model/Model_Events.cpp +++ b/src/Model/Model_Events.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Events.cxx // Created: 10 Apr 2014 // Author: Mikhail PONIKAROV @@ -12,19 +14,26 @@ Model_EventCreator MY_CREATOR; void Model_EventCreator::sendUpdated(const ObjectPtr& theObject, const Events_ID& theEvent, const bool isGroupped) const { - boost::shared_ptr aMsg( + std::shared_ptr aMsg( new Model_ObjectUpdatedMessage(theObject, theEvent)); Events_Loop::loop()->send(aMsg, isGroupped); } -void Model_EventCreator::sendDeleted(const boost::shared_ptr& theDoc, +void Model_EventCreator::sendDeleted(const std::shared_ptr& theDoc, const std::string& theGroup) const { - boost::shared_ptr aMsg( + std::shared_ptr aMsg( new Model_ObjectDeletedMessage(theDoc, theGroup)); Events_Loop::loop()->send(aMsg, true); } +void Model_EventCreator::sendReordered(const std::shared_ptr& theReordered) const +{ + std::shared_ptr aMsg( + new Model_OrderUpdatedMessage(theReordered)); + Events_Loop::loop()->send(aMsg, true); +} + Model_EventCreator::Model_EventCreator() { ModelAPI_EventCreator::set(this); @@ -35,8 +44,9 @@ Model_ObjectUpdatedMessage::Model_ObjectUpdatedMessage(const ObjectPtr& theObjec const Events_ID& theEvent) : ModelAPI_ObjectUpdatedMessage(theEvent, 0) { - if (theObject) + if (theObject) { myObjects.insert(theObject); + } } const std::set& Model_ObjectUpdatedMessage::objects() const @@ -44,17 +54,17 @@ const std::set& Model_ObjectUpdatedMessage::objects() const return myObjects; } -boost::shared_ptr Model_ObjectUpdatedMessage::newEmpty() +std::shared_ptr Model_ObjectUpdatedMessage::newEmpty() { ObjectPtr anEmptyObject; - return boost::shared_ptr( + return std::shared_ptr( new Model_ObjectUpdatedMessage(anEmptyObject, eventID())); } -void Model_ObjectUpdatedMessage::Join(const boost::shared_ptr& theJoined) +void Model_ObjectUpdatedMessage::Join(const std::shared_ptr& theJoined) { - boost::shared_ptr aJoined = - boost::dynamic_pointer_cast(theJoined); + std::shared_ptr aJoined = + std::dynamic_pointer_cast(theJoined); std::set::iterator aFIter = aJoined->myObjects.begin(); for (; aFIter != aJoined->myObjects.end(); aFIter++) { myObjects.insert(*aFIter); @@ -63,7 +73,7 @@ void Model_ObjectUpdatedMessage::Join(const boost::shared_ptr& theDoc, const std::string& theGroup) + const std::shared_ptr& theDoc, const std::string& theGroup) : ModelAPI_ObjectDeletedMessage(messageId(), 0), myDoc(theDoc) { @@ -71,9 +81,9 @@ Model_ObjectDeletedMessage::Model_ObjectDeletedMessage( myGroups.insert(theGroup); } -boost::shared_ptr Model_ObjectDeletedMessage::newEmpty() +std::shared_ptr Model_ObjectDeletedMessage::newEmpty() { - return boost::shared_ptr(new Model_ObjectDeletedMessage(myDoc, "")); + return std::shared_ptr(new Model_ObjectDeletedMessage(myDoc, "")); } const Events_ID Model_ObjectDeletedMessage::messageId() @@ -82,12 +92,26 @@ const Events_ID Model_ObjectDeletedMessage::messageId() return MY_ID; } -void Model_ObjectDeletedMessage::Join(const boost::shared_ptr& theJoined) +void Model_ObjectDeletedMessage::Join(const std::shared_ptr& theJoined) { - boost::shared_ptr aJoined = - boost::dynamic_pointer_cast(theJoined); + 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); } } + +/////////////////////// REORDERED MESSAGE ///////////////////////////// +Model_OrderUpdatedMessage::Model_OrderUpdatedMessage( + FeaturePtr theReordered, const void* theSender) + : ModelAPI_OrderUpdatedMessage(messageId(), theSender), + myReordered(theReordered) +{ +} + +const Events_ID Model_OrderUpdatedMessage::messageId() +{ + static Events_ID MY_ID = Events_Loop::eventByName(EVENT_ORDER_UPDATED); + return MY_ID; +}