Salome HOME
e58dfa73bcec775f1dbe91d8282f47d8ac9a3739
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CalculationDlg.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef HYDROGUI_CALCULATIONDLG_H
24 #define HYDROGUI_CALCULATIONDLG_H
25
26 #include "HYDROGUI_Wizard.h"
27 #include <HYDROData_CalculationCase.h>
28
29 class HYDROGUI_ObjSelector;
30 class HYDROGUI_DataBrowser;
31 class HYDROGUI_NameValidator;
32 class HYDROGUI_Zone;
33 class HYDROGUI_OrderedListWidget;
34 class HYDROGUI_PriorityWidget;
35
36 class SUIT_DataObject;
37
38 class QButtonGroup;
39 class QGroupBox;
40 class QLineEdit;
41 class QListWidget;
42 class QComboBox;
43 class QLabel;
44 class QSplitter;
45 class QStringList;
46
47
48 class HYDROGUI_CalculationDlg : public HYDROGUI_Wizard
49 {
50   Q_OBJECT
51
52 public:
53   HYDROGUI_CalculationDlg( HYDROGUI_Module* theModule, const QString& theTitle );
54   virtual ~HYDROGUI_CalculationDlg();
55
56   void                       reset();
57
58   int                        getMode() const;
59
60   void                       setObjectName( const QString& theName );
61   QString                    getObjectName() const;
62
63   void                       setEditedObject( const Handle(HYDROData_CalculationCase) theCase );
64
65   void                       setAllGeomObjects( const QStringList& theObjects, const QStringList& theObjectsEntries );
66   QStringList                getAllGeomObjects() const;
67   void                       setPolylineNames( 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                       setMoveZonesEnabled( const bool theIsEnabled );
77
78 public slots:
79   void                       setMode( int theMode );
80   void                       setBoundary( const QString& theObjName );
81   void                       includeGeomObjects( const QStringList& theObjects );
82   void                       excludeGeomObjects( const QStringList& theObjects );
83   void                       includeGroups( const QStringList& theObjects );
84   void                       excludeGroups( const QStringList& theObjects );
85   void                       onEmptyName();
86   void                       onAlreadyExists( QString theName );
87   void                       refreshZonesBrowser();
88   void                       onDataChanged();
89   /**
90    * Process items selection: hide/show bathymetry merge type selector.
91    */
92   void                       onSelected( SUIT_DataObject* theObject );
93   /**
94    * Process merge type selection: set the selected bathymetry merge type for the currently selected zone.
95    */
96   void                       onMergeTypeSelected( int theIndex );
97   /**
98    * Process zones moving. Create a new region with dropped zones or add to existing one.
99    */
100   void                       onZonesDropped( const QList<SUIT_DataObject*>& theList, 
101     SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction );
102
103 signals:
104   void                       changeMode( int theMode );
105
106   void                       addObjects();
107   void                       removeObjects();
108   void                       objectsSelected();
109
110   void                       addGroups();
111   void                       removeGroups();
112   void                       groupsSelected();
113
114   void                       boundarySelected( const QString & theObjName );
115   void                       setMergeType( int theMergeType, QString& theBathymetryName );
116   void                       createRegion( const QList<SUIT_DataObject*>& theZonesList );
117   void                       moveZones( SUIT_DataObject* theRegion, const QList<SUIT_DataObject*>& theZonesList );
118   void                       clickedInZonesBrowser( SUIT_DataObject* );
119
120 protected:
121
122   virtual bool               acceptCurrent() const;
123
124 private:
125
126   QWizardPage*               createObjectsPage();
127   QWizardPage*               createGroupsPage();
128   QWizardPage*               createZonesPage();
129
130   QSplitter*                 mySplitter;
131
132   QGroupBox*                 myObjectNameGroup;
133   QLineEdit*                 myObjectName;
134   HYDROGUI_NameValidator*    myValidator;
135
136   QComboBox*                 myPolylineName;
137
138   QButtonGroup*              myModeButtons;
139
140   QListWidget*               myAvailableGeomObjects;
141   HYDROGUI_OrderedListWidget* myGeomObjects;
142
143   HYDROGUI_PriorityWidget*   myPriorityWidget;
144
145   QListWidget*               myAvailableGroups;
146   QListWidget*               myGroups;
147
148   HYDROGUI_DataBrowser*      myBrowser;
149   Handle(HYDROData_CalculationCase) myEditedObject;
150   QComboBox*                 myBathymetryChoice;
151   QLabel*                    myBatimetryLabel;
152   HYDROGUI_Zone*             myCurrentZone;
153 };
154
155 #endif
156