X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ImportObstacleFromFileOp.cxx;h=b330b3b0a63c67ba7b1f55fb1027546b7903b2d8;hb=d6e19029f8b41f295db878e9aecf451c2edda4af;hp=301e826d7e3088d3bf0baaf83ffec34057e64f55;hpb=a1431f03eac1d1aed4203d0568d987c41ce939b3;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ImportObstacleFromFileOp.cxx b/src/HYDROGUI/HYDROGUI_ImportObstacleFromFileOp.cxx index 301e826d..b330b3b0 100644 --- a/src/HYDROGUI/HYDROGUI_ImportObstacleFromFileOp.cxx +++ b/src/HYDROGUI/HYDROGUI_ImportObstacleFromFileOp.cxx @@ -1,12 +1,8 @@ -// Copyright (C) 2007-2013 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 -// +// Copyright (C) 2014-2015 EDF-R&D // 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 @@ -23,7 +19,7 @@ #include "HYDROGUI_ImportObstacleFromFileOp.h" #include "HYDROGUI_GeomObjectDlg.h" - +#include #include "HYDROGUI_DataModel.h" #include "HYDROGUI_Module.h" #include "HYDROGUI_Tool.h" @@ -98,7 +94,8 @@ void HYDROGUI_ImportObstacleFromFileOp::commitOperation() } bool HYDROGUI_ImportObstacleFromFileOp::processApply( int& theUpdateFlags, - QString& theErrorMsg ) + QString& theErrorMsg, + QStringList& theBrowseObjectsEntries ) { QString aFileName; QString anObstacleName; @@ -176,6 +173,10 @@ bool HYDROGUI_ImportObstacleFromFileOp::processApply( int& theUpdateFlags, anIsOk = true; module()->setIsToUpdate( anObstacle ); theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer; + QString anEntry = HYDROGUI_DataObject::dataObjectEntry( anObstacle ); + theBrowseObjectsEntries.append( anEntry ); + + } else { theErrorMsg = tr( "BAD_IMPORTED_OBSTACLE_FILE" ).arg( aFileName ); }