Salome HOME
refs #1813 ... lot 14 combined commit : parts : 1 - 16
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CalculationDlg.h
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.
6 //
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.
11 //
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
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19
20 #ifndef HYDROGUI_CALCULATIONDLG_H
21 #define HYDROGUI_CALCULATIONDLG_H
22
23 #include "HYDROGUI_Wizard.h"
24 #include <HYDROData_CalculationCase.h>
25 #include <HYDROData_LandCoverMap.h>
26
27 class HYDROGUI_ObjSelector;
28 class HYDROGUI_DataBrowser;
29 class HYDROGUI_NameValidator;
30 class HYDROGUI_Zone;
31 class HYDROGUI_OrderedListWidget;
32 class HYDROGUI_PriorityWidget;
33
34 class SUIT_DataObject;
35
36 class QButtonGroup;
37 class QGroupBox;
38 class QLineEdit;
39 class QListWidget;
40 class QComboBox;
41 class QLabel;
42 class QSplitter;
43 class QStringList;
44
45
46 class HYDROGUI_CalculationDlg : public HYDROGUI_Wizard
47 {
48   Q_OBJECT
49
50 public:
51   HYDROGUI_CalculationDlg( HYDROGUI_Module* theModule, const QString& theTitle );
52   virtual ~HYDROGUI_CalculationDlg();
53
54   void                       reset();
55
56   int                        getMode() const;
57   
58   void                       setObjectName( const QString& theName );
59   QString                    getObjectName() const;
60
61   void                       setEditedObject( const Handle(HYDROData_CalculationCase) theCase );
62
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;
76   
77   void                       setAvailableGroups( const QStringList& );
78
79   void                       setAvailableBoundaryPolygons( const QStringList&, const QVector<int>& );
80
81   void                       setEditZonesEnabled( const bool theIsEnabled );
82
83   HYDROData_ListOfRules      getRules() const;
84   void                       setRules( const HYDROData_ListOfRules& theRules ) const;
85
86 public slots:
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 );
93
94   void                       includeBoundaryPolygons( const QStringList& theObjects );
95   void                       includeISBoundaryPolygons( const QStringList& theObjects );
96
97   void                       excludeBoundaryPolygons( const QStringList& theObjects );
98   void                       excludeISBoundaryPolygons( const QStringList& theObjects );
99
100
101   void                       onEmptyName();
102   void                       onAlreadyExists( QString theName );
103   void                       refreshZonesBrowser();
104   void                       onDataChanged();
105   void                       onOrderChanged();
106   void                       onRuleChanged();
107
108   void                       setStricklerTable( const QString& theStricklerTableName, bool theBlockSignals = true );
109   void                       setLandCoverMap( const QString& theLandCoverMapName, bool theBlockSignals = true );
110   
111   /**
112    * Process items selection: hide/show bathymetry merge type selector.
113    */
114   void                       onSelected( SUIT_DataObject* theObject );
115   /**
116    * Process merge type selection: set the selected bathymetry merge type for the currently selected zone.
117    */
118   void                       onMergeTypeSelected( int theIndex );
119   /**
120    * Process zones moving. Create a new region with dropped zones or add to existing one.
121    */
122   void                       onZonesDropped( const QList<SUIT_DataObject*>& theList, 
123     SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction );
124
125 signals:
126   void                       changeMode( int theMode );  
127
128   void                       addObjects();
129   void                       removeObjects();
130   void                       objectsSelected();
131   void                       orderChanged( bool& isConfirmed );
132   void                       ruleChanged( bool& isConfirmed );
133
134   void                       addGroups();
135   void                       removeGroups();
136   void                       groupsSelected();
137
138   void                       addBoundaryPolygons();
139   void                       removeBoundaryPolygons();
140
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* );
146
147   void                       landCoverMapSelected( const QString & theObjName );
148
149   void                       StricklerTableSelected( const QString & theObjName );
150
151   void                       regenerateColors();
152
153 protected:
154
155   virtual bool               acceptCurrent() const;
156
157 protected slots:
158   void OnNewRegion();
159
160 private:
161   QList<Handle(HYDROData_Entity)> getGeometryObjects();
162   
163   QWizardPage*               createObjectsPage();
164   QWizardPage*               createGroupsPage();
165   QWizardPage*               createBoundaryPolygonsPage();
166
167   QWizardPage*               createLandCoverMapPage();
168   QWizardPage*               createZonesPage();
169   
170   QSplitter*                 mySplitter;
171   
172   QGroupBox*                 myObjectNameGroup;
173   QLineEdit*                 myObjectName;
174   HYDROGUI_NameValidator*    myValidator;
175
176   QComboBox*                 myPolylineName;
177   QComboBox*                 myLandCoverMapName;
178   QComboBox*                 myStricklerTableName;
179
180   QButtonGroup*              myModeButtons;
181
182   QListWidget*               myAvailableGeomObjects;
183   HYDROGUI_OrderedListWidget* myGeomObjects;
184
185   HYDROGUI_PriorityWidget*   myPriorityWidget;
186
187   QListWidget*               myAvailableGroups;
188   QListWidget*               myGroups;
189
190   QListWidget*               myAvailableBoundaryPolygons;
191   QListWidget*               myBoundaryPolygons;
192   QListWidget*               myISBoundaryPolygons;
193
194
195   HYDROGUI_DataBrowser*      myBrowser;
196   Handle(HYDROData_CalculationCase) myEditedObject;
197   QComboBox*                 myBathymetryChoice;
198   QLabel*                    myBathymetryLabel;
199   HYDROGUI_Zone*             myCurrentZone;
200 };
201
202 #endif
203