X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Document.h;h=6e164226183d804685bf44b6ff61ce2ceea3de71;hb=c5ae2ec8ffa7b30a77bcef4fbb316c6ece4928b5;hp=3565fd5cdd75f65cbb517d9f9299bed73d3e8f37;hpb=281a4cd992ae7151a85c979648e6dd2e61978421;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Document.h b/src/HYDROData/HYDROData_Document.h index 3565fd5c..6e164226 100644 --- a/src/HYDROData/HYDROData_Document.h +++ b/src/HYDROData/HYDROData_Document.h @@ -20,11 +20,12 @@ #define HYDROData_Document_HeaderFile #include - #include class HYDROData_InterpolatorsFactory; class HYDROData_IProfilesInterpolator; +class Handle(HYDROData_StricklerTable); +class Handle(HYDROData_LandCoverMap); class QFile; class gp_Pnt2d; @@ -102,13 +103,18 @@ 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. @@ -153,6 +159,7 @@ public: 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; + HYDRODATA_EXPORT void Transform( double& X, double& Y, double& Z, bool IsToLocalCS ) const; public: @@ -217,8 +224,16 @@ public: //! Get list of registered interpolator names. HYDRODATA_EXPORT NCollection_Sequence GetInterpolatorNames() const; -protected: +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; @@ -245,6 +260,7 @@ 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;