X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ProfileOp.cxx;h=b6baf1e715b6d43cf286298409c085a8fbecf059;hb=a53349567d67f4df0ef737798a25c24d9dc8f08e;hp=bda67417e629b265e12c3a3345c31629ace59d38;hpb=a1431f03eac1d1aed4203d0568d987c41ce939b3;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ProfileOp.cxx b/src/HYDROGUI/HYDROGUI_ProfileOp.cxx index bda67417..b6baf1e7 100644 --- a/src/HYDROGUI/HYDROGUI_ProfileOp.cxx +++ b/src/HYDROGUI/HYDROGUI_ProfileOp.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 @@ -19,16 +15,17 @@ // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -#include "HYDROGUI_Module.h" -#include "HYDROGUI_ProfileOp.h" -#include "HYDROGUI_ProfileDlg.h" -#include "HYDROGUI_Tool.h" -#include "HYDROGUI_UpdateFlags.h" -#include "HYDROData_Document.h" -#include "HYDROData_Profile.h" -#include "CurveCreator_Profile.hxx" -#include "CurveCreator_Displayer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include @@ -78,7 +75,7 @@ void HYDROGUI_ProfileOp::startOperation() if( myProfile ) delete myProfile; - myProfile = new CurveCreator_Profile(); + myProfile = new HYDROGUI_CurveCreatorProfile(); HYDROGUI_Operation::startOperation(); @@ -86,7 +83,8 @@ void HYDROGUI_ProfileOp::startOperation() aPanel->reset(); if( myIsEdit ) - myEditedObject = Handle(HYDROData_Profile)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) ); + if ( isApplyAndClose() ) + myEditedObject = Handle(HYDROData_Profile)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) ); QString aProfileName; if( !myEditedObject.IsNull() ) @@ -155,7 +153,8 @@ HYDROGUI_InputPanel* HYDROGUI_ProfileOp::createInputPanel() const } bool HYDROGUI_ProfileOp::processApply( int& theUpdateFlags, - QString& theErrorMsg ) + QString& theErrorMsg, + QStringList& theBrowseObjectsEntries ) { HYDROGUI_ProfileDlg* aPanel = ::qobject_cast( inputPanel() ); if ( !aPanel ) @@ -236,7 +235,15 @@ bool HYDROGUI_ProfileOp::processApply( int& theUpdateFlags, aProfileObj->Update(); module()->setIsToUpdate( aProfileObj ); - theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer; + theUpdateFlags = UF_Model; + if ( myIsEdit ) + theUpdateFlags |= UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer; + else + { + QString anEntry = HYDROGUI_DataObject::dataObjectEntry( aProfileObj ); + theBrowseObjectsEntries.append( anEntry ); + } + return true; }