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