Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / src / GeomData / GeomData_Point.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef GeomData_Point_H_
22 #define GeomData_Point_H_
23
24 #include "GeomData.h"
25 #include "GeomDataAPI_Point.h"
26
27 #include <TDF_Label.hxx>
28
29 class ModelAPI_ExpressionDouble;
30
31 /**\class GeomData_Point
32  * \ingroup DataModel
33  * \brief Attribute that contains 3D point.
34  */
35 class GeomData_Point : public GeomDataAPI_Point
36 {
37   enum { NUM_COMPONENTS = 3 };
38   /// Expressions for X, Y and Z
39   std::shared_ptr<ModelAPI_ExpressionDouble> myExpression[NUM_COMPONENTS];
40  public:
41   /// Defines the double value
42   GEOMDATA_EXPORT virtual void setValue(const double theX, const double theY, const double theZ);
43   /// Defines the point
44   GEOMDATA_EXPORT virtual void setValue(const std::shared_ptr<GeomAPI_Pnt>& thePoint);
45
46   /// Returns the X double value
47   GEOMDATA_EXPORT virtual double x() const;
48   /// Returns the Y double value
49   GEOMDATA_EXPORT virtual double y() const;
50   /// Returns the Z double value
51   GEOMDATA_EXPORT virtual double z() const;
52   /// Returns the 3D point
53   GEOMDATA_EXPORT virtual std::shared_ptr<GeomAPI_Pnt> pnt();
54
55   /// Defines the calculated double value
56   GEOMDATA_EXPORT virtual
57     void setCalculatedValue(const double theX, const double theY, const double theZ);
58
59   /// Defines the text values
60   GEOMDATA_EXPORT virtual void setText(const std::string& theX,
61                                        const std::string& theY,
62                                        const std::string& theZ);
63
64   /// Returns the X text value
65   GEOMDATA_EXPORT virtual std::string textX();
66   /// Returns the Y text value
67   GEOMDATA_EXPORT virtual std::string textY();
68   /// Returns the Z text value
69   GEOMDATA_EXPORT virtual std::string textZ();
70
71   /// Allows to set expression (text) as invalid (by the parameters listener)
72   GEOMDATA_EXPORT virtual void setExpressionInvalid(int, const bool theFlag);
73
74   /// Returns true if text is invalid
75   GEOMDATA_EXPORT virtual bool expressionInvalid(int);
76
77   /// Allows to set expression (text) error (by the parameters listener)
78   GEOMDATA_EXPORT virtual void setExpressionError(int theComponent, const std::string& theError);
79
80   /// Returns an expression error
81   GEOMDATA_EXPORT virtual std::string expressionError(int theComponent);
82
83   /// Defines the used parameters
84   GEOMDATA_EXPORT virtual void setUsedParameters(int theComponent,
85     const std::set<std::string>& theUsedParameters);
86
87   /// Returns the used parameters
88   GEOMDATA_EXPORT virtual std::set<std::string> usedParameters(int theComponent) const;
89
90  protected:
91   /// Initializes attributes
92   GEOMDATA_EXPORT GeomData_Point();
93   /// Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc)
94   virtual void reinit();
95
96   friend class Model_Data;
97 };
98
99 #endif