Salome HOME
refs #664: redesign of calculation case dialog and operation.
[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   HYDROGUI_Zone*             getCurrentZone() const;
73   
74   void                       setAvailableGroups( const QStringList& );
75
76   void                       setEditZonesEnabled( const bool theIsEnabled );
77
78   HYDROData_ListOfRules      getRules() const;
79   void                       setRules( const HYDROData_ListOfRules& theRules ) const;
80
81 public slots:
82   void                       setMode( int theMode );
83   void                       setBoundary( const QString& theObjName );
84   void                       includeGeomObjects( const QStringList& theObjects );
85   void                       excludeGeomObjects( const QStringList& theObjects );
86   void                       includeGroups( const QStringList& theObjects );
87   void                       excludeGroups( const QStringList& theObjects );
88   void                       onEmptyName();
89   void                       onAlreadyExists( QString theName );
90   void                       refreshZonesBrowser();
91   void                       onDataChanged();
92   void                       onOrderChanged();
93   void                       onRuleChanged();
94
95   void                       setStricklerTable( const QString& theStricklerTableName, bool theBlockSignals = true );
96   void                       setLandCoverMap( const QString& theLandCoverMapName, bool theBlockSignals = true );
97   
98   /**
99    * Process items selection: hide/show bathymetry merge type selector.
100    */
101   void                       onSelected( SUIT_DataObject* theObject );
102   /**
103    * Process merge type selection: set the selected bathymetry merge type for the currently selected zone.
104    */
105   void                       onMergeTypeSelected( int theIndex );
106   /**
107    * Process zones moving. Create a new region with dropped zones or add to existing one.
108    */
109   void                       onZonesDropped( const QList<SUIT_DataObject*>& theList, 
110     SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction );
111
112 signals:
113   void                       changeMode( int theMode );  
114
115   void                       addObjects();
116   void                       removeObjects();
117   void                       objectsSelected();
118   void                       orderChanged( bool& isConfirmed );
119   void                       ruleChanged( bool& isConfirmed );
120
121   void                       addGroups();
122   void                       removeGroups();
123   void                       groupsSelected();
124
125   void                       boundarySelected( const QString & theObjName );
126   void                       setMergeType( int theMergeType, QString& theBathymetryName );
127   void                       createRegion( const QList<SUIT_DataObject*>& theZonesList );
128   void                       moveZones( SUIT_DataObject* theRegion, const QList<SUIT_DataObject*>& theZonesList );
129   void                       clickedInZonesBrowser( SUIT_DataObject* );
130
131   void                       landCoverMapSelected( const QString & theObjName );
132
133   void                       StricklerTableSelected( const QString & theObjName );
134
135   void                       regenerateColors();
136
137 protected:
138
139   virtual bool               acceptCurrent() const;
140
141 protected slots:
142   void OnNewRegion();
143
144 private:
145   QList<Handle(HYDROData_Entity)> getGeometryObjects();
146   
147   QWizardPage*               createObjectsPage();
148   QWizardPage*               createGroupsPage();
149   QWizardPage*               createLandCoverMapPage();
150   QWizardPage*               createZonesPage();
151   
152   QSplitter*                 mySplitter;
153   
154   QGroupBox*                 myObjectNameGroup;
155   QLineEdit*                 myObjectName;
156   HYDROGUI_NameValidator*    myValidator;
157
158   QComboBox*                 myPolylineName;
159   QComboBox*                 myLandCoverMapName;
160   QComboBox*                 myStricklerTableName;
161
162   QButtonGroup*              myModeButtons;
163
164   QListWidget*               myAvailableGeomObjects;
165   HYDROGUI_OrderedListWidget* myGeomObjects;
166
167   HYDROGUI_PriorityWidget*   myPriorityWidget;
168
169   QListWidget*               myAvailableGroups;
170   QListWidget*               myGroups;
171
172   HYDROGUI_DataBrowser*      myBrowser;
173   Handle(HYDROData_CalculationCase) myEditedObject;
174   QComboBox*                 myBathymetryChoice;
175   QLabel*                    myBathymetryLabel;
176   HYDROGUI_Zone*             myCurrentZone;
177 };
178
179 #endif
180