X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Dir.cpp;h=b7c2b1c30223a41bfe0a7e81cdee09b76dad6b52;hb=cdd9efd8fbc75f120188ae16eed7471dc6492ac3;hp=070e94562ff56705f0276b3baf85fec704454e78;hpb=ef0c6c6af8bec0578a0e8f7f12871e02988d4374;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Dir.cpp b/src/GeomData/GeomData_Dir.cpp index 070e94562..b7c2b1c30 100644 --- a/src/GeomData/GeomData_Dir.cpp +++ b/src/GeomData/GeomData_Dir.cpp @@ -5,23 +5,28 @@ #include "GeomData_Dir.h" #include "GeomAPI_Dir.h" #include -#include "Model_Events.h" -#include +#include +#include using namespace std; void GeomData_Dir::setValue(const double theX, const double theY, const double theZ) { - if (myCoords->Value(0) != theX || myCoords->Value(1) != theY || myCoords->Value(2) != theZ) { + if (!myIsInitialized || myCoords->Value(0) != theX || myCoords->Value(1) != theY + || myCoords->Value(2) != theZ) { myCoords->SetValue(0, theX); myCoords->SetValue(1, theY); myCoords->SetValue(2, theZ); - static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_UPDATED); - Model_FeatureUpdatedMessage aMsg(owner(), anEvent); - Events_Loop::loop()->send(aMsg); + owner()->data()->sendAttributeUpdated(this); } } +void GeomData_Dir::setValue(const boost::shared_ptr& theDir) +{ + setValue(theDir->x(), theDir->y(), theDir->z()); + owner()->data()->sendAttributeUpdated(this); +} + double GeomData_Dir::x() const { return myCoords->Value(0); @@ -39,14 +44,14 @@ double GeomData_Dir::z() const boost::shared_ptr GeomData_Dir::dir() { - return boost::shared_ptr(new GeomAPI_Dir( - myCoords->Value(0), myCoords->Value(1), myCoords->Value(2))); + return boost::shared_ptr( + new GeomAPI_Dir(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2))); } GeomData_Dir::GeomData_Dir(TDF_Label& theLabel) { - // check the attribute could be already presented in this doc (after load document) - if (!theLabel.FindAttribute(TDataStd_RealArray::GetID(), myCoords)) { + myIsInitialized = theLabel.FindAttribute(TDataStd_RealArray::GetID(), myCoords) == Standard_True; + if (!myIsInitialized) { // create attribute: not initialized by value yet, just zero myCoords = TDataStd_RealArray::Set(theLabel, 0, 2); }