X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModel%2FModel_AttributeBoolean.cpp;h=74901271ef27ba3dd9ddedc362bcf23e28f9a327;hb=27a61e1e61c970b3bfd4b863543aadeac9b65162;hp=d3c0d6bc5aa9f5950f229b09bbc9d5a06549d53b;hpb=a25996a80f13f4af8bd60a90edc3811bbbee3b2d;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeBoolean.cpp b/src/Model/Model_AttributeBoolean.cpp index d3c0d6bc5..74901271e 100644 --- a/src/Model/Model_AttributeBoolean.cpp +++ b/src/Model/Model_AttributeBoolean.cpp @@ -3,30 +3,30 @@ // Author: Vitaly Smetannikov #include "Model_AttributeBoolean.h" -#include "Model_Events.h" -#include +#include +#include using namespace std; void Model_AttributeBoolean::setValue(bool theValue) { - if (myBool->Get() != theValue) { - myBool->Set(theValue? 1 : 0); - static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_UPDATED); - Model_FeatureUpdatedMessage aMsg(owner(), anEvent); - Events_Loop::loop()->send(aMsg); + Standard_Boolean aValue = theValue ? Standard_True : Standard_False; + if (!myIsInitialized || myBool->Get() != aValue) { + myBool->Set(aValue); + owner()->data()->sendAttributeUpdated(this); } } bool Model_AttributeBoolean::value() { - return (myBool->Get() == 1)? true : false; + 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); }