X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Point.h;h=dbb6baf4510285fbeae520e2284a995a152670f7;hb=f60dc9dd94d5d4b0ea07e3e3cbfd5b3028f0942d;hp=3c08a706f641db6cbb10fd95d3eb8e0e7fe266f2;hpb=ba08b49c900003e00c5fdb67d80d1a9bb8134358;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Point.h b/src/GeomData/GeomData_Point.h index 3c08a706f..dbb6baf45 100644 --- a/src/GeomData/GeomData_Point.h +++ b/src/GeomData/GeomData_Point.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomData_Point.h -// Created: 24 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 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 +// #ifndef GeomData_Point_H_ #define GeomData_Point_H_ @@ -21,7 +35,8 @@ class ModelAPI_ExpressionDouble; class GeomData_Point : public GeomDataAPI_Point { enum { NUM_COMPONENTS = 3 }; - std::shared_ptr myExpression[NUM_COMPONENTS]; ///< Expressions for X, Y and Z + /// Expressions for X, Y and Z + std::shared_ptr myExpression[NUM_COMPONENTS]; public: /// Defines the double value GEOMDATA_EXPORT virtual void setValue(const double theX, const double theY, const double theZ); @@ -34,16 +49,30 @@ class GeomData_Point : public GeomDataAPI_Point GEOMDATA_EXPORT virtual double y() const; /// Returns the Z double value GEOMDATA_EXPORT virtual double z() const; + /// Defines the X coordinate value + GEOMDATA_EXPORT void setX(const double theX); + /// Defines the Y coordinate value + GEOMDATA_EXPORT void setY(const double theY); + /// Defines the Z coordinate value + GEOMDATA_EXPORT void setZ(const double theZ); + /// Returns the 3D point GEOMDATA_EXPORT virtual std::shared_ptr pnt(); /// Defines the calculated double value - GEOMDATA_EXPORT virtual void setCalculatedValue(const double theX, const double theY, const double theZ); + GEOMDATA_EXPORT virtual + void setCalculatedValue(const double theX, const double theY, const double theZ); /// Defines the text values GEOMDATA_EXPORT virtual void setText(const std::string& theX, const std::string& theY, const std::string& theZ); + /// Defines the X text value + GEOMDATA_EXPORT virtual void setTextX(const std::string& theX); + /// Defines the Y text value + GEOMDATA_EXPORT virtual void setTextY(const std::string& theY); + /// Defines the Z text value + GEOMDATA_EXPORT virtual void setTextZ(const std::string& theZ); /// Returns the X text value GEOMDATA_EXPORT virtual std::string textX(); @@ -65,7 +94,7 @@ class GeomData_Point : public GeomDataAPI_Point GEOMDATA_EXPORT virtual std::string expressionError(int theComponent); /// Defines the used parameters - GEOMDATA_EXPORT virtual void setUsedParameters(int theComponent, + GEOMDATA_EXPORT virtual void setUsedParameters(int theComponent, const std::set& theUsedParameters); /// Returns the used parameters @@ -74,6 +103,8 @@ class GeomData_Point : public GeomDataAPI_Point protected: /// Initializes attributes GEOMDATA_EXPORT GeomData_Point(); + /// Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc) + virtual void reinit(); friend class Model_Data; };