2 #ifndef HYDROData_Obstacle_HeaderFile
3 #define HYDROData_Obstacle_HeaderFile
5 #include "HYDROData_ArtificialObject.h"
7 DEFINE_STANDARD_HANDLE(HYDROData_Obstacle, HYDROData_ArtificialObject)
9 /**\class HYDROData_Obstacle
13 class HYDROData_Obstacle : public HYDROData_ArtificialObject
17 * Enumeration of tags corresponding to the persistent object parameters.
21 DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve
22 DataTag_GeomObjectEntry, ///< study entry of the imported GEOM object
23 DataTag_FilePath, ///< imported file path
24 DataTag_Translation, ///< translation coefficients
28 DEFINE_STANDARD_RTTI(HYDROData_Obstacle);
31 * Returns the kind of this object. Must be redefined in all objects of known type.
33 HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_OBSTACLE;}
36 * Dump object to Python script representation.
38 HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
41 * Update the immersible zone object.
42 * Call this method whenever you made changes for object data.
44 HYDRODATA_EXPORT virtual void Update();
46 HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
49 * Checks that object has 2D presentation. Reimlemented to retun true.
51 HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
54 * Returns the top shape of the object.
56 HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const;
59 * Returns the 3d shape of the object.
61 HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const;
64 * Returns default filling color for new obstacle.
66 HYDRODATA_EXPORT static QColor DefaultFillingColor();
69 * Returns default border color for new obstacle.
71 HYDRODATA_EXPORT static QColor DefaultBorderColor();
75 * Sets the 3d shape of the object.
77 HYDRODATA_EXPORT virtual void SetShape3D( const TopoDS_Shape& theShape );
82 * Imports shape from file containing geometrical object and sets this
83 * shape as the obstacle shape.
84 * The supported file types:
89 * \param theFilePath the path to file
90 * \return \c true if file has been successfully read
92 HYDRODATA_EXPORT virtual bool ImportFromFile( const QString& theFilePath );
95 * Stores the file path of the imported file.
96 * \param theFilePath file path
98 HYDRODATA_EXPORT void SetFilePath(const QString& theFilePath);
101 * Returns the imported file path.
103 HYDRODATA_EXPORT QString GetFilePath() const;
107 * Imports shape from IOR.
108 * \param theIOR the IOR of Geom object
109 * \return \c true if shape has been successfully imported
111 HYDRODATA_EXPORT virtual bool ImportFromGeomIOR( const TCollection_AsciiString& theIOR );
114 * Stores the study entry of the imported GEOM object.
115 * \param theEntry GEOM object entry
117 HYDRODATA_EXPORT void SetGeomObjectEntry( const TCollection_AsciiString& theEntry );
120 * Returns the imported GEOM object entry.
122 HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectEntry() const;
125 * Returns the imported GEOM object name.
127 HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectName() const;
130 * Translate the obstacle to the given distance.
132 HYDRODATA_EXPORT void Translate( const double theDx,
134 const double theDz );
139 * Returns default filling color for new object.
141 HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const;
144 * Returns default border color for new object.
146 HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const;
149 * Returns the type of child altitude object.
150 * Reimplemented to create obstacle altitude object.
152 HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const;
157 * Imports shape from the BREP file.
158 * \param theFilePath the path to file
159 * \return shape as TopoDS_Shape (null shape if import was failed)
161 TopoDS_Shape ImportBREP( const QString& theFilePath ) const;
164 * Imports shape from the IGES file.
165 * \param theFilePath the path to file
166 * \return shape as TopoDS_Shape (null shape if import was failed)
168 TopoDS_Shape ImportIGES( const QString& theFilePath ) const;
171 * Imports shape from the STEP file.
172 * \param theFilePath the path to file
173 * \return shape as TopoDS_Shape (null shape if import was failed)
175 TopoDS_Shape ImportSTEP( const QString& theFilePath ) const;
178 * Create all necessary child group objects.
180 void createGroupObjects();
183 * Sets the translation coefficients.
185 void setTranslation( const double theDx, const double theDy, const double theDz );
188 * Returns the translation coefficients.
190 bool getTranslation( double& theDx, double& theDy, double& theDz ) const;
194 friend class HYDROData_Iterator;
197 * Creates new object in the internal data structure. Use higher level objects
198 * to create objects with real content.
200 HYDRODATA_EXPORT HYDROData_Obstacle();
203 * Destructs properties of the object and object itself, removes it from the document.
205 virtual HYDRODATA_EXPORT ~HYDROData_Obstacle();