X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeBoolean.cpp;h=3ebcaf953db0f6a17d9460084274f5cf116628dd;hb=6268ce56824c1df106da799af34f4575f247061a;hp=5472dadf255f13feac8b09704726979751f0d191;hpb=47933cff9cf39f2d420b8a772ac125d2a969d2b5;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeBoolean.cpp b/src/Model/Model_AttributeBoolean.cpp index 5472dadf2..3ebcaf953 100644 --- a/src/Model/Model_AttributeBoolean.cpp +++ b/src/Model/Model_AttributeBoolean.cpp @@ -1,33 +1,34 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_AttributeBoolean.cpp // Created: 2 june 2014 // Author: Vitaly Smetannikov #include "Model_AttributeBoolean.h" -#include "Model_Events.h" -#include +#include +#include using namespace std; void Model_AttributeBoolean::setValue(bool theValue) { Standard_Boolean aValue = theValue ? Standard_True : Standard_False; - if (myBool->Get() != aValue) { + if (!myIsInitialized || myBool->Get() != aValue) { myBool->Set(aValue); - static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_UPDATED); - Model_FeatureUpdatedMessage aMsg(owner(), anEvent); - Events_Loop::loop()->send(aMsg); + owner()->data()->sendAttributeUpdated(this); } } bool Model_AttributeBoolean::value() { - return myBool->Get() == Standard_True; + return myBool->Get() == Standard_True ; } Model_AttributeBoolean::Model_AttributeBoolean(TDF_Label& theLabel) { // check the attribute could be already presented in this doc (after load document) - if (!theLabel.FindAttribute(TDataStd_Integer::GetID(), myBool)) { + myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), myBool) == Standard_True; + if (!myIsInitialized) { // create attribute: not initialized by value yet, just zero myBool = TDataStd_Integer::Set(theLabel, 0); }