X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Update.cpp;h=51eba966c182977e5787340582512cc134b426e3;hb=f7a976b98d8cadadcb54a61e42ddb66e00759689;hp=7360d0d1ef51fe79f1dfe65b332b765b4fb75301;hpb=f1cd93fd02a54259f72e3191d037323a496b2bef;p=modules%2Fshaper.git diff --git a/src/Model/Model_Update.cpp b/src/Model/Model_Update.cpp index 7360d0d1e..51eba966c 100644 --- a/src/Model/Model_Update.cpp +++ b/src/Model/Model_Update.cpp @@ -67,8 +67,11 @@ void Model_Update::processEvent(const std::shared_ptr& theMessag static const Events_ID kOpStartEvent = aLoop->eventByName("StartOperation"); bool isAutomaticChanged = false; if (theMessage->eventID() == kChangedEvent) { // automatic and manual rebuild flag is changed - isAutomatic = - Config_PropManager::findProp("Model update", "automatic_rebuild")->value() == "true"; + bool aPropVal = + Config_PropManager::findProp("Model update", "automatic_rebuild")->value() == "true"; + if (aPropVal == isAutomatic) + return;// nothing to + isAutomatic = aPropVal; } else if (theMessage->eventID() == kRebuildEvent) { // the rebuild command if (isAutomatic == false) { isAutomaticChanged = true; @@ -82,6 +85,8 @@ void Model_Update::processEvent(const std::shared_ptr& theMessag std::set::const_iterator anObjIter = anObjs.cbegin(); for(; anObjIter != anObjs.cend(); anObjIter++) { myJustCreatedOrUpdated.insert(*anObjIter); + // TODO(mpv): check the next line. Came into dev 0.6.1 from BR_PYTHON_PLUGIN + // (*anObjIter)->data()->mustBeUpdated(true); // object must be updated because it was changed } if (theMessage->eventID() == kMovedEvent) return; // this event is for solver update, not here @@ -153,7 +158,7 @@ void Model_Update::updateInDoc(std::shared_ptr theDoc) // all sub-documents one by one std::shared_ptr aDoc = std::dynamic_pointer_cast(theDoc); if (aDoc) { - const std::set& aSubs = aDoc->subDocuments(); + const std::set aSubs = aDoc->subDocuments(true); for(std::set::iterator aSub = aSubs.begin(); aSub != aSubs.end(); aSub++) { DocumentPtr aSubDoc = theDoc->subDocument(*aSub); if (aSubDoc) { @@ -254,7 +259,8 @@ bool Model_Update::updateFeature(FeaturePtr theFeature) std::shared_ptr aSel = std::dynamic_pointer_cast(*aRefsIter); if (!aSel->update()) { // this must be done on execution since it may be long operation - if (!aFactory->isNotObligatory(theFeature->getKind(), theFeature->data()->id(aSel))) + if (!aFactory->isNotObligatory(theFeature->getKind(), theFeature->data()->id(aSel)) && + aFactory->isCase(theFeature, theFeature->data()->id(aSel))) aState = ModelAPI_StateInvalidArgument; } } @@ -268,7 +274,8 @@ bool Model_Update::updateFeature(FeaturePtr theFeature) if (aSelAttr) { if (!aSelAttr->update()) { if (!aFactory->isNotObligatory( - theFeature->getKind(), theFeature->data()->id(aSel))) + theFeature->getKind(), theFeature->data()->id(aSel)) && + aFactory->isCase(theFeature, theFeature->data()->id(aSel))) aState = ModelAPI_StateInvalidArgument; } } @@ -329,7 +336,9 @@ bool Model_Update::updateFeature(FeaturePtr theFeature) } else { // for automatically updated features (on abort, etc) it is necessary to redisplay anyway redisplayWithResults(theFeature, ModelAPI_StateNothing); } - } else { // returns also true is results were updated: for sketch that refers to sub-features but results of sub-features were changed + } else { + // returns also true is results were updated: for sketch that + // refers to sub-features but results of sub-features were changed const std::list >& aResults = theFeature->results(); std::list >::const_iterator aRIter = aResults.begin(); for (; aRIter != aResults.cend(); aRIter++) {