Salome HOME
Access to 'Invalid value' of altitude from Bathymetry is added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.cxx
index b19684ab4b6fbed37f84bf2509419e76b7617a90..1b132b68f5e71b1efb16e6c8eb16fb3e774bb454 100644 (file)
@@ -36,6 +36,8 @@
 #include <SUIT_MessageBox.h>
 #include <SUIT_Study.h>
 
+#include <QApplication>
+
 HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
 : LightApp_Operation(),
   myModule( theModule ),
@@ -82,8 +84,6 @@ void HYDROGUI_Operation::startOperation()
 {
   LightApp_Operation::startOperation();
 
-  doc()->StartOperation();
-
   if( inputPanel() )
   {
     myModule->getApp()->desktop()->addDockWidget( Qt::RightDockWidgetArea, inputPanel() );
@@ -93,8 +93,6 @@ void HYDROGUI_Operation::startOperation()
 
 void HYDROGUI_Operation::abortOperation()
 {
-  doc()->AbortOperation();
-
   LightApp_Operation::abortOperation();
 
   if( inputPanel() )
@@ -103,8 +101,6 @@ void HYDROGUI_Operation::abortOperation()
 
 void HYDROGUI_Operation::commitOperation()
 {
-  doc()->CommitOperation( HYDROGUI_Tool::ToExtString( getName() ) );
-
   LightApp_Operation::commitOperation();
 
   if( inputPanel() )
@@ -116,7 +112,8 @@ HYDROGUI_InputPanel* HYDROGUI_Operation::createInputPanel() const
   return NULL;
 }
 
-bool HYDROGUI_Operation::processApply( int& theUpdateFlags )
+bool HYDROGUI_Operation::processApply( int& theUpdateFlags,
+                                       QString& theErrorMsg )
 {
   return false;
 }
@@ -127,34 +124,57 @@ void HYDROGUI_Operation::processCancel()
 
 Handle_HYDROData_Document HYDROGUI_Operation::doc() const
 {
-  int aStudyId = myModule->application()->activeStudy()->id();
-  return HYDROData_Document::Document( aStudyId );
+  return HYDROData_Document::Document( myModule->getStudyId() );
 }
 
-Handle_HYDROData_Object HYDROGUI_Operation::findObjectByName( const QString& theName, int theKind ) const
+void HYDROGUI_Operation::onApply()
 {
-  HYDROData_Iterator anIt( doc(), theKind );
-  for( ; anIt.More(); anIt.Next() )
+  QApplication::setOverrideCursor( Qt::WaitCursor );
+
+  // Open transaction in the model document
+  doc()->StartOperation();
+
+  int anUpdateFlags = 0;
+  QString anErrorMsg;
+
+  bool aResult = false;
+  
+  try
   {
-    if( anIt.Current()->GetName() == theName )
-      return anIt.Current();
+    aResult = processApply( anUpdateFlags, anErrorMsg );
   }
-  return Handle_HYDROData_Object();
-}
+  catch ( Standard_Failure )
+  {
+    Handle(Standard_Failure) aFailure = Standard_Failure::Caught();
+    anErrorMsg = aFailure->GetMessageString();
+    aResult = false;
+  }
+  catch ( ... )
+  {
+    aResult = false;
+  }
+  
+  QApplication::restoreOverrideCursor();
 
-void HYDROGUI_Operation::onApply()
-{
-  int anUpdateFlags = 0;
-  if( processApply( anUpdateFlags ) )
+  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" );
     SUIT_MessageBox::critical( module()->getApp()->desktop(),
                                tr( "INSUFFICIENT_INPUT_DATA" ),
-                               tr( "INPUT_VALID_DATA" ) ); 
+                               aMsg ); 
   }
 }