X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Document.h;h=e3c7b1c81821d9ebeff01bffad29c1ec17fbda3e;hb=4d4d74dd554819c30f1c8ded5520cc6c25aba56b;hp=b583787ddd8345584f8b24b339212bcc4ee3e663;hpb=2b8ea8694fde14b8536ace837c4e3b87cbb88b93;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Document.h b/src/HYDROData/HYDROData_Document.h index b583787d..e3c7b1c8 100644 --- a/src/HYDROData/HYDROData_Document.h +++ b/src/HYDROData/HYDROData_Document.h @@ -1,12 +1,37 @@ +// Copyright (C) 2014-2015 EDF-R&D +// 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_Document_HeaderFile #define HYDROData_Document_HeaderFile -#include #include - #include +class HYDROData_InterpolatorsFactory; +class HYDROData_IProfilesInterpolator; +class Handle(HYDROData_StricklerTable); +class Handle(HYDROData_LandCoverMap); + class QFile; +class gp_Pnt2d; +class gp_Pnt; +class gp_XYZ; +class gp_XY; /** * Errors that could appear on document open/save actions. @@ -78,13 +103,63 @@ public: //! Dump study document to Python script representation. //! \param theFileName full name of the file to store //! \returns true if document has been successfuly dumped - HYDRODATA_EXPORT bool DumpToPython( const QString& theFileName, + HYDRODATA_EXPORT bool DumpToPython( const QString& thePyScriptPath, const bool theIsMultiFile ) const; //! Dump model data to Python script representation. - HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects, + HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath, + MapOfTreatedObjects& theTreatedObjects, const bool theIsMultiFile ) const; + HYDRODATA_EXPORT void CollectQGISValues( const QString& theAttrName, + QStringList& theAttrValues, + QStringList& theStricklerTypes ) const; + +public: + + // Methods to work with objects presentation. + + //! Returns the order of objects presentation. Objects in returned sequence + //! are order from top to low depending on z-level parameter. Objects that + //! have no z-level parameter are located at the end of sequence and + //! sorted alphabetically. + //! Only the following types of objects considered: + //! 1. KIND_IMAGE + //! 2. KIND_IMMERSIBLE_ZONE + //! 3. KIND_CHANNEL + //! 4. KIND_RIVER + //! 5. KIND_STREAM + //! 6. KIND_OBSTACLE + //! 7. KIND_DIGUE + //! 8. KIND_POLYLINEXY + //! 9. KIND_ZONE + //! \param theIsAll if flag is true then all objects will be included, + //! otherwise only objects which have the z-level parameter + //! \returns ordered sequence of objects + HYDRODATA_EXPORT HYDROData_SequenceOfObjects GetObjectsLayerOrder( + const Standard_Boolean theIsAll = Standard_True ) const; + + //! Sets the order of objects presentation. + HYDRODATA_EXPORT void SetObjectsLayerOrder( const HYDROData_SequenceOfObjects& theOrder ); + + //! Show object at the top of other model objects. If the object + //! already has the z-level parameter then nothing will be done. + HYDRODATA_EXPORT void Show( const Handle_HYDROData_Entity& theObject ); + + //! Show sequence of objects at the top of other model objects. + //! The objects from the sequence will be sorted alphabetically at first. + HYDRODATA_EXPORT void Show( const HYDROData_SequenceOfObjects& theObjects ); + + //! Removes the order of objects presentation. + HYDRODATA_EXPORT void RemoveObjectsLayerOrder(); + + HYDRODATA_EXPORT void GetLocalCS( double&, double& ) const; + HYDRODATA_EXPORT void SetLocalCS( double, double ); + HYDRODATA_EXPORT void Transform( double& X, double& Y, bool IsToLocalCS ) const; + HYDRODATA_EXPORT void Transform( gp_Pnt& thePnt, bool IsToLocalCS ) const; + HYDRODATA_EXPORT void Transform( gp_XYZ& thePnt, bool IsToLocalCS ) const; + HYDRODATA_EXPORT void Transform( gp_XY& thePnt, bool IsToLocalCS ) const; + public: //! Starts a new operation (opens a tansaction) @@ -137,8 +212,27 @@ public: const QStringList& theNames, const ObjectKind theObjectKind = KIND_UNKNOWN ) const; -protected: +public: + + //! Returns interpolator factory instance + HYDRODATA_EXPORT HYDROData_InterpolatorsFactory* GetInterpolatorsFactory(); + //! Get the appropriate interpolator by the name. + HYDRODATA_EXPORT HYDROData_IProfilesInterpolator* GetInterpolator( const TCollection_AsciiString& theName ) const; + + //! Get list of registered interpolator names. + HYDRODATA_EXPORT NCollection_Sequence GetInterpolatorNames() const; + +public: + //! Returns default strickler coefficient + HYDRODATA_EXPORT double GetDefaultStricklerCoefficient() const; + + //! Sets default strickler coefficient + HYDRODATA_EXPORT void SetDefaultStricklerCoefficient( double ) const; + + HYDRODATA_EXPORT QColor GetAssociatedColor( const QString& theStricklerType, const Handle(HYDROData_StricklerTable)& theTable ) const; + +protected: friend class HYDROData_Iterator; friend class test_HYDROData_Document; @@ -155,6 +249,8 @@ protected: //! Returns the label where the objects are located (used by Iterator) HYDRODATA_EXPORT TDF_Label LabelOfObjects(); + HYDRODATA_EXPORT TDF_Label LabelOfLocalCS() const; + private: // Dump header Python part in to file \c theFile @@ -163,13 +259,18 @@ private: // Dump objects of type \c theObjectKind to file \c theFile bool dumpPartitionToPython( QFile& theFile, + const QString& thePyScriptPath, const bool theIsMultiFile, MapOfTreatedObjects& theDumpedObjects, const ObjectKind& theObjectKind ) const; + void UpdateLCSFields() const; private: Handle(TDocStd_Document) myDoc; ///< OCAF document instance corresponding for keeping all persistent data int myTransactionsAfterSave; ///< number of transactions after the last "save" call, used for "IsModified" method + double myLX, myLY; + + HYDROData_InterpolatorsFactory* myInterpolatorsFactory; ///< iterpolators factory }; #endif