X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Point.h;h=56d9c042ba8ecb8f6bc3d9af2aa317b4e22c4d8e;hb=752c9e02e6aa8ced24e9b53097cb42540d5e6a08;hp=f01814359d3766a3a3401cf00ed17d4d9d7e5289;hpb=32f6c2d8959088d7083711d79ffb7bdc8426f4c7;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Point.h b/src/GeomData/GeomData_Point.h index f01814359..56d9c042b 100644 --- a/src/GeomData/GeomData_Point.h +++ b/src/GeomData/GeomData_Point.h @@ -9,21 +9,19 @@ #include "GeomData.h" #include "GeomDataAPI_Point.h" -#include -#include -#include + #include +class ModelAPI_ExpressionDouble; + /**\class GeomData_Point * \ingroup DataModel * \brief Attribute that contains 3D point. */ - class GeomData_Point : public GeomDataAPI_Point { - Handle_TDataStd_RealArray myCoords; ///< X, Y and Z doubles as real array attribute [0; 2] - Handle_TDataStd_ExtStringArray myTextArray; ///< Text representation of the X, Y and Z attributes [0; 2] - Handle_TDataStd_BooleanArray myExpressionInvalidArray; ///< Flag of invalid expression of the X, Y and Z attributes [0; 2] + enum { NUM_COMPONENTS = 3 }; + std::shared_ptr myExpression[NUM_COMPONENTS]; ///< Expressions for X, Y and Z public: /// Defines the double value GEOMDATA_EXPORT virtual void setValue(const double theX, const double theY, const double theZ); @@ -60,6 +58,19 @@ class GeomData_Point : public GeomDataAPI_Point /// Returns true if text is invalid GEOMDATA_EXPORT virtual bool expressionInvalid(int); + /// Allows to set expression (text) error (by the parameters listener) + GEOMDATA_EXPORT virtual void setExpressionError(int theComponent, const std::string& theError); + + /// Returns an expression error + GEOMDATA_EXPORT virtual std::string expressionError(int theComponent); + + /// Defines the used parameters + GEOMDATA_EXPORT virtual void setUsedParameters(int theComponent, + const std::set& theUsedParameters); + + /// Returns the used parameters + GEOMDATA_EXPORT virtual std::set usedParameters(int theComponent) const; + protected: /// Initializes attributes GEOMDATA_EXPORT GeomData_Point(TDF_Label& theLabel);