void Model_Document::setCurrentFeature(std::shared_ptr<ModelAPI_Feature> theCurrent,
const bool theVisible)
{
+ // blocks the flush signals to avoid each objects visualization in the viewer
+ // they should not be shown once after all modifications are performed
+ Events_Loop* aLoop = Events_Loop::loop();
+ aLoop->activateFlushes(false);
+
TDF_Label aRefLab = generalLabel().FindChild(TAG_CURRENT_FEATURE);
CompositeFeaturePtr aMain; // main feature that may nest the new current
if (theCurrent.get()) {
aRefLab.ForgetAttribute(TDF_Reference::GetID());
}
// make all features after this feature disabled in reversed order (to remove results without deps)
- static Events_Loop* aLoop = Events_Loop::loop();
static Events_ID aRedispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
+ static Events_ID aCreateEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
static Events_ID aDeleteEvent = aLoop->eventByName(EVENT_OBJECT_DELETED);
bool aPassed = false; // flag that the current object is already passed in cycle
ModelAPI_EventCreator::get()->sendUpdated(anIter, aRedispEvent /*, false*/);
}
}
+ // unblock the flush signals and up them after this
+ aLoop->activateFlushes(true);
+
+ aLoop->flush(aCreateEvent);
aLoop->flush(aRedispEvent);
aLoop->flush(aDeleteEvent);
}
void PartSet_PartDataModel::setLastHistoryItem(const QModelIndex& theIndex)
{
- // the viewer update should be blocked in order to avoid the features blinking before they are
- // hidden
- std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
- new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)));
- Events_Loop::loop()->send(aMsg);
-
SessionPtr aMgr = ModelAPI_Session::get();
DocumentPtr aDoc = partDocument();
std::string aOpName = tr("History change").toStdString();
aDoc->setCurrentFeature(FeaturePtr(), true);
aMgr->finishOperation();
}
- // the viewer update should be unblocked in order to avoid the features blinking before they are
- // hidden
- aMsg = std::shared_ptr<Events_Message>(
- new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
-
- Events_Loop::loop()->send(aMsg);
}
QModelIndex PartSet_PartDataModel::lastHistoryItem() const