X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_CalculationOp.h;h=9d2dc0d1b5a91326b7b6d844b5a188750f30d134;hb=18bf2fdae8933e8a31ca58f36b6dceb7a4a8cf42;hp=cf6a52a025b9b4d0074bd9f5c4cae1e0dc351729;hpb=1687cb2e2e3e31ae16197ba2b0939cacc31f9807;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_CalculationOp.h b/src/HYDROGUI/HYDROGUI_CalculationOp.h index cf6a52a0..9d2dc0d1 100644 --- a/src/HYDROGUI/HYDROGUI_CalculationOp.h +++ b/src/HYDROGUI/HYDROGUI_CalculationOp.h @@ -96,18 +96,27 @@ protected slots: void onRemoveLandCovers(); /** - * Set the given bathymetry merge type to the current zone. + * Set the given bathymetry/type merge type to the current zone. */ - void onSetMergeType( int theMergeType, QString& theBathymetryName ); + void onSetMergeType( int theMergeType, QString& theMergeObjectName ); + /** + * Set the given Strickler merge type to the current zone. + */ + void onSetMergeStricklerType( int theMergeType, QString& theStricklerTypeName ); /** * Selected zones are moved to the existing region. */ void onMoveZones( SUIT_DataObject* theRegionItem, - const QList& theZonesList ); + const QList& theZonesList, + bool theLandCover ); /** * Selected zones are moved to the new region to be created. */ void onCreateRegion( const QList& theZonesList ); + /** + * Selected land cover zones are moved to the new region to be created. + */ + void onCreateLandCoverRegion( const QList& theZonesList ); /** * Case objects must be splitted to zones if the case has been modified or new. */ @@ -118,9 +127,9 @@ protected slots: */ void onClickedInZonesBrowser( SUIT_DataObject* theItem ); /** - * Hide zones in the viewer. + * Slot called on back button click. */ - void onHideZones(); + void onHideZones( const int ); /** * Geometry object is selected in the list on the first wizard page */ @@ -142,17 +151,19 @@ protected slots: void onOrderLandCoverChanged( bool& isConfirmed ); private: - void createPreview(); - void closePreview(); + void createPreview( const bool theLandCover); + void closePreview( bool theRemoveViewManager = true ); void setObjectVisibility( Handle(HYDROData_Entity) theEntity, const bool theIsVisible ); - void setZonesVisible( bool theIsVisible ); + void setZonesVisible( bool theIsVisible, const bool theLandCover ); + void setGeomObjectsVisible( bool theIsVisible ); + void setLandCoversVisible( bool theIsVisible ); void getNamesAndEntries( const HYDROData_SequenceOfObjects& theSeq, QStringList& theNames, QStringList& theEntries ) const; /** * Internal method that used to assign unique default colors for zones */ - void AssignDefaultZonesColors(); + void AssignDefaultZonesColors( const bool theLandCover ); /** * Internal method that used to generate default color for zone * @param theIndex the index of color to be generated @@ -169,17 +180,25 @@ private: float theSaturation = 0.5, float theValue = 0.95 ) const; + void setRules( HYDROData_CalculationCase::DataTag theDataTag ); + + bool createRegion( const QList& theZonesList, + const bool theLandCover ); + bool confirmRegionsChange() const; bool confirmModeChange() const; bool confirmOrderChange() const; bool confirmContinueWithWarning( const HYDROData_Warning& theWarning ) const; + bool confirmLandCoverRegionsChange() const; bool confirmLandCoverModeChange() const; bool confirmLandCoverOrderChange() const; private: bool myIsEdit; bool myShowZones; + bool myShowGeomObjects; + bool myShowLandCovers; Handle(HYDROData_CalculationCase) myEditedObject; SUIT_ViewManager* myActiveViewManager;