1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef GeomDataAPI_Point_H_
22 #define GeomDataAPI_Point_H_
24 #include "GeomDataAPI.h"
25 #include <ModelAPI_Attribute.h>
31 /**\class GeomDataAPI_Point
33 * \brief Attribute that contains 3D point coordinates.
36 class GeomDataAPI_Point : public ModelAPI_Attribute
39 /// Defines the double value
40 GEOMDATAAPI_EXPORT virtual
41 void setValue(const double theX, const double theY, const double theZ) = 0;
43 GEOMDATAAPI_EXPORT virtual void setValue(const std::shared_ptr<GeomAPI_Pnt>& thePoint) = 0;
45 /// Returns the X double value
46 GEOMDATAAPI_EXPORT virtual double x() const = 0;
47 /// Returns the Y double value
48 GEOMDATAAPI_EXPORT virtual double y() const = 0;
49 /// Returns the Z double value
50 GEOMDATAAPI_EXPORT virtual double z() const = 0;
51 /// Returns the 3D point
52 GEOMDATAAPI_EXPORT virtual std::shared_ptr<GeomAPI_Pnt> pnt() = 0;
54 /// Defines the calculated double value
55 GEOMDATAAPI_EXPORT virtual
56 void setCalculatedValue(const double theX, const double theY, const double theZ) = 0;
58 /// Defines the X coordinate value
59 GEOMDATAAPI_EXPORT virtual void setX(const double theX) = 0;
60 /// Defines the Y coordinate value
61 GEOMDATAAPI_EXPORT virtual void setY(const double theY) = 0;
62 /// Defines the Z coordinate value
63 GEOMDATAAPI_EXPORT virtual void setZ(const double theZ) = 0;
65 /// Defines the text values
66 GEOMDATAAPI_EXPORT virtual void setText(const std::string& theX,
67 const std::string& theY,
68 const std::string& theZ) = 0;
70 /// Defines the X text value
71 GEOMDATAAPI_EXPORT virtual void setTextX(const std::string& theX) = 0;
72 /// Defines the Y text value
73 GEOMDATAAPI_EXPORT virtual void setTextY(const std::string& theY) = 0;
74 /// Defines the Z text value
75 GEOMDATAAPI_EXPORT virtual void setTextZ(const std::string& theZ) = 0;
77 /// Returns the text value for X
78 GEOMDATAAPI_EXPORT virtual std::string textX() = 0;
79 /// Returns the text value for Y
80 GEOMDATAAPI_EXPORT virtual std::string textY() = 0;
81 /// Returns the text value for Z
82 GEOMDATAAPI_EXPORT virtual std::string textZ() = 0;
84 /// Point component (x,y,z)
85 enum PointComponent { C_X = 0,
90 /// Allows to set expression (text) as invalid (by the parameters listener)
91 GEOMDATAAPI_EXPORT virtual void setExpressionInvalid(int theComponent, const bool theFlag) = 0;
93 /// Returns true if text is invalid
94 GEOMDATAAPI_EXPORT virtual bool expressionInvalid(int theComponent) = 0;
96 /// Allows to set expression (text) error (by the parameters listener)
97 GEOMDATAAPI_EXPORT virtual
98 void setExpressionError(int theComponent, const std::string& theError) = 0;
100 /// Returns an expression error
101 GEOMDATAAPI_EXPORT virtual std::string expressionError(int theComponent) = 0;
103 /// Defines the used parameters
104 GEOMDATAAPI_EXPORT virtual void setUsedParameters(int theComponent,
105 const std::set<std::string>& theUsedParameters) = 0;
107 /// Returns the used parameters
108 GEOMDATAAPI_EXPORT virtual std::set<std::string> usedParameters(int theComponent) const = 0;
110 /// Returns the type of this class of attributes
111 static std::string typeId()
113 return std::string("Point");
116 /// Returns the type of this class of attributes, not static method
117 GEOMDATAAPI_EXPORT virtual std::string attributeType();
120 /// Objects are created for features automatically
121 GEOMDATAAPI_EXPORT GeomDataAPI_Point();
122 GEOMDATAAPI_EXPORT virtual ~GeomDataAPI_Point();
125 //! Pointer on attribute object
126 typedef std::shared_ptr<GeomDataAPI_Point> AttributePointPtr;