Salome HOME
Selector implementation for OCC viewer.
[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 "HYDROGUI_SplitZonesTool.h"
29 #include "HYDROGUI_Shape.h"
30
31 #include <HYDROData_Calculation.h>
32 #include <HYDROData_Region.h>
33
34 class SUIT_ViewManager;
35 class OCCViewer_ViewManager;
36
37 class HYDROGUI_CalculationOp : public HYDROGUI_Operation
38 {
39   Q_OBJECT
40
41   struct Region
42   {
43     QString                            RegionName;
44     QColor                             FillingColor;
45     QColor                             BorderColor;
46     HYDROGUI_SplitZonesTool::SplitData SplitData;
47     HYDROGUI_Shape*                    Shape;
48     Handle(HYDROData_Region)           DataRegion;
49
50     Region()
51     : Shape( NULL ),
52       FillingColor( Qt::green ),
53       BorderColor( Qt::transparent )
54     { }
55
56     ~Region()
57     {
58       if ( Shape )
59       {
60         delete Shape;
61         Shape = NULL;
62       }
63     }
64   };
65
66   typedef QList<Region>         RegionsList;
67
68 public:
69   HYDROGUI_CalculationOp( HYDROGUI_Module* theModule, bool theIsEdit );
70   virtual ~HYDROGUI_CalculationOp();
71
72 protected:
73   virtual void                    startOperation();
74   virtual void                    abortOperation();
75   virtual void                    commitOperation();
76
77   virtual HYDROGUI_InputPanel*    createInputPanel() const;
78
79   virtual bool                    processApply( int& theUpdateFlags, QString& theErrorMsg );
80
81 protected slots:
82   void                            onSplitZones();
83   void                            onLastViewClosed( SUIT_ViewManager* );
84
85 private:
86   void                            createPreview();
87   void                            closePreview();
88
89 private:
90   bool                            myIsEdit;
91   Handle(HYDROData_Calculation)   myEditedObject;
92
93   SUIT_ViewManager*               myActiveViewManager;
94
95   OCCViewer_ViewManager*          myPreviewViewManager;
96   RegionsList                     myRegionsList;
97 };
98
99 #endif
100
101