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