Salome HOME
The region object has been added for HYDRO data model.
[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_Zone.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 SplittedZone
42   {
43     QString                            ZoneName;
44     QString                            PolylineName;
45     QColor                             FillingColor;
46     QColor                             BorderColor;
47     HYDROGUI_SplitZonesTool::SplitData SplitData;
48     HYDROGUI_Shape*                    Shape;
49     Handle(HYDROData_Zone)             DataZone;
50
51     SplittedZone()
52     : Shape( NULL ),
53       FillingColor( Qt::green ),
54       BorderColor( Qt::transparent )
55     { }
56
57     ~SplittedZone()
58     {
59       if ( Shape )
60       {
61         delete Shape;
62         Shape = NULL;
63       }
64     }
65   };
66
67   typedef QList<SplittedZone>         SplittedZonesList;
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 bool                    processApply( int& theUpdateFlags, QString& theErrorMsg );
81
82 protected slots:
83   void                            onSplitZones();
84   void                            onLastViewClosed( SUIT_ViewManager* );
85
86 private:
87   void                            createPreview();
88   void                            closePreview();
89
90 private:
91   bool                            myIsEdit;
92   Handle(HYDROData_Calculation)   myEditedObject;
93
94   SUIT_ViewManager*               myActiveViewManager;
95
96   OCCViewer_ViewManager*          myPreviewViewManager;
97   SplittedZonesList               mySplittedZones;
98 };
99
100 #endif
101
102