X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_Operation.cxx;h=52fbcd1739a140a21570c64536dbfa19d6a2e97e;hb=de7cf9bb0a7a41d6487013c87f4a54d0664cd303;hp=0d7310d6e56317fe7f5de5c13d5771e4342c8a38;hpb=d6aeef5b61d85b44493cd5d93ed9870cc513e68f;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_Operation.cxx b/src/HYDROGUI/HYDROGUI_Operation.cxx index 0d7310d6..52fbcd17 100644 --- a/src/HYDROGUI/HYDROGUI_Operation.cxx +++ b/src/HYDROGUI/HYDROGUI_Operation.cxx @@ -21,8 +21,10 @@ // #include "HYDROGUI_Operation.h" -#include "HYDROGUI_Module.h" + #include "HYDROGUI_InputPanel.h" +#include "HYDROGUI_Module.h" +#include "HYDROGUI_Tool.h" #include #include @@ -31,10 +33,15 @@ #include #include +#include #include +#include + HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule ) -: LightApp_Operation(), myModule( theModule ), myPanel( 0 ) +: LightApp_Operation(), + myModule( theModule ), + myPanel( 0 ) { } @@ -42,6 +49,27 @@ HYDROGUI_Operation::~HYDROGUI_Operation() { } +void HYDROGUI_Operation::setName( const QString& theName ) +{ + myName = theName; +} + +const QString& HYDROGUI_Operation::getName() const +{ + return myName; +} + +HYDROGUI_InputPanel* HYDROGUI_Operation::inputPanel() const +{ + if( !myPanel ) + { + ( ( HYDROGUI_Operation* )this )->myPanel = createInputPanel(); + connect( myPanel, SIGNAL( panelApply() ), this, SLOT( onApply() ) ); + connect( myPanel, SIGNAL( panelCancel() ), this, SLOT( onCancel() ) ); + } + return myPanel; +} + SUIT_SelectionMgr* HYDROGUI_Operation::selectionMgr() const { return myModule->getApp()->selectionMgr(); @@ -54,50 +82,135 @@ HYDROGUI_Module* HYDROGUI_Operation::module() const void HYDROGUI_Operation::startOperation() { - doc()->StartOperation(); + LightApp_Operation::startOperation(); if( inputPanel() ) { - connect( inputPanel(), SIGNAL( panelApply() ), this, SLOT( OnApply() ) ); - connect( inputPanel(), SIGNAL( panelCancel() ), this, SLOT( OnCancel() ) ); - - inputPanel()->show(); myModule->getApp()->desktop()->addDockWidget( Qt::RightDockWidgetArea, inputPanel() ); + inputPanel()->show(); } } -HYDROGUI_InputPanel* HYDROGUI_Operation::inputPanel() const +void HYDROGUI_Operation::abortOperation() { - if( !myPanel ) - ( ( HYDROGUI_Operation* )this )->myPanel = createInputPanel(); - return myPanel; + LightApp_Operation::abortOperation(); + closeInputPanel(); } -Handle_HYDROData_Document HYDROGUI_Operation::doc() const +void HYDROGUI_Operation::commitOperation() +{ + LightApp_Operation::commitOperation(); + closeInputPanel(); +} + +void HYDROGUI_Operation::setDialogActive( const bool active ) +{ + LightApp_Operation::setDialogActive( active ); + if( myPanel ) + { + if( active ) + { + myPanel->show(); + } + } +} + +HYDROGUI_InputPanel* HYDROGUI_Operation::createInputPanel() const +{ + return NULL; +} + +void HYDROGUI_Operation::closeInputPanel() +{ + if( myPanel ) + { + myModule->getApp()->desktop()->removeDockWidget( myPanel ); + delete myPanel; + myPanel = 0; + } +} + +bool HYDROGUI_Operation::processApply( int& theUpdateFlags, + QString& theErrorMsg ) { - int aStudyId = myModule->application()->activeStudy()->id(); - return HYDROData_Document::Document( aStudyId ); + return false; } -void HYDROGUI_Operation::OnApply() +void HYDROGUI_Operation::processCancel() { - doc()->CommitOperation(); - inputPanel()->hide(); } -void HYDROGUI_Operation::OnCancel() +void HYDROGUI_Operation::startDocOperation() { + // Open transaction in the model document + doc()->StartOperation(); +} + +void HYDROGUI_Operation::abortDocOperation() +{ + // Abort transaction in the model document doc()->AbortOperation(); - inputPanel()->hide(); } -Handle_HYDROData_Object HYDROGUI_Operation::FindObjectByName( const QString& theName, int theKind ) const +void HYDROGUI_Operation::commitDocOperation() { - HYDROData_Iterator anIt( doc(), theKind ); - for( ; anIt.More(); anIt.Next() ) + // Commit transaction in the model document + doc()->CommitOperation( HYDROGUI_Tool::ToExtString( getName() ) ); +} + +Handle_HYDROData_Document HYDROGUI_Operation::doc() const +{ + return HYDROData_Document::Document( myModule->getStudyId() ); +} + +void HYDROGUI_Operation::onApply() +{ + QApplication::setOverrideCursor( Qt::WaitCursor ); + + startDocOperation(); + + int anUpdateFlags = 0; + QString anErrorMsg; + + bool aResult = false; + + try + { + aResult = processApply( anUpdateFlags, anErrorMsg ); + } + catch ( Standard_Failure ) + { + Handle(Standard_Failure) aFailure = Standard_Failure::Caught(); + anErrorMsg = aFailure->GetMessageString(); + aResult = false; + } + catch ( ... ) { - if( anIt.Current()->GetName() == theName ) - return anIt.Current(); + aResult = false; } - return Handle_HYDROData_Object(); + + QApplication::restoreOverrideCursor(); + + if ( aResult ) + { + module()->update( anUpdateFlags ); + commitDocOperation(); + commit(); + } + else + { + abortDocOperation(); + QString aMsg = tr( "INPUT_VALID_DATA" ); + if( !anErrorMsg.isEmpty() ) + aMsg.prepend( anErrorMsg + "\n" ); + SUIT_MessageBox::critical( module()->getApp()->desktop(), + tr( "INSUFFICIENT_INPUT_DATA" ), + aMsg ); + } +} + +void HYDROGUI_Operation::onCancel() +{ + processCancel(); + abort(); }