X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Obstacle.h;h=cd0cb95d6efdb8d30ab731f2be27d8575f12512a;hb=f7c005b67e48ec7bac99c566fb4f34215ec1a4b1;hp=952a89059557204c92489f325c0803515f854d26;hpb=b6156e45d774963f6c126415e9fb42d32d994bd5;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Obstacle.h b/src/HYDROData/HYDROData_Obstacle.h index 952a8905..cd0cb95d 100644 --- a/src/HYDROData/HYDROData_Obstacle.h +++ b/src/HYDROData/HYDROData_Obstacle.h @@ -1,3 +1,24 @@ +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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 HYDROData_Obstacle_HeaderFile #define HYDROData_Obstacle_HeaderFile @@ -20,7 +41,8 @@ protected: { DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve DataTag_GeomObjectEntry, ///< study entry of the imported GEOM object - DataTag_FilePath ///< imported file path + DataTag_FilePath, ///< imported file path + DataTag_Translation, ///< translation coefficients }; public: @@ -36,6 +58,19 @@ public: */ HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const; + /** + * Update the immersible zone object. + * Call this method whenever you made changes for object data. + */ + HYDRODATA_EXPORT virtual void Update(); + + HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy ); + + /** + * Checks that object has 2D presentation. Reimlemented to retun true. + */ + HYDRODATA_EXPORT virtual bool IsHas2dPrs() const; + /** * Returns the top shape of the object. */ @@ -88,16 +123,36 @@ public: */ HYDRODATA_EXPORT QString GetFilePath() const; - /** + + /** + * Imports shape from IOR. + * \param theIOR the IOR of Geom object + * \return \c true if shape has been successfully imported + */ + HYDRODATA_EXPORT virtual bool ImportFromGeomIOR( const TCollection_AsciiString& theIOR ); + + /** * Stores the study entry of the imported GEOM object. * \param theEntry GEOM object entry */ - HYDRODATA_EXPORT void SetGeomObjectEntry(const QString& theEntry); + HYDRODATA_EXPORT void SetGeomObjectEntry( const TCollection_AsciiString& theEntry ); /** * Returns the imported GEOM object entry. */ - HYDRODATA_EXPORT QString GetGeomObjectEntry() const; + HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectEntry() const; + + /** + * Returns the imported GEOM object name. + */ + HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectName() const; + + /** + * Translate the obstacle to the given distance. + */ + HYDRODATA_EXPORT void Translate( const double theDx, + const double theDy, + const double theDz ); protected: @@ -111,22 +166,14 @@ protected: */ HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const; -protected: - - friend class HYDROData_Iterator; - /** - * Creates new object in the internal data structure. Use higher level objects - * to create objects with real content. + * Returns the type of child altitude object. + * Reimplemented to create obstacle altitude object. */ - HYDRODATA_EXPORT HYDROData_Obstacle(); - - /** - * Destructs properties of the object and object itself, removes it from the document. - */ - virtual HYDRODATA_EXPORT ~HYDROData_Obstacle(); + HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const; private: + /** * Imports shape from the BREP file. * \param theFilePath the path to file @@ -147,6 +194,37 @@ private: * \return shape as TopoDS_Shape (null shape if import was failed) */ TopoDS_Shape ImportSTEP( const QString& theFilePath ) const; + + /** + * Create all necessary child group objects. + */ + void createGroupObjects(); + + /** + * Sets the translation coefficients. + */ + void setTranslation( const double theDx, const double theDy, const double theDz ); + + /** + * Returns the translation coefficients. + */ + bool getTranslation( double& theDx, double& theDy, double& theDz ) const; + +protected: + + friend class HYDROData_Iterator; + + /** + * Creates new object in the internal data structure. Use higher level objects + * to create objects with real content. + */ + HYDRODATA_EXPORT HYDROData_Obstacle(); + + /** + * Destructs properties of the object and object itself, removes it from the document. + */ + virtual HYDRODATA_EXPORT ~HYDROData_Obstacle(); + }; #endif