Salome HOME
correction of the compilation
[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_LandCover.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   int                        getLandCoverMode() const;
58
59   void                       setObjectName( const QString& theName );
60   QString                    getObjectName() const;
61
62   void                       setEditedObject( const Handle(HYDROData_CalculationCase) theCase );
63
64   void                       setAllGeomObjects( const QStringList& theObjects, const QStringList& theObjectsEntries );
65   QStringList                getAllGeomObjects() const;
66   void                       setAllLandCovers( const QStringList& theObjects, const QStringList& theObjectsEntries );
67   QStringList                getAllLandCovers() const;
68   void                       setPolylineNames( const QStringList& theObjects, const QStringList& theObjectsEntries );
69   void                       setStricklerTableNames( const QStringList& theObjects, const QStringList& theObjectsEntries );
70   QStringList                getSelectedGeomObjects() const;
71   QStringList                getSelectedLandCovers() const;
72   QStringList                getSelectedAvailableGeomObjects() const;
73   QStringList                getSelectedAvailableLandCovers() const;
74   QStringList                getSelectedGroups() const;
75   QStringList                getSelectedAvailableGroups() const;
76   HYDROGUI_Zone*             getCurrentZone() const;
77   
78   void                       setAvailableGroups( const QStringList& );
79
80   void                       setEditZonesEnabled( const bool theIsEnabled );
81   void                       setEditLandCoverZonesEnabled( const bool theIsEnabled );
82
83   HYDROData_ListOfRules      getRules() const;
84   void                       setRules( const HYDROData_ListOfRules& theRules ) const;
85
86   HYDROData_ListOfRules      getLandCoverRules() const;
87   void                       setLandCoverRules( const HYDROData_ListOfRules& theRules ) const;
88
89 public slots:
90   void                       setMode( int theMode );
91   void                       setBoundary( const QString& theObjName );
92   void                       includeGeomObjects( const QStringList& theObjects );
93   void                       excludeGeomObjects( const QStringList& theObjects );
94   void                       includeGroups( const QStringList& theObjects );
95   void                       excludeGroups( const QStringList& theObjects );
96   void                       onEmptyName();
97   void                       onAlreadyExists( QString theName );
98   void                       refreshZonesBrowser();
99   void                       onDataChanged();
100   void                       onOrderChanged();
101   void                       onRuleChanged();
102
103   void                       setLandCoverMode( int theMode );
104   void                       setStricklerTable( const QString& theStricklerTableName, bool theBlockSignals = true );
105   void                       includeLandCovers( const QStringList& theLandCovers, bool theReset );
106   void                       excludeLandCovers( const QStringList& theLandCovers );
107   void                       refreshLandCoverZonesBrowser();
108   void                       onDataLandCoverChanged();
109   void                       onOrderLandCoverChanged();
110   void                       onLandCoverRuleChanged();
111
112   /**
113    * Process items selection: hide/show bathymetry merge type selector.
114    */
115   void                       onSelected( SUIT_DataObject* theObject );
116   /**
117    * Process merge type selection: set the selected bathymetry merge type for the currently selected zone.
118    */
119   void                       onMergeTypeSelected( int theIndex );
120   /**
121    * Process zones moving. Create a new region with dropped zones or add to existing one.
122    */
123   void                       onZonesDropped( const QList<SUIT_DataObject*>& theList, 
124     SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction );
125
126   /**
127    * Process items selection: hide/show Strickler type merge type selector.
128    */
129   void                       onLandCoverZoneSelected( SUIT_DataObject* theObject );
130   /**
131    * Process merge type selection: set the selected Strickler type merge type for the currently selected zone.
132    */
133   void                       onMergeStricklerTypeSelected( int theIndex );
134   /**
135    * Process land cover zones moving. Create a new region with dropped zones or add to existing one.
136    */
137   void                       onLandCoverZonesDropped( const QList<SUIT_DataObject*>& theList, 
138     SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction );
139
140 signals:
141   void                       changeMode( int theMode );  
142
143   void                       addObjects();
144   void                       removeObjects();
145   void                       objectsSelected();
146   void                       orderChanged( bool& isConfirmed );
147   void                       ruleChanged( bool& isConfirmed );
148
149   void                       addGroups();
150   void                       removeGroups();
151   void                       groupsSelected();
152
153   void                       boundarySelected( const QString & theObjName );
154   void                       setMergeType( int theMergeType, QString& theBathymetryName );
155   void                       createRegion( const QList<SUIT_DataObject*>& theZonesList );
156   void                       moveZones( SUIT_DataObject* theRegion, const QList<SUIT_DataObject*>& theZonesList, bool theLandCover );
157   void                       clickedInZonesBrowser( SUIT_DataObject* );
158
159   void                       changeLandCoverMode( int theMode );
160
161   void                       addLandCovers();
162   void                       removeLandCovers();
163   void                       landCoversSelected();
164   void                       orderLandCoverChanged( bool& isConfirmed );
165   void                       ruleLandCoverChanged( bool& isConfirmed );
166
167   void                       createLandCoverRegion( const QList<SUIT_DataObject*>& theLandCoverZonesList );
168   
169   void                       StricklerTableSelected( const QString & theObjName );
170   void                       setMergeStricklerType( int theMergeType, QString& theStricklerTypeName );
171
172   void                       regenerateColors();
173
174 protected:
175
176   virtual bool               acceptCurrent() const;
177
178 protected slots:
179   void OnNewRegion();
180   void OnNewLandCoverRegion();
181
182 private:
183   QList<Handle(HYDROData_Entity)> getGeometryObjects();
184   QList<Handle(HYDROData_Entity)> getLandCovers();
185
186   QWizardPage*               createObjectsPage();
187   QWizardPage*               createGroupsPage();
188   QWizardPage*               createLandCoversPage();
189   QWizardPage*               createZonesPage();
190   QWizardPage*               createLandCoverZonesPage();
191
192   QSplitter*                 mySplitter;
193   QSplitter*                 myLandCoverSplitter;
194
195   QGroupBox*                 myObjectNameGroup;
196   QLineEdit*                 myObjectName;
197   HYDROGUI_NameValidator*    myValidator;
198
199   QComboBox*                 myPolylineName;
200   QComboBox*                 myStricklerTableName;
201
202   QButtonGroup*              myModeButtons;
203   QButtonGroup*              myLandCoverModeButtons;
204
205   QListWidget*               myAvailableGeomObjects;
206   HYDROGUI_OrderedListWidget* myGeomObjects;
207
208   HYDROGUI_PriorityWidget*   myPriorityWidget;
209   HYDROGUI_PriorityWidget*   myLandCoverPriorityWidget;
210
211   QListWidget*               myAvailableGroups;
212   QListWidget*               myGroups;
213
214   QListWidget*               myAvailableLandCovers;
215   HYDROGUI_OrderedListWidget* myLandCovers;
216
217   HYDROGUI_DataBrowser*      myBrowser;
218   Handle(HYDROData_CalculationCase) myEditedObject;
219   QComboBox*                 myBathymetryChoice;
220   QLabel*                    myBathymetryLabel;
221   HYDROGUI_Zone*             myCurrentZone;
222
223   HYDROGUI_DataBrowser*      myLandCoverBrowser;
224   QComboBox*                 myStricklerTypeChoice;
225   QLabel*                    myStricklerTypeLabel;
226 };
227
228 #endif
229