#include <SUIT_MessageBox.h>
#include <SUIT_Study.h>
+#include <QApplication>
+
HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
: LightApp_Operation(),
myModule( theModule ),
{
LightApp_Operation::startOperation();
- doc()->StartOperation();
-
if( inputPanel() )
{
myModule->getApp()->desktop()->addDockWidget( Qt::RightDockWidgetArea, inputPanel() );
void HYDROGUI_Operation::abortOperation()
{
- doc()->AbortOperation();
-
LightApp_Operation::abortOperation();
if( inputPanel() )
void HYDROGUI_Operation::commitOperation()
{
- doc()->CommitOperation( HYDROGUI_Tool::ToExtString( getName() ) );
-
LightApp_Operation::commitOperation();
if( inputPanel() )
void HYDROGUI_Operation::onApply()
{
+ QApplication::setOverrideCursor( Qt::WaitCursor );
+
+ // Open transaction in the model document
+ doc()->StartOperation();
+
int anUpdateFlags = 0;
QString anErrorMsg;
- if( processApply( anUpdateFlags, 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 ( ... )
+ {
+ aResult = false;
+ }
+
+ QApplication::restoreOverrideCursor();
+
+ if ( aResult )
{
module()->update( anUpdateFlags );
+
+ // Commit transaction in the model document
+ doc()->CommitOperation( HYDROGUI_Tool::ToExtString( getName() ) );
commit();
}
else
{
+ // Abort transaction in the model document
+ doc()->AbortOperation();
+
QString aMsg = tr( "INPUT_VALID_DATA" );
if( !anErrorMsg.isEmpty() )
aMsg.prepend( anErrorMsg + "\n" );