Salome HOME
- Zones drag and drop in the Calculation Case wizard is implemented.
[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   struct Region
44   {
45     QString                            RegionName;
46     QColor                             FillingColor;
47     QColor                             BorderColor;
48     HYDROData_SplitToZonesTool::SplitData SplitData;
49     HYDROGUI_Shape*                    Shape;
50     Handle(HYDROData_Region)           DataRegion;
51
52     Region()
53     : Shape( NULL ),
54       FillingColor( Qt::green ),
55       BorderColor( Qt::transparent )
56     { }
57
58     ~Region()
59     {
60       if ( Shape )
61       {
62         delete Shape;
63         Shape = NULL;
64       }
65     }
66   };
67
68   typedef QList<Region>         RegionsList;
69
70 public:
71   HYDROGUI_CalculationOp( HYDROGUI_Module* theModule, bool theIsEdit );
72   virtual ~HYDROGUI_CalculationOp();
73
74 protected:
75   virtual void                    startOperation();
76   virtual void                    abortOperation();
77   virtual void                    commitOperation();
78
79   virtual HYDROGUI_InputPanel*    createInputPanel() const;
80
81   virtual void                    onApply();
82   virtual bool                    processApply( int& theUpdateFlags, QString& theErrorMsg );
83
84 protected slots:
85   /**
86    * Add geometry objects selected in the module browser to the calculation case.
87    */
88   void                            onAddObjects();
89   /**
90    * Remove selected objects from the calculation case.
91    */
92   void                            onRemoveObjects();
93   /**
94    * Set the given bathymetry merge type to the current zone.
95    */
96   void                            onSetMergeType( int theMergeType, QString& theBathymetryName );
97   void                            onMoveZones( SUIT_DataObject* theRegionItem, 
98                                                const QList<SUIT_DataObject*>& theZonesList );
99   void                            onCreateRegion( const QList<SUIT_DataObject*>& theZonesList );
100   void                            onSplitZones();
101   void                            onLastViewClosed( SUIT_ViewManager* );
102
103 private:
104   void                            createPreview();
105   void                            closePreview();
106   void                            updateGeomObjectsList( HYDROGUI_CalculationDlg* thePanel ) const;
107
108 private:
109   bool                            myIsEdit;
110   Handle(HYDROData_CalculationCase) myEditedObject;
111
112   SUIT_ViewManager*               myActiveViewManager;
113
114   OCCViewer_ViewManager*          myPreviewViewManager;
115   RegionsList                     myRegionsList;
116 };
117
118 #endif
119
120