X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Point2D.cpp;h=e02de3eefd3f8ef0fd1237406bea959da05e5851;hb=b6f308f901ef00da365c40bab25c5f03b547adf0;hp=314a0ab79468c6d545e651dcdfa2a70b963b3ac2;hpb=5e6c61f177b2d7f07fcf94abaf96de4f8366f27b;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Point2D.cpp b/src/GeomData/GeomData_Point2D.cpp index 314a0ab79..e02de3eef 100644 --- a/src/GeomData/GeomData_Point2D.cpp +++ b/src/GeomData/GeomData_Point2D.cpp @@ -8,6 +8,7 @@ #include #include #include +#include using namespace std; @@ -42,11 +43,61 @@ std::shared_ptr GeomData_Point2D::pnt() return aResult; } +void GeomData_Point2D::setText(const std::string& theX, + const std::string& theY) +{ + TCollection_ExtendedString aX(theX.c_str()); + TCollection_ExtendedString aY(theY.c_str()); + + if (!myIsInitialized || + myTextArray->Value(0) != aX || + myTextArray->Value(1) != aY) { + myTextArray->SetValue(0, aX); + myTextArray->SetValue(1, aY); + owner()->data()->sendAttributeUpdated(this); + // Send it to evaluator to convert into the double and store in the attribute + ModelAPI_AttributeEvalMessage::send(owner()->data()->attribute(id()), this); + } +} + +std::string GeomData_Point2D::textX() +{ + return TCollection_AsciiString(myTextArray->Value(0)).ToCString();; +} +std::string GeomData_Point2D::textY() +{ + return TCollection_AsciiString(myTextArray->Value(1)).ToCString();; +} + +void GeomData_Point2D::setExpressionInvalid(int theComponent, bool theFlag) +{ + if (!myIsInitialized || myExpressionInvalidArray->Value(theComponent) != theFlag) { + myExpressionInvalidArray->SetValue(theComponent, theFlag); + } +} + +bool GeomData_Point2D::expressionInvalid(int theComponent) +{ + return myExpressionInvalidArray->Value(theComponent); +} + GeomData_Point2D::GeomData_Point2D(TDF_Label& theLabel) { - myIsInitialized = theLabel.FindAttribute(TDataStd_RealArray::GetID(), myCoords) == Standard_True; - if (!myIsInitialized) { + myIsInitialized = true; + + if (theLabel.FindAttribute(TDataStd_RealArray::GetID(), myCoords) != Standard_True) { // create attribute: not initialized by value yet, just zero myCoords = TDataStd_RealArray::Set(theLabel, 0, 1); + myIsInitialized = false; + } + if (theLabel.FindAttribute(TDataStd_ExtStringArray::GetID(), myTextArray) != Standard_True) { + // create attribute: not initialized by value yet, just zero + myTextArray = TDataStd_ExtStringArray::Set(theLabel, 0, 1); + myIsInitialized = false; + } + if (theLabel.FindAttribute(TDataStd_BooleanArray::GetID(), myExpressionInvalidArray) != Standard_True) { + // create attribute: not initialized by value yet, just zero + myExpressionInvalidArray = TDataStd_BooleanArray::Set(theLabel, 0, 1); + myIsInitialized = false; } }