]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Debug.
authorouv <ouv@opencascade.com>
Fri, 4 Oct 2013 07:43:56 +0000 (07:43 +0000)
committerouv <ouv@opencascade.com>
Fri, 4 Oct 2013 07:43:56 +0000 (07:43 +0000)
1) Fixed crash on the creation of the second polyline.
2) Canceled creation of preview OCC view for Create/edit zone operation.
3) Temporary fix to avoid blinking of coincident zones in OCC view.

src/HYDROGUI/HYDROGUI_AISCurve.cxx
src/HYDROGUI/HYDROGUI_Module.h
src/HYDROGUI/HYDROGUI_PolylineOp.cxx
src/HYDROGUI/HYDROGUI_ZoneOp.cxx
src/HYDROGUI/HYDROGUI_ZoneOp.h
src/HYDROGUI/resources/HYDROGUI_msg_en.ts

index c8366ebc2e4da0e05d3e7dcc134df966fa1da522..75d90586a78836113eeb8afad80f6107dd1c97d1 100755 (executable)
@@ -106,7 +106,7 @@ void HYDROGUI_AISCurveSection::buildSection()
 
     if( aSectSize > 1 )
     {
-      HYDROOperations_BSpline aBSpline( aPoints, aSectIsClosed );
+      HYDROOperations_BSpline aBSpline( aPoints, 0, aSectIsClosed );
       TopoDS_Edge anEdge = BRepBuilderAPI_MakeEdge( aBSpline.Curve() ).Edge();
 
       TopoDS_Wire aWire = BRepBuilderAPI_MakeWire( anEdge ).Wire();
@@ -174,6 +174,7 @@ HYDROGUI_AISCurve::HYDROGUI_AISCurve( CurveCreator_Curve* theCurve, Handle_AIS_I
 
 HYDROGUI_AISCurve::~HYDROGUI_AISCurve(void)
 {
+  myCurve->removeListener();
 }
 
 void HYDROGUI_AISCurve::setCurve( CurveCreator_Curve* theCurve )
index 0f0ac14848c39340d0518ffb34150629ccb72cc2..14c366a9ba02cce29ce348e9d69daf72330e737f 100644 (file)
@@ -53,9 +53,15 @@ class HYDROGUI_Module : public LightApp_Module
 
 public:
   
-  enum ViewManagerRole { VMR_Unknown = 0, VMR_General, 
-                         VMR_TransformImage, VMR_ObserveImage, 
-                         VMR_PreviewZone,    VMR_PreviewCaseZones };
+  enum ViewManagerRole
+  {
+    VMR_Unknown = 0,
+    VMR_General,
+    VMR_TransformImage,
+    VMR_ObserveImage,
+    //VMR_PreviewZone, // totally unused, to delete
+    VMR_PreviewCaseZones // actually unused, to review
+  };
   typedef QPair< SUIT_ViewManager*, ViewManagerRole > ViewManagerInfo;
 
   typedef QMap        < int, ViewManagerInfo > ViewManagerMap;
index 2aa8ccac9b65d2e94649539338dc8b08ce95362d..b1fc1e8507a3d7135040e0c4d2a956c4dd538116 100755 (executable)
 
 #include <OCCViewer_AISSelector.h>
 
+#include <Precision.hxx>
+
+static int ZValueIncrement = 0;
+
 HYDROGUI_PolylineOp::HYDROGUI_PolylineOp( HYDROGUI_Module* theModule, bool theIsEdit )
 : HYDROGUI_Operation( theModule ), myIsEdit(theIsEdit), myCurve(NULL), 
   myViewManager(NULL), myAISCurve(NULL)
@@ -57,7 +61,11 @@ HYDROGUI_PolylineOp::~HYDROGUI_PolylineOp()
 
 void HYDROGUI_PolylineOp::startOperation()
 {
-  CurveCreator_Curve* anOldCurve = myCurve;
+  if( myCurve )
+  {
+    delete myCurve;
+    myCurve = 0;
+  }
 
   HYDROGUI_Operation::startOperation();
 
@@ -99,10 +107,10 @@ void HYDROGUI_PolylineOp::startOperation()
     aPanel->setPolylineName(aNewName);
   }
   aPanel->setCurve(myCurve);
+
   if( myAISCurve )
     myAISCurve->setCurve(myCurve);
-  if( anOldCurve )
-    delete anOldCurve;
+
   displayPreview();
 }
 
@@ -144,6 +152,9 @@ bool HYDROGUI_PolylineOp::processApply( int& theUpdateFlags,
   }
   else{
     aPolylineObj = Handle(HYDROData_Polyline)::DownCast( aDocument->CreateObject( KIND_POLYLINE ) );
+
+    double aZValue = double( ++ZValueIncrement ) * 1e-2; // empiric value, to be revised
+    aPolylineObj->SetZValue( aZValue );
   }
 
   if( aPolylineObj.IsNull() )
index 216904b6ac93a40038b1ddbc61b3078ef0e9d5e0..e6daf5f8b796455c290896d74835e69fc55a00b9 100644 (file)
@@ -45,8 +45,7 @@ HYDROGUI_ZoneOp::HYDROGUI_ZoneOp( HYDROGUI_Module* theModule,
                                   const bool theIsEdit )
 : HYDROGUI_Operation( theModule ),
   myIsEdit( theIsEdit ),
-  myActiveViewManager( 0 ),
-  myPreviewViewManager( 0 ),
+  myViewManager( 0 ),
   myPreviewPrs( 0 )
 {
   setName( theIsEdit ? tr( "EDIT_ZONE" ) : tr( "CREATE_ZONE" ) );
@@ -272,36 +271,21 @@ void HYDROGUI_ZoneOp::onCreatePreview( const QString& thePolylineName )
   }
 
   LightApp_Application* anApp = module()->getApp();
+  if ( !myViewManager )
+    myViewManager = ::qobject_cast<OCCViewer_ViewManager*>( 
+      anApp->getViewManager( OCCViewer_Viewer::Type(), true ) );
 
-  if ( !myActiveViewManager )
+  if ( myViewManager && !myPreviewPrs )
   {
-    myActiveViewManager = anApp->activeViewManager();
-  }
-
-  if ( !myPreviewViewManager )
-  {
-    myPreviewViewManager = ::qobject_cast<OCCViewer_ViewManager*>( 
-      anApp->createViewManager( OCCViewer_Viewer::Type() ) );
-    if ( myPreviewViewManager )
+    if ( OCCViewer_Viewer* aViewer = myViewManager->getOCCViewer() )
     {
-      connect( myPreviewViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
-               this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );
-
-      module()->setViewManagerRole( myPreviewViewManager, HYDROGUI_Module::VMR_PreviewZone );
-      myPreviewViewManager->setTitle( tr( "PREVIEW_ZONE" ) );
-
-      if ( OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer() )
-      {
-        Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
-        if ( !aCtx.IsNull() )
-        {
-          myPreviewPrs = new HYDROGUI_Shape( aCtx, NULL );
-        }
-      }
+      Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
+      if ( !aCtx.IsNull() )
+        myPreviewPrs = new HYDROGUI_Shape( aCtx, NULL );
     }
   }
 
-  if ( !myPreviewViewManager || !myPreviewPrs )
+  if ( !myViewManager || !myPreviewPrs )
     return;
 
   myPreviewPrs->setFillingColor( aPanel->getFillingColor(), false, false );
@@ -309,11 +293,6 @@ void HYDROGUI_ZoneOp::onCreatePreview( const QString& thePolylineName )
   myPreviewPrs->setFace( aWire );
 }
 
-void HYDROGUI_ZoneOp::onLastViewClosed( SUIT_ViewManager* theViewManager )
-{
-  closePreview();
-}
-
 void HYDROGUI_ZoneOp::closePreview()
 {
   if( myPreviewPrs )
@@ -321,19 +300,4 @@ void HYDROGUI_ZoneOp::closePreview()
     delete myPreviewPrs;
     myPreviewPrs = 0;
   }
-
-  if( myPreviewViewManager )
-  {
-    disconnect( myPreviewViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
-                this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );
-
-    module()->getApp()->removeViewManager( myPreviewViewManager ); // myPreviewViewManager is deleted here
-    myPreviewViewManager = 0;
-  }
-
-  if( myActiveViewManager )
-  {
-    HYDROGUI_Tool::SetActiveViewManager( module(), myActiveViewManager );
-    myActiveViewManager = 0;
-  }
 }
index f14194813bef2080cd5a7875302ade0843079d8a..85760aacbcf5500491e12424971f6f2ec830bc7f 100644 (file)
@@ -29,8 +29,6 @@
 
 class OCCViewer_ViewManager;
 
-class SUIT_ViewManager;
-
 class HYDROGUI_Shape;
 
 class HYDROGUI_ZoneOp : public HYDROGUI_Operation
@@ -53,8 +51,6 @@ protected:
 protected slots:
   void                       onCreatePreview( const QString& thePolylineName );
 
-  void                       onLastViewClosed( SUIT_ViewManager* );
-
 private:
   void                       closePreview();
 
@@ -62,9 +58,8 @@ private:
   bool                       myIsEdit;
   Handle(HYDROData_Zone)     myEditedObject;
 
-  SUIT_ViewManager*          myActiveViewManager;
+  OCCViewer_ViewManager*     myViewManager;
 
-  OCCViewer_ViewManager*     myPreviewViewManager;
   HYDROGUI_Shape*            myPreviewPrs;
 };
 
index 2a58417831fbc1a348f2b59857bf4aab1b5c867c..356159ada3e392d6f6c56ff812f77e67346b2063 100644 (file)
@@ -879,10 +879,6 @@ file cannot be correctly imported for a Bathymetry definition.</translation>
       <source>EDIT_ZONE</source>
       <translation>Edit zone</translation>
     </message>
-    <message>
-      <source>PREVIEW_ZONE</source>
-      <translation>Preview zone</translation>
-    </message>
   </context>
 
 </TS>