Salome HOME
Image positioning by two points.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.cxx
index 6bd7e444d313a14d21c85bc4209da9eebc53854b..52fbcd1739a140a21570c64536dbfa19d6a2e97e 100644 (file)
@@ -1,13 +1,47 @@
+// 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
+//
+// 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.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#include "HYDROGUI_Operation.h"
+
+#include "HYDROGUI_InputPanel.h"
+#include "HYDROGUI_Module.h"
+#include "HYDROGUI_Tool.h"
+
+#include <HYDROData_Document.h>
+#include <HYDROData_Iterator.h>
 
-#include <HYDROGUI_Operation.h>
-#include <HYDROGUI_Module.h>
-#include <HYDROGUI_InputPanel.h>
 #include <LightApp_Application.h>
 #include <LightApp_SelectionMgr.h>
+
 #include <SUIT_Desktop.h>
+#include <SUIT_MessageBox.h>
+#include <SUIT_Study.h>
+
+#include <QApplication>
 
 HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
-: SUIT_Operation( theModule->getApp() ), myModule( theModule ), myPanel( 0 )
+: LightApp_Operation(),
+  myModule( theModule ),
+  myPanel( 0 )
 {
 }
 
@@ -15,36 +49,168 @@ 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();
 }
 
-void HYDROGUI_Operation::startOperation()
+HYDROGUI_Module* HYDROGUI_Operation::module() const
 {
-  /*TODO: if( myIsTransactional && doc() )
-    doc()->OpenTransaction();*/
+  return myModule;
+}
 
-  if( selectionMgr() )
-    connect( selectionMgr(), SIGNAL( selectionChanged() ), this, SLOT( OnSelectionDone() ) );
+void HYDROGUI_Operation::startOperation()
+{
+  LightApp_Operation::startOperation();
 
   if( inputPanel() )
   {
-    //TODO: connect( inputPanel(), SIGNAL( dlgOk() ),     this, SLOT( onOk() ) );
-    //TODO: connect( inputPanel(), SIGNAL( dlgCancel() ), this, SLOT( abort()  ) );
-
-    inputPanel()->show();
     myModule->getApp()->desktop()->addDockWidget( Qt::RightDockWidgetArea, inputPanel() );
+    inputPanel()->show();
   }
 }
 
-void HYDROGUI_Operation::OnSelectionDone()
+void HYDROGUI_Operation::abortOperation()
 {
+  LightApp_Operation::abortOperation();
+  closeInputPanel();
 }
 
-HYDROGUI_InputPanel* HYDROGUI_Operation::inputPanel() const
+void HYDROGUI_Operation::commitOperation()
 {
-  if( !myPanel )
-    ( ( HYDROGUI_Operation* )this )->myPanel = createInputPanel();
-  return myPanel;
+  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 )
+{
+  return false;
+}
+
+void HYDROGUI_Operation::processCancel()
+{
+}
+
+void HYDROGUI_Operation::startDocOperation()
+{
+  // Open transaction in the model document
+  doc()->StartOperation();
+}
+
+void HYDROGUI_Operation::abortDocOperation()
+{
+  // Abort transaction in the model document
+  doc()->AbortOperation();
+}
+
+void HYDROGUI_Operation::commitDocOperation()
+{
+  // 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 ( ... )
+  {
+    aResult = false;
+  }
+  
+  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();
 }