]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_CalculationOp.h
Salome HOME
First implementation of automatic mode of regions creation in the calculation case...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CalculationOp.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_CALCULATIONOP_H
24 #define HYDROGUI_CALCULATIONOP_H
25
26 #include "HYDROGUI_Operation.h"
27
28 #include "HYDROData_SplitToZonesTool.h"
29 #include "HYDROGUI_Shape.h"
30
31 #include <HYDROData_CalculationCase.h>
32 #include <HYDROData_Region.h>
33
34 class SUIT_ViewManager;
35 class OCCViewer_ViewManager;
36 class HYDROGUI_CalculationDlg;
37 class SUIT_DataObject;
38
39 class HYDROGUI_CalculationOp : public HYDROGUI_Operation
40 {
41   Q_OBJECT
42
43 public:
44   HYDROGUI_CalculationOp( HYDROGUI_Module* theModule, bool theIsEdit );
45   virtual ~HYDROGUI_CalculationOp();
46
47 protected:
48   virtual void                    startOperation();
49   virtual void                    abortOperation();
50   virtual void                    commitOperation();
51
52   virtual HYDROGUI_InputPanel*    createInputPanel() const;
53
54   virtual void                    onApply();
55   virtual bool                    processApply( int& theUpdateFlags, QString& theErrorMsg,
56                                                 QStringList& theBrowseObjectsEntries );
57
58   void setAvailableGroups();
59
60 protected slots:
61
62   /**
63    * Change the creation mode.
64    * @param theMode the mode to set
65    */
66   void                            onChangeMode( int theMode );
67
68   /**
69    * Add geometry objects selected in the module browser to the calculation case.
70    */
71   void                            onAddObjects();
72   /**
73    * Remove selected objects from the calculation case.
74    */
75   void                            onRemoveObjects();
76
77   /**
78    * Add geometry groups selected in the module browser to the calculation case.
79    */
80   void                            onAddGroups();
81   /**
82    * Remove selected groups from the calculation case.
83    */
84   void                            onRemoveGroups();
85
86   /**
87    * Set the given bathymetry merge type to the current zone.
88    */
89   void                            onSetMergeType( int theMergeType, QString& theBathymetryName );
90   /**
91    * Selected zones are moved to the existing region.
92    */
93   void                            onMoveZones( SUIT_DataObject* theRegionItem, 
94                                                const QList<SUIT_DataObject*>& theZonesList );
95   /**
96    * Selected zones are moved to the new region to be created.
97    */
98   void                            onCreateRegion( const QList<SUIT_DataObject*>& theZonesList );
99   /**
100    * Case objects must be splitted to zones if the case has been modified or new.
101    */
102   void                            onNext( const int );
103   void                            onLastViewClosed( SUIT_ViewManager* );
104   /**
105    * The zone is selected in the browser on the second page of the wizard.
106    */
107   void                            onClickedInZonesBrowser( SUIT_DataObject* theItem );
108   /**
109    * Hide zones in the viewer.
110    */
111   void                            onHideZones();
112   /** 
113    * Geometry object is selected in the list on the first wizard page
114    */
115   void                            onObjectsSelected();
116   /** 
117    * Boundary polyline is selected in the list on the first wizard page
118    */
119   void                            onBoundarySelected ( const QString & theObjName );
120
121 private:
122   void                            createPreview();
123   void                            closePreview();
124   void                            setObjectVisibility( Handle(HYDROData_Entity) theEntity, const bool theIsVisible );
125   void                            setZonesVisible( bool theIsVisible );
126   void                            getNamesAndEntries( const HYDROData_SequenceOfObjects& theSeq, 
127                                                       QStringList& theNames, QStringList& theEntries ) const;
128
129   /**
130    * Ask user to confirm splitting zones recalculation after regions list modification.
131    * \return true if confirmed
132    */
133   bool                            confirmRegionsChange() const;
134
135   /**
136    * Ask user to confirm splitting zones recalculation after mode change.
137    * \return true if confirmed
138    */
139   bool                            confirmModeChange() const;
140
141 private:
142   bool                            myIsEdit;
143   bool                            myShowZones;
144   Handle(HYDROData_CalculationCase) myEditedObject;
145
146   SUIT_ViewManager*               myActiveViewManager;
147   OCCViewer_ViewManager*          myPreviewViewManager;
148 };
149
150 #endif
151
152