Salome HOME
HYDROGUI_Wizard has been refactored and now uses QStackedWidget instead of QWizard.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CalculationOp.cxx
index ea4f712534087fbf19ed6a72a558294adde842b2..b9089a7feb34ed047277060c737f43abaa07b027 100644 (file)
@@ -27,6 +27,8 @@
 #include "HYDROGUI_Module.h"
 #include "HYDROGUI_Tool.h"
 #include "HYDROGUI_UpdateFlags.h"
+#include "HYDROGUI_Zone.h"
+#include "HYDROGUI_Region.h"
 
 #include <HYDROData_Polyline.h>
 #include <HYDROData_Iterator.h>
@@ -39,6 +41,8 @@
 
 #include <LightApp_Application.h>
 #include <LightApp_UpdateFlags.h>
+#include <LightApp_SelectionMgr.h>
+#include <LightApp_DataOwner.h>
 
 #include <SUIT_MessageBox.h>
 #include <SUIT_Desktop.h>
@@ -71,7 +75,6 @@ void HYDROGUI_CalculationOp::startOperation()
   if ( !aPanel )
     return;
 
-  myRegionsList.clear();
   aPanel->reset();
 
   QString anObjectName = HYDROGUI_Tool::GenerateObjectName( module(), "Case" );
@@ -97,7 +100,6 @@ void HYDROGUI_CalculationOp::startOperation()
 
   aPanel->setObjectName( anObjectName );
   aPanel->setEditedObject( myEditedObject );
-//  aPanel->setSelectedGeomObjects( aSelectedObjects );
 
   createPreview();
 }
@@ -122,7 +124,7 @@ void HYDROGUI_CalculationOp::updateGeomObjectsList( HYDROGUI_CalculationDlg* the
       }
     }
   }
-  thePanel->setSelectedGeomObjects( aList );
+  thePanel->setGeomObjects( aList );
 }
 
 void HYDROGUI_CalculationOp::abortOperation()
@@ -149,11 +151,175 @@ HYDROGUI_InputPanel* HYDROGUI_CalculationOp::createInputPanel() const
   connect( aPanel, SIGNAL( addObjects() ), SLOT( onAddObjects() ) );
   connect( aPanel, SIGNAL( removeObjects() ), SLOT( onRemoveObjects() ) );
   connect( aPanel, SIGNAL( splitZones() ), SLOT( onSplitZones() ) );
+  connect( aPanel, SIGNAL( hideZones() ), SLOT( onHideZones() ) );
   connect( aPanel, SIGNAL( clicked( SUIT_DataObject* ) ), SLOT( onSelected( SUIT_DataObject* ) ) );
+  connect( aPanel, SIGNAL( setMergeType( int, QString& ) ), SLOT( onSetMergeType( int, QString& ) ) );
+  connect( aPanel, SIGNAL( moveZones( SUIT_DataObject*, const QList<SUIT_DataObject*>& ) ),
+    SLOT( onMoveZones( SUIT_DataObject*, const QList<SUIT_DataObject*>& ) ) );
+  connect( aPanel, SIGNAL( createRegion( const QList<SUIT_DataObject*>& ) ),
+    SLOT( onCreateRegion( const QList<SUIT_DataObject*>& ) ) );
+  connect( aPanel, SIGNAL( clickedInZonesBrowser( SUIT_DataObject* ) ),
+    SLOT( onClickedInZonesBrowser( SUIT_DataObject* ) ) );
+  connect( aPanel, SIGNAL( objectSelected( const QString & ) ), 
+    SLOT( onObjectSelected( const QString & ) ) );
 
   return aPanel;
 }
 
+void HYDROGUI_CalculationOp::onObjectSelected ( const QString & theObjName )
+{
+  // Select the appropriate geometry object shape in the viewer
+  selectionMgr()->clearSelected();
+
+  // Unhighlight all objects except selected
+  HYDROGUI_Shape* aShape;
+  HYDROGUI_Shape* aSelectedShape = 0;
+  Handle(HYDROData_Entity) anEntity;
+  HYDROData_SequenceOfObjects aSeq = myEditedObject->GetGeometryObjects();
+  HYDROData_SequenceOfObjects::Iterator anIter( aSeq );
+  bool isSelected;
+  QString aName;
+  for ( ; anIter.More(); anIter.Next() )
+  {
+    anEntity = anIter.Value();
+    if ( !anEntity.IsNull() )
+    {
+      aShape = module()->getObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, anEntity );
+      if ( aShape )
+      {
+        aName = anEntity->GetName();
+        isSelected = ( aName == theObjName );
+        if ( isSelected )
+        {
+          aSelectedShape = aShape;
+        }
+        if ( aShape->isHighlighted() != isSelected )
+        {
+          if ( !isSelected )
+          {
+            aShape->highlight( isSelected );
+            aShape->update();
+          }
+        }
+      }
+    }
+  }
+  if ( aSelectedShape )
+  {
+    aSelectedShape->highlight( true );
+    aSelectedShape->update();
+  }
+}
+
+void HYDROGUI_CalculationOp::onClickedInZonesBrowser( SUIT_DataObject* theItem )
+{
+  HYDROGUI_Region* aRegionItem = dynamic_cast<HYDROGUI_Region*>(theItem);
+  HYDROGUI_Zone* aZoneItem;
+  selectionMgr()->clearSelected();
+  if ( aRegionItem )
+  {
+    // Select a region in preview
+    SUIT_DataOwnerPtrList aList( true );
+    DataObjectList aZones = aRegionItem->children();
+    for ( int i = 0; i < aZones.length(); i++ )
+    {
+      aZoneItem = dynamic_cast<HYDROGUI_Zone*>(aZones.at(i));
+      if ( aZoneItem )
+      {
+        aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( aZoneItem->entry() ) ) );
+      }
+    }
+    selectionMgr()->setSelected( aList );
+  }
+  else
+  {
+    // select a single zone
+    aZoneItem = dynamic_cast<HYDROGUI_Zone*>(theItem);
+    if ( aZoneItem )
+    {
+      SUIT_DataOwnerPtrList aList( true );
+      aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( aZoneItem->entry() ) ) );
+      selectionMgr()->setSelected( aList );
+    }
+  }
+}
+
+void HYDROGUI_CalculationOp::onMoveZones( SUIT_DataObject* theRegionItem, const QList<SUIT_DataObject*>& theZonesList )
+{
+  HYDROGUI_Region* aRegion = dynamic_cast<HYDROGUI_Region*>(theRegionItem);
+  if ( aRegion )
+  {
+    QList<HYDROGUI_Zone*> aZonesList;
+    HYDROGUI_Zone* aZone;
+    // Get a list of dropped zones
+    for ( int i = 0; i < theZonesList.length(); i++ )
+    {
+      aZone = dynamic_cast<HYDROGUI_Zone*>( theZonesList.at( i ) );
+      if ( aZone )
+      {
+        aZonesList.append( aZone );
+      }
+    }
+    if ( aZonesList.length() > 0 )
+    {
+      aRegion->addZones( aZonesList );
+      HYDROGUI_CalculationDlg* aPanel = 
+        ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
+      if ( aPanel )
+      {
+        aPanel->setEditedObject(myEditedObject);
+      }
+      createPreview();
+    }
+  }
+}
+
+void HYDROGUI_CalculationOp::onCreateRegion( const QList<SUIT_DataObject*>& theZonesList )
+{
+  QList<HYDROGUI_Zone*> aZonesList;
+  HYDROGUI_Zone* aZone;
+  // Get a list of dropped zones
+  for ( int i = 0; i < theZonesList.length(); i++ )
+  {
+    aZone = dynamic_cast<HYDROGUI_Zone*>( theZonesList.at( i ) );
+    if ( aZone )
+    {
+      aZonesList.append( aZone );
+    }
+  }
+  if ( aZonesList.length() > 0 )
+  {
+    module()->getDataModel()->createNewRegion( myEditedObject, aZonesList );
+    HYDROGUI_CalculationDlg* aPanel = 
+      ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
+    if ( aPanel )
+    {
+      aPanel->setEditedObject(myEditedObject);
+    }
+    createPreview();
+  }
+}
+
+void HYDROGUI_CalculationOp::onSetMergeType( int theMergeType, QString& theBathymetryName )
+{
+  HYDROGUI_CalculationDlg* aPanel = 
+    ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
+  if ( aPanel )
+  {
+    HYDROGUI_Zone* aZone = aPanel->getCurrentZone();
+    if ( aZone )
+    {
+      aZone->setMergeType( theMergeType, theBathymetryName );
+      HYDROGUI_Shape* aShape = module()->getObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, aZone->modelObject() );
+      if ( aShape )
+      {
+        aShape->update();
+      }
+    }
+    aPanel->refreshZonesBrowser();
+  }
+}
+
 void HYDROGUI_CalculationOp::onAddObjects()
 {
   // Add geometry objects selected in the module browser to the calculation case
@@ -182,6 +348,7 @@ void HYDROGUI_CalculationOp::onAddObjects()
   {
     updateGeomObjectsList( aPanel );
   }
+  createPreview();
 }
 
 void HYDROGUI_CalculationOp::onRemoveObjects()
@@ -202,6 +369,7 @@ void HYDROGUI_CalculationOp::onRemoveObjects()
         anObject = Handle(HYDROData_Object)::DownCast( anEntity );
         if ( !anObject.IsNull() )
         {
+          module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, anObject );
           myEditedObject->RemoveGeometryObject( anObject );
         }
       }
@@ -218,37 +386,6 @@ bool HYDROGUI_CalculationOp::processApply( int&     theUpdateFlags,
   if ( !aPanel )
     return false;
 
-  //QString anObjectName = aPanel->getObjectName().simplified();
-  //if ( anObjectName.isEmpty() )
-  //{
-  //  theErrorMsg = tr( "INCORRECT_OBJECT_NAME" );
-  //  return false;
-  //}
-
-  //// check that there are no other objects with the same name in the document
-  //if( !myIsEdit || ( !myEditedObject.IsNull() && myEditedObject->GetName() != anObjectName ) )
-  //{
-  //  Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( module(), anObjectName );
-  //  if ( !anObject.IsNull() )
-  //  {
-  //    theErrorMsg = tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( anObjectName );
-  //    return false;
-  //  }
-  //}
-
-  //Handle(HYDROData_Document) aDocument = doc();
-
-  //Handle(HYDROData_CalculationCase) aCalculObj = myIsEdit ? myEditedObject :
-  //  Handle(HYDROData_CalculationCase)::DownCast( aDocument->CreateObject( KIND_CALCULATION ) );
-  //if ( aCalculObj.IsNull() )
-  //  return false;
-
-  //aCalculObj->SetName( anObjectName );
-
-  //QStringList aRefObjectNames = aPanel->getSelectedGeomObjects();
-  //HYDROData_SequenceOfObjects aGeomObjects = 
-  //  HYDROGUI_Tool::FindObjectsByNames( module(), aRefObjectNames );
-
   theUpdateFlags = UF_Model;
 
   return true;
@@ -299,59 +436,107 @@ void HYDROGUI_CalculationOp::onApply()
 
 void HYDROGUI_CalculationOp::onSplitZones()
 {
-  //myRegionsList.clear();
-
-  HYDROGUI_CalculationDlg* aPanel = 
-    ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
-  if ( !aPanel )
-    return;
-
   QApplication::setOverrideCursor( Qt::WaitCursor );
 
-  //QStringList aGeomObjectNames = aPanel->getSelectedGeomObjects();
-  //HYDROData_SequenceOfObjects aGeomObjects = 
-  //  HYDROGUI_Tool::FindObjectsByNames( module(), aGeomObjectNames );
-
-  //QStringList aResSplittedZones;
-
-  //HYDROData_SplitToZonesTool::SplitDataList aSplittedZones =
-  //  HYDROData_SplitToZonesTool::SplitToZones( aGeomObjects );
-
-  //QStringList aUsedNames;
-
-  //HYDROData_SplitToZonesTool::SplitDataListIterator anIter( aSplittedZones );
-  //while( anIter.hasNext() )
-  //{
-  //  Region aRegion;
-  //  aRegion.SplitData = anIter.next();
-
-  //  aRegion.FillingColor = HYDROGUI_Tool::GenerateFillingColor( module(), aRegion.SplitData.ObjectNames );
-  //  aRegion.BorderColor  = QColor( HYDROData_ImmersibleZone::DefaultBorderColor() );
-
-  //  aRegion.RegionName = HYDROGUI_Tool::GenerateObjectName( module(), "Region", aUsedNames );
+  if ( myEditedObject->IsMustBeUpdated() )
+  {
+    myShowZones = true;
+    myEditedObject->SplitGeometryObjects();
 
-  //  aUsedNames.append( aRegion.RegionName );
+    HYDROGUI_CalculationDlg* aPanel = 
+      ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
+    if ( aPanel )
+    {
+      aPanel->setEditedObject( myEditedObject );
+    }
 
-  //  aResSplittedZones.append( aRegion.RegionName );
+    createPreview();
+  }
+  else
+  {
+    setZonesVisible( true );
+  }
 
-  //  myRegionsList.append( aRegion );
-  //}
-  //
+  QApplication::restoreOverrideCursor();
+}
 
-  myEditedObject->SplitGeometryObjects();
-  aPanel->setEditedObject( myEditedObject );
-  createPreview();
+void HYDROGUI_CalculationOp::onHideZones()
+{
+  setZonesVisible( false );
+}
 
-  QApplication::restoreOverrideCursor();
+void HYDROGUI_CalculationOp::setZonesVisible( bool theIsVisible )
+{
+  myShowZones = theIsVisible;
+  HYDROData_SequenceOfObjects aRegions = myEditedObject->GetRegions();
+  HYDROData_SequenceOfObjects::Iterator aRegionsIter( aRegions );
+  HYDROData_SequenceOfObjects aZones;
+  Handle(HYDROData_Region) aRegion;
+  if ( myPreviewViewManager ) 
+  {
+    if ( OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer() )
+    {
+      Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
+      if ( !aCtx.IsNull() )
+      {
+        for ( ; aRegionsIter.More(); aRegionsIter.Next() )
+        {
+          aRegion = Handle(HYDROData_Region)::DownCast( aRegionsIter.Value() );
+          if ( !aRegion.IsNull() )
+          {
+            aZones = aRegion->GetZones();
+            HYDROData_SequenceOfObjects::Iterator aZonesIter( aZones );
+            for ( ; aZonesIter.More(); aZonesIter.Next() )
+            {
+              if ( theIsVisible )
+              {
+                showObject( aZonesIter.Value(), aCtx );
+              }
+              else
+              {
+                module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, aZonesIter.Value() );
+              }
+            }
+          }
+        }
+      }
+    }
+  }
 }
 
 void HYDROGUI_CalculationOp::createPreview()
 {
   LightApp_Application* anApp = module()->getApp();
+  HYDROData_SequenceOfObjects aSeq = myEditedObject->GetGeometryObjects();
+  Handle(HYDROData_Entity) anEntity;
+
+  if ( myShowZones )
+  {
+    // Gather zones for displaying
+    HYDROData_SequenceOfObjects aRegions = myEditedObject->GetRegions();
+    HYDROData_SequenceOfObjects::Iterator aRegionsIter( aRegions );
+    HYDROData_SequenceOfObjects aZones;
+    Handle(HYDROData_Region) aRegion;
+    for ( ; aRegionsIter.More(); aRegionsIter.Next() )
+    {
+      anEntity = aRegionsIter.Value();
+      if ( !anEntity.IsNull() )
+      {
+        aRegion = Handle(HYDROData_Region)::DownCast( anEntity );
+        if ( !aRegion.IsNull() )
+        {
+          aZones = aRegion->GetZones();
+          aSeq.Append( aZones );
+        }
+      }
+    }
+  }
+
+  module()->removeViewShapes( HYDROGUI_Module::VMR_PreviewCaseZones );
 
   if ( !myActiveViewManager )
   {
-    if ( myRegionsList.isEmpty() )
+    if ( aSeq.IsEmpty() )
       return;
 
     myActiveViewManager = anApp->activeViewManager();
@@ -379,21 +564,10 @@ void HYDROGUI_CalculationOp::createPreview()
     Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
     if ( !aCtx.IsNull() )
     {
-      RegionsList::iterator anIter = myRegionsList.begin();
-      for ( ; anIter != myRegionsList.end(); ++anIter )
+      HYDROData_SequenceOfObjects::Iterator anIter( aSeq );
+      for ( ; anIter.More(); anIter.Next() )
       {
-        Region& aRegion = *anIter;
-        if ( aRegion.Shape )
-        {
-          aRegion.Shape->erase( false );
-          delete aRegion.Shape;
-        }
-
-        aRegion.Shape = new HYDROGUI_Shape( aCtx, NULL );
-
-        aRegion.Shape->setFillingColor( aRegion.FillingColor, false, false );
-        aRegion.Shape->setBorderColor( aRegion.BorderColor, false, false );
-        aRegion.Shape->setFace( aRegion.SplitData.Face(), true, false );
+        showObject( anIter.Value(), aCtx );
       }
 
       //Process the draw events for viewer
@@ -404,6 +578,20 @@ void HYDROGUI_CalculationOp::createPreview()
   }
 }
 
+void HYDROGUI_CalculationOp::showObject( Handle(HYDROData_Entity) theEntity, Handle(AIS_InteractiveContext) theCtx )
+{
+  if ( !theEntity.IsNull() )
+  {
+    HYDROGUI_Shape* aShape = module()->getObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, theEntity );
+    if ( !aShape )
+    {
+      aShape = new HYDROGUI_Shape( theCtx, theEntity );
+      module()->setObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, theEntity, aShape );
+    }
+    aShape->update();
+  }
+}
+
 void HYDROGUI_CalculationOp::onLastViewClosed( SUIT_ViewManager* theViewManager )
 {
   closePreview();
@@ -411,18 +599,6 @@ void HYDROGUI_CalculationOp::onLastViewClosed( SUIT_ViewManager* theViewManager
 
 void HYDROGUI_CalculationOp::closePreview()
 {
-  RegionsList::iterator anIter= myRegionsList.begin();
-  for ( ; anIter != myRegionsList.end(); ++anIter )
-  {
-    Region& aRegion = *anIter;
-    if ( aRegion.Shape )
-    {
-      aRegion.Shape->erase( false );
-      delete aRegion.Shape;
-      aRegion.Shape = NULL;
-    }
-  }
-
   if( myPreviewViewManager )
   {
     disconnect( myPreviewViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),