1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef HYDROGUI_CALCULATIONDLG_H
21 #define HYDROGUI_CALCULATIONDLG_H
23 #include "HYDROGUI_Wizard.h"
24 #include <HYDROData_CalculationCase.h>
25 #include <HYDROData_LandCoverMap.h>
27 class HYDROGUI_ObjSelector;
28 class HYDROGUI_DataBrowser;
29 class HYDROGUI_NameValidator;
31 class HYDROGUI_OrderedListWidget;
32 class HYDROGUI_PriorityWidget;
34 class SUIT_DataObject;
46 class HYDROGUI_CalculationDlg : public HYDROGUI_Wizard
51 HYDROGUI_CalculationDlg( HYDROGUI_Module* theModule, const QString& theTitle );
52 virtual ~HYDROGUI_CalculationDlg();
58 void setObjectName( const QString& theName );
59 QString getObjectName() const;
61 void setEditedObject( const Handle(HYDROData_CalculationCase) theCase );
63 void setAllGeomObjects( const QStringList& theObjects, const QStringList& theObjectsEntries );
64 QStringList getAllGeomObjects() const;
65 void setPolylineNames( const QStringList& theObjects, const QStringList& theObjectsEntries );
66 void setLandCoverMapsNames( const QStringList& theObjects, const QStringList& theObjectsEntries );
67 void setStricklerTableNames( const QStringList& theObjects, const QStringList& theObjectsEntries );
68 QStringList getSelectedGeomObjects() const;
69 QStringList getSelectedAvailableGeomObjects() const;
70 QStringList getSelectedGroups() const;
71 QStringList getSelectedAvailableGroups() const;
72 QStringList getSelectedBoundaryPolygons() const;
73 QStringList getSelectedISBoundaryPolygons() const;
74 QStringList getSelectedAvailableBoundaryPolygons() const;
75 HYDROGUI_Zone* getCurrentZone() const;
77 void setAvailableGroups( const QStringList& );
79 void setAvailableBoundaryPolygons( const QStringList&, const QVector<int>& );
81 void setEditZonesEnabled( const bool theIsEnabled );
83 HYDROData_ListOfRules getRules() const;
84 void setRules( const HYDROData_ListOfRules& theRules ) const;
87 void setMode( int theMode );
88 void setBoundary( const QString& theObjName );
89 void includeGeomObjects( const QStringList& theObjects );
90 void excludeGeomObjects( const QStringList& theObjects );
91 void includeGroups( const QStringList& theObjects );
92 void excludeGroups( const QStringList& theObjects );
94 void includeBoundaryPolygons( const QStringList& theObjects );
95 void includeISBoundaryPolygons( const QStringList& theObjects );
97 void excludeBoundaryPolygons( const QStringList& theObjects );
98 void excludeISBoundaryPolygons( const QStringList& theObjects );
102 void onAlreadyExists( QString theName );
103 void refreshZonesBrowser();
104 void onDataChanged();
105 void onOrderChanged();
106 void onRuleChanged();
108 void setStricklerTable( const QString& theStricklerTableName, bool theBlockSignals = true );
109 void setLandCoverMap( const QString& theLandCoverMapName, bool theBlockSignals = true );
112 * Process items selection: hide/show bathymetry merge type selector.
114 void onSelected( SUIT_DataObject* theObject );
116 * Process merge type selection: set the selected bathymetry merge type for the currently selected zone.
118 void onMergeTypeSelected( int theIndex );
120 * Process zones moving. Create a new region with dropped zones or add to existing one.
122 void onZonesDropped( const QList<SUIT_DataObject*>& theList,
123 SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction );
126 void changeMode( int theMode );
129 void removeObjects();
130 void objectsSelected();
131 void orderChanged( bool& isConfirmed );
132 void ruleChanged( bool& isConfirmed );
136 void groupsSelected();
138 void addBoundaryPolygons();
139 void removeBoundaryPolygons();
141 void boundarySelected( const QString & theObjName );
142 void setMergeType( int theMergeType, QString& theBathymetryName );
143 void createRegion( const QList<SUIT_DataObject*>& theZonesList );
144 void moveZones( SUIT_DataObject* theRegion, const QList<SUIT_DataObject*>& theZonesList );
145 void clickedInZonesBrowser( SUIT_DataObject* );
147 void landCoverMapSelected( const QString & theObjName );
149 void StricklerTableSelected( const QString & theObjName );
151 void regenerateColors();
155 virtual bool acceptCurrent() const;
161 QList<Handle(HYDROData_Entity)> getGeometryObjects();
163 QWizardPage* createObjectsPage();
164 QWizardPage* createGroupsPage();
165 QWizardPage* createBoundaryPolygonsPage();
167 QWizardPage* createLandCoverMapPage();
168 QWizardPage* createZonesPage();
170 QSplitter* mySplitter;
172 QGroupBox* myObjectNameGroup;
173 QLineEdit* myObjectName;
174 HYDROGUI_NameValidator* myValidator;
176 QComboBox* myPolylineName;
177 QComboBox* myLandCoverMapName;
178 QComboBox* myStricklerTableName;
180 QButtonGroup* myModeButtons;
182 QListWidget* myAvailableGeomObjects;
183 HYDROGUI_OrderedListWidget* myGeomObjects;
185 HYDROGUI_PriorityWidget* myPriorityWidget;
187 QListWidget* myAvailableGroups;
188 QListWidget* myGroups;
190 QListWidget* myAvailableBoundaryPolygons;
191 QListWidget* myBoundaryPolygons;
192 QListWidget* myISBoundaryPolygons;
195 HYDROGUI_DataBrowser* myBrowser;
196 Handle(HYDROData_CalculationCase) myEditedObject;
197 QComboBox* myBathymetryChoice;
198 QLabel* myBathymetryLabel;
199 HYDROGUI_Zone* myCurrentZone;