Salome HOME
Hide objects from other modules if hide all requested (Bug #355).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.cxx
index 90a5e308ee3486345c6d5394f0eeb184ae8b0e5e..cd2ac6849a993eed670e8b5dad3bf86dae7263c9 100644 (file)
@@ -41,7 +41,8 @@
 HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
 : LightApp_Operation(),
   myModule( theModule ),
-  myPanel( 0 )
+  myPanel( 0 ),
+  myIsPrintErrorMessage( true )
 {
   connect( this, SIGNAL( helpContextModule( const QString&, const QString&,
                                             const QString& ) ),
@@ -207,14 +208,12 @@ void HYDROGUI_Operation::onApply()
   }
   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 );
+    // Abort document opeartion only if requested
+    if ( isToAbortOnApply() )
+      abortDocOperation();
 
+    printErrorMessage( anErrorMsg );
     // If the operation has no input panel - do abort
     if ( !inputPanel() ) {
       abort();
@@ -222,6 +221,27 @@ void HYDROGUI_Operation::onApply()
   }
 }
 
+void HYDROGUI_Operation::setPrintErrorMessage( const bool theIsPrint )
+{
+  myIsPrintErrorMessage = theIsPrint;
+}
+
+void HYDROGUI_Operation::printErrorMessage( const QString& theErrorMsg )
+{
+  if ( myIsPrintErrorMessage )
+  {
+    QString aMsg = tr( "INPUT_VALID_DATA" );
+    if( !theErrorMsg.isEmpty() )
+      aMsg.prepend( theErrorMsg + "\n" );
+    SUIT_MessageBox::critical( module()->getApp()->desktop(),
+                               tr( "INSUFFICIENT_INPUT_DATA" ),
+                               aMsg );
+
+  }
+  
+  myIsPrintErrorMessage = true;
+}
+
 void HYDROGUI_Operation::onCancel()
 {
   processCancel();