Salome HOME
refs #525: autocolor of zones in a calculation case.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_BathymetryBoundsOp.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 //See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 //
23
24 #include <HYDROGUI_BathymetryBoundsOp.h>
25 #include <HYDROGUI_Tool.h>
26 #include <HYDROGUI_UpdateFlags.h>
27 #include <HYDROGUI_Module.h>
28 #include <HYDROGUI_DataObject.h>
29 #include <HYDROData_PolylineXY.h>
30
31 HYDROGUI_BathymetryBoundsOp::HYDROGUI_BathymetryBoundsOp( HYDROGUI_Module* theModule )
32 : HYDROGUI_Operation( theModule )
33 {
34 }
35
36 HYDROGUI_BathymetryBoundsOp::~HYDROGUI_BathymetryBoundsOp()
37 {
38 }
39
40 HYDROGUI_InputPanel* HYDROGUI_BathymetryBoundsOp::createInputPanel() const
41 {
42   return 0;
43 }
44
45 void HYDROGUI_BathymetryBoundsOp::startOperation()
46 {
47   HYDROGUI_Operation::startOperation();
48
49   myBath = Handle(HYDROData_Bathymetry)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
50   if( myBath.IsNull() )
51     onCancel();
52   else
53     onApply();
54 }
55
56 bool HYDROGUI_BathymetryBoundsOp::processApply( int& theUpdateFlags, QString& theErrorMsg,
57                                                 QStringList& theBrowseObjectsEntries )
58 {
59   Handle_HYDROData_PolylineXY aPolyline = myBath->CreateBoundaryPolyline();
60   bool isOK = !aPolyline.IsNull();
61   theUpdateFlags = 0;
62   if( isOK ) {
63     module()->setIsToUpdate( myBath );
64     theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
65     
66     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( aPolyline );
67     theBrowseObjectsEntries.append( anEntry );
68   }
69   else
70     theErrorMsg = tr( "CANNOT_CREATE_BOUNDARY_POLYLINE" );
71   return isOK;
72 }