X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_BathymetryBoundsOp.cxx;h=69e2438201baad1c9a6212387766417f1f74fed9;hb=cd6ea20d9a76665a24a533d0340385a335961f05;hp=35540e01961c1191d1df8600daa5c0481e47c450;hpb=c7019bbe1470fd78e243033d71e8b9fcdaee18a7;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_BathymetryBoundsOp.cxx b/src/HYDROGUI/HYDROGUI_BathymetryBoundsOp.cxx index 35540e01..69e24382 100644 --- a/src/HYDROGUI/HYDROGUI_BathymetryBoundsOp.cxx +++ b/src/HYDROGUI/HYDROGUI_BathymetryBoundsOp.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -6,7 +6,7 @@ // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,11 +18,15 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +//See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include #include #include +#include +#include +#include HYDROGUI_BathymetryBoundsOp::HYDROGUI_BathymetryBoundsOp( HYDROGUI_Module* theModule ) : HYDROGUI_Operation( theModule ) @@ -49,12 +53,19 @@ void HYDROGUI_BathymetryBoundsOp::startOperation() onApply(); } -bool HYDROGUI_BathymetryBoundsOp::processApply( int& theUpdateFlags, QString& theErrorMsg ) +bool HYDROGUI_BathymetryBoundsOp::processApply( int& theUpdateFlags, QString& theErrorMsg, + QStringList& theBrowseObjectsEntries ) { - bool isOK = myBath->CreateBoundaryPolyline(); + Handle_HYDROData_PolylineXY aPolyline = myBath->CreateBoundaryPolyline(); + bool isOK = !aPolyline.IsNull(); theUpdateFlags = 0; - if( isOK ) - theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced; + if( isOK ) { + module()->setIsToUpdate( myBath ); + theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer; + + QString anEntry = HYDROGUI_DataObject::dataObjectEntry( aPolyline ); + theBrowseObjectsEntries.append( anEntry ); + } else theErrorMsg = tr( "CANNOT_CREATE_BOUNDARY_POLYLINE" ); return isOK;