Salome HOME
Issue #3150: Turn On/Off Isos for multi-selection
[modules/shaper.git] / src / GeomData / GeomData_Point.cpp
index 8f5923df1a85b469687b7ca81f2c807f018f0543..0d1ff198f41dec8874ff0705fb052862a75c88a0 100644 (file)
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        GeomData_Point.cxx
-// Created:     24 Apr 2014
-// Author:      Mikhail PONIKAROV
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #include "GeomData_Point.h"
 
@@ -66,6 +79,41 @@ double GeomData_Point::z() const
   return myExpression[2]->value();
 }
 
+void GeomData_Point::setX(const double theX)
+{
+  if (!myIsInitialized) {
+    setCalculatedValue(theX, 0, 0);
+  } else if (x() != theX) {
+    myExpression[0]->setValue(theX);
+    myExpression[0]->setText(""); // uninitialize the text
+    owner()->data()->sendAttributeUpdated(this);
+  }
+}
+
+void GeomData_Point::setY(const double theY)
+{
+  if (!myIsInitialized) {
+    setCalculatedValue(0, theY, 0);
+  } else if (y() != theY) {
+    myExpression[1]->setValue(theY);
+    myExpression[1]->setText(""); // uninitialize the text
+    owner()->data()->sendAttributeUpdated(this);
+  }
+}
+
+void GeomData_Point::setZ(const double theZ)
+{
+  if (!myIsInitialized) {
+    setCalculatedValue(0, 0, theZ);
+  }
+  else if (z() != theZ) {
+    myExpression[2]->setValue(theZ);
+    myExpression[2]->setText(""); // uninitialize the text
+    owner()->data()->sendAttributeUpdated(this);
+  }
+}
+
+
 std::shared_ptr<GeomAPI_Pnt> GeomData_Point::pnt()
 {
   std::shared_ptr<GeomAPI_Pnt> aResult(new GeomAPI_Pnt(x(), y(), z()));
@@ -86,6 +134,48 @@ void GeomData_Point::setText(const std::string& theX,
   }
 }
 
+void GeomData_Point::setTextX(const std::string& theX)
+{
+  if (!myIsInitialized) {
+    static const std::string aDefaultText = "0";
+    setText(theX, aDefaultText, aDefaultText);
+  }
+  else if (textX() != theX) {
+    myExpression[0]->setText(theX);
+    // Send it to evaluator to convert into the double and store in the attribute
+    ModelAPI_AttributeEvalMessage::send(owner()->data()->attribute(id()), this);
+    owner()->data()->sendAttributeUpdated(this);
+  }
+}
+
+void GeomData_Point::setTextY(const std::string& theY)
+{
+  if (!myIsInitialized) {
+    static const std::string aDefaultText = "0";
+    setText(aDefaultText, theY, aDefaultText);
+  }
+  else if (textY() != theY) {
+    myExpression[1]->setText(theY);
+    // Send it to evaluator to convert into the double and store in the attribute
+    ModelAPI_AttributeEvalMessage::send(owner()->data()->attribute(id()), this);
+    owner()->data()->sendAttributeUpdated(this);
+  }
+}
+
+void GeomData_Point::setTextZ(const std::string& theZ)
+{
+  if (!myIsInitialized) {
+    static const std::string aDefaultText = "0";
+    setText(aDefaultText, aDefaultText, theZ);
+  }
+  else if (textZ() != theZ) {
+    myExpression[2]->setText(theZ);
+    // Send it to evaluator to convert into the double and store in the attribute
+    ModelAPI_AttributeEvalMessage::send(owner()->data()->attribute(id()), this);
+    owner()->data()->sendAttributeUpdated(this);
+  }
+}
+
 std::string GeomData_Point::textX()
 {
   return myExpression[0]->text();