X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ProfileOp.cxx;h=11a60f85217ae0411dd43c1cf4168220d1c7ce27;hb=f993e4d01e9bb9de221db4c90d7a6c617696f3ec;hp=fc5d0f155569e1e4beb8b5d8830b8e65917cd45d;hpb=d02cf392c2c47232c9301a02365cd25e9f2fe510;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ProfileOp.cxx b/src/HYDROGUI/HYDROGUI_ProfileOp.cxx index fc5d0f15..11a60f85 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,10 +15,11 @@ // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #include #include #include -#include +#include #include #include #include @@ -84,9 +81,12 @@ void HYDROGUI_ProfileOp::startOperation() HYDROGUI_ProfileDlg* aPanel = (HYDROGUI_ProfileDlg*)inputPanel(); aPanel->reset(); + setPreviewManager( aPanel->viewManager() ); + setCursor(); 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() ) @@ -137,6 +137,7 @@ void HYDROGUI_ProfileOp::startOperation() void HYDROGUI_ProfileOp::abortOperation() { erasePreview(); + restoreCursor(); HYDROGUI_Operation::abortOperation(); } @@ -144,6 +145,7 @@ void HYDROGUI_ProfileOp::abortOperation() void HYDROGUI_ProfileOp::commitOperation() { erasePreview(); + restoreCursor(); HYDROGUI_Operation::commitOperation(); } @@ -226,11 +228,11 @@ bool HYDROGUI_ProfileOp::processApply( int& theUpdateFlags, if ( !myIsEdit ) { - aProfileObj->SetBorderColor( HYDROData_Profile::DefaultBorderColor() ); + aProfileObj->SetBorderColor( aProfileObj->DefaultBorderColor() ); } // At first we update the child u,z profile object - aProfileUZ->SetToUpdate( true ); + aProfileUZ->Changed( HYDROData_Entity::Geom_2d ); aProfileUZ->Update(); // And now we update our edited object