Salome HOME
Merge branch 'BR_LAND_COVER_MAP' into BR_quadtree
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.cxx
index b01e44949da11a4cba518a5ddb9088f8ee908402..916a5a682337401c496904920d98e86906c23399 100644 (file)
 #include <SUIT_MessageBox.h>
 #include <SUIT_Study.h>
 
+#include <OCCViewer_ViewManager.h>
+#include <OCCViewer_ViewWindow.h>
+#include <OCCViewer_ViewPort3d.h>
+
 #include <QApplication>
 
 HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
@@ -43,7 +47,8 @@ HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
   myIsPrintErrorMessage( true ),
   myIsTransactionOpened( false ),
   myPreviewManager( 0 ),
-  myPreviewZLayer( -1 )
+  myPreviewZLayer( -1 ),
+  myIsApplyAndClose( true )
 {
   connect( this, SIGNAL( helpContextModule( const QString&, const QString&,
                                             const QString& ) ),
@@ -70,6 +75,7 @@ HYDROGUI_InputPanel* HYDROGUI_Operation::inputPanel() const
   if( !myPanel )
   {
     ( ( HYDROGUI_Operation* )this )->myPanel = createInputPanel();
+    connect( myPanel, SIGNAL( panelApplyAndClose() ), this, SLOT( onApplyAndClose() ) );
     connect( myPanel, SIGNAL( panelApply() ),  this, SLOT( onApply() ) );
     connect( myPanel, SIGNAL( panelCancel() ), this, SLOT( onCancel() ) );
     connect( myPanel, SIGNAL( panelHelp() ), this, SLOT( onHelp() ) );
@@ -150,12 +156,123 @@ void HYDROGUI_Operation::setPreviewManager( OCCViewer_ViewManager* theManager )
     setPreviewZLayer( module()->getOCCDisplayer()->AddPreviewZLayer( myPreviewManager ) );
 }
 
+void HYDROGUI_Operation::setCursor()
+{
+  if ( myPreviewManager )
+  {
+    QVector<SUIT_ViewWindow*> winList = myPreviewManager->getViews();
+    for ( QVector<SUIT_ViewWindow*>::iterator it = winList.begin(); it != winList.end(); ++it )
+    {
+      OCCViewer_ViewWindow* occWin = ::qobject_cast<OCCViewer_ViewWindow*>( *it );
+      if ( occWin )
+      {
+        OCCViewer_ViewPort3d* vp = occWin->getViewPort();
+        if ( vp )
+        {
+          // Save old cursor
+          myCursor = vp->cursor();
+          // Set specific cursor chosen in preferences
+          QCursor aCursor = module()->getPrefEditCursor();
+          vp->setDefaultCursor( aCursor.shape() );
+          vp->setCursor( *vp->getDefaultCursor() );
+        }
+      }
+    }
+  }
+}
+
+void HYDROGUI_Operation::restoreCursor()
+{
+  if ( myPreviewManager )
+  {
+    QVector<SUIT_ViewWindow*> winList = myPreviewManager->getViews();
+    for ( QVector<SUIT_ViewWindow*>::iterator it = winList.begin(); it != winList.end(); ++it )
+    {
+      OCCViewer_ViewWindow* occWin = ::qobject_cast<OCCViewer_ViewWindow*>( *it );
+      if ( occWin )
+      {
+        OCCViewer_ViewPort3d* vp = occWin->getViewPort();
+        if ( vp )
+        {
+          // Restore old cursor
+          vp->setDefaultCursor( myCursor.shape() );
+          vp->setCursor( myCursor );
+        }
+      }
+    }
+  }
+}
+
+void HYDROGUI_Operation::setIsApplyAndClose( const bool theFlag )
+{
+  myIsApplyAndClose = theFlag;
+}
+
+bool HYDROGUI_Operation::isApplyAndClose() const
+{
+  return myIsApplyAndClose;
+}
+
+void HYDROGUI_Operation::apply()
+{
+  QApplication::setOverrideCursor( Qt::WaitCursor );
+
+  startDocOperation();
+
+  int anUpdateFlags = 0;
+  QString anErrorMsg;
+
+  bool aResult = false;
+  QStringList aBrowseObjectsEntries;
+
+  try
+  {
+    aResult = processApply( anUpdateFlags, anErrorMsg, aBrowseObjectsEntries );
+  }
+  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();
+    browseObjects( aBrowseObjectsEntries, myIsApplyAndClose );
+
+    if ( !myIsApplyAndClose && inputPanel() )
+      start();
+  }
+  else if( !anErrorMsg.isEmpty() )
+  {
+    // Abort document opeartion only if requested
+    if ( isToAbortOnApply() )
+      abortDocOperation();
+
+    printErrorMessage( anErrorMsg );
+    // If the operation has no input panel - do abort
+    if ( !inputPanel() ) {
+      abort();
+    }
+  } 
+}
+
 void HYDROGUI_Operation::startOperation()
 {
   LightApp_Operation::startOperation();
   myModule->getActiveOperations().push( this );
 
-  if( inputPanel() )
+  if( myIsApplyAndClose && inputPanel() )
   {
     myModule->getApp()->desktop()->addDockWidget( Qt::RightDockWidgetArea, inputPanel() );
     inputPanel()->show();
@@ -171,7 +288,8 @@ void HYDROGUI_Operation::abortOperation()
 void HYDROGUI_Operation::commitOperation()
 {
   LightApp_Operation::commitOperation();
-  closeInputPanel();
+  if ( myIsApplyAndClose )
+    closeInputPanel();
 }
 
 void HYDROGUI_Operation::stopOperation()
@@ -277,55 +395,16 @@ Handle_HYDROData_Document HYDROGUI_Operation::doc() const
   return HYDROData_Document::Document( myModule->getStudyId() );
 }
 
-void HYDROGUI_Operation::onApply()
+void HYDROGUI_Operation::onApplyAndClose()
 {
-  QApplication::setOverrideCursor( Qt::WaitCursor );
-
-  startDocOperation();
-
-  int anUpdateFlags = 0;
-  QString anErrorMsg;
-
-  bool aResult = false;
-  QStringList aBrowseObjectsEntries;
-
-  try
-  {
-    aResult = processApply( anUpdateFlags, anErrorMsg, aBrowseObjectsEntries );
-  }
-  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();
-    browseObjects( aBrowseObjectsEntries );
-  }
-  else
-  {
-    // Abort document opeartion only if requested
-    if ( isToAbortOnApply() )
-      abortDocOperation();
+  myIsApplyAndClose = true;
+  apply();
+}
 
-    printErrorMessage( anErrorMsg );
-    // If the operation has no input panel - do abort
-    if ( !inputPanel() ) {
-      abort();
-    }
-  }
+void HYDROGUI_Operation::onApply()
+{
+  myIsApplyAndClose = false;
+  apply();
 }
 
 void HYDROGUI_Operation::setPrintErrorMessage( const bool theIsPrint )
@@ -353,6 +432,9 @@ void HYDROGUI_Operation::onCancel()
 {
   processCancel();
   abort();
+  if ( myPanel )
+    abortOperation();
+  myIsApplyAndClose = true;
 }
 
 void HYDROGUI_Operation::onHelp()
@@ -367,8 +449,12 @@ QString HYDROGUI_Operation::getHelpComponent() const
 
 QString HYDROGUI_Operation::getHelpFile() const
 {
-   QString aFileName = ((myName.isEmpty())? operationName() : myName);
-   return aFileName.replace(QRegExp("\\s"), "_").append(".html");
+  QString aFileName = ((myName.isEmpty())? operationName() : myName);
+  aFileName = aFileName.toLower();
+  aFileName = aFileName.replace(QRegExp("\\s"), "_").append(".html");
+  aFileName.remove( "create_" );
+  aFileName.remove( "edit_" );
+  return aFileName;
 }
 
 QString HYDROGUI_Operation::getHelpContext() const
@@ -376,9 +462,9 @@ QString HYDROGUI_Operation::getHelpContext() const
    return QString();
 }
 
-void HYDROGUI_Operation::browseObjects( const QStringList& theBrowseObjectsEntries )
+void HYDROGUI_Operation::browseObjects( const QStringList& theBrowseObjectsEntries,
+                                        const bool theIsApplyAndClose/* = true*/ )
 {
-  bool isApplyAndClose = true;
   bool isOptimizedBrowse = true;
-  module()->getApp()->browseObjects( theBrowseObjectsEntries, isApplyAndClose, isOptimizedBrowse );
+  module()->getApp()->browseObjects( theBrowseObjectsEntries, theIsApplyAndClose, isOptimizedBrowse );
 }