]> Creatis software - creaMaracasVisu.git/commitdiff
#3576 Clean keyPoints selection in ManualContour module
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 7 Feb 2025 15:32:47 +0000 (16:32 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 7 Feb 2025 15:32:47 +0000 (16:32 +0100)
lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualContourBaseControler.cpp
lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualContourControler.cpp
lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewBaseContour.cpp

index 834f59f18c422d7de97c00912ca6d6c08324767d..969d1fa4a992c9664f5e97bc4b4d28f07dc0da02 100644 (file)
@@ -177,10 +177,14 @@ bool manualContourBaseControler::OnMouseMove()
                _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
                _wxVTKiren->GetEventPosition( X , Y );
 
+        /*
                if ( (_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) &&
                        (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) ) {
                        MouseMove(X,Y);
                }
+         */
+        MouseMove(X,Y);
+
        }
        return true;
 }
index 97ce37f97ecc010de40d294d1e6c0145d80da489..f00f0cce8d916c62edd6458611a3e2cfa4ae7899 100644 (file)
@@ -77,9 +77,11 @@ void manualContourControler::MouseClickLeft(int x, int y)
        // Insert a Control Point with shift+ClickLeft
        vtkRenderWindowInteractor *vtkrenderwindowinteractor = _vtkInteractorStyleBaseView->GetInteractor();
 
+    int ps = GetManualViewBaseContour()->GetPosibleSelected();
+    
        if( IsEditable() )
        {
-               if ( (_vtkInteractorStyleBaseView!=NULL) && (GetState()==0) && ( (vtkrenderwindowinteractor!=NULL) && (vtkrenderwindowinteractor->GetShiftKey()==1) ) )
+               if ( (_vtkInteractorStyleBaseView!=NULL) && (GetState()==0) && ( (vtkrenderwindowinteractor!=NULL) && (vtkrenderwindowinteractor->GetShiftKey()==1) )   &&  (GetManualViewBaseContour()->GetPosibleSelected()==false) &&  (GetManualViewBaseContour()->GetIdPoint(x,y,z)==-1) )
                {
                        ok=true;
                        InsertPoint(x,y,z);
@@ -93,15 +95,16 @@ void manualContourControler::MouseClickLeft(int x, int y)
                        GetManualContourModel()->SetCloseContour(false);
                        AddPoint(x,y,z);
                }
-               // Continuie to Insert Control Points with ClickLeft (After being empty the contour)
+               // Continue to Insert Control Points with ClickLeft (After being empty the contour)
                if ((GetState()==1) && (_easyCreation==true) )
                {
                        ok=true;
                        AddPoint(x,y,z);
                        _bakIdPoint=GetNumberOfPointsManualContour() - 1;
                }
+        
                // Insert Control Points IF Contour is Selected
-               if ((GetState()==0) && GetManualViewBaseContour()->GetPosibleSelected() )
+               if ((GetState()==0) && GetManualViewBaseContour()->GetPosibleSelected()  && (vtkrenderwindowinteractor->GetShiftKey()==0) )
                {
                        ok=true;
                        InsertPoint(x,y,z);
@@ -109,7 +112,7 @@ void manualContourControler::MouseClickLeft(int x, int y)
                        SetState(6);
                }
                // Chose id of Control Point to be move
-               if ( (GetState()==0 || GetState()==6) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) )
+               if ( (GetState()==0 || GetState()==6) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 )   && (vtkrenderwindowinteractor->GetShiftKey()==0)   )
                {
                        ok=true;
                        _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
@@ -158,7 +161,11 @@ void manualContourControler::MouseClickLeft(int x, int y)
 void manualContourControler::MouseMove(int x, int y) // virtual
 {
        int z = GetZ();
-       GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
+    int shiftKey = _vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey();
+    if (shiftKey==0)
+    {
+        GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
+    }
        GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
        if (GetState()==1){     SetPoint( _bakIdPoint , x , y ,z); }
        if (GetState()==5){     SetPoint( _bakIdPoint , x , y ,z); }
@@ -167,7 +174,6 @@ void manualContourControler::MouseMove(int x, int y) // virtual
        {
                GetManualViewBaseContour()->MoveContour(x,y,z);
        } // if State 6
-    
        if (GetState()!=7 || GetManualViewBaseContour()->GetPosibleSelected() )
     {
                GetManualViewBaseContour()->Refresh();
index d78cc62bbab7e8f82e8947b64536cd753373c86b..3dc3ebc7f6dd1d37b739d6b8929c2421c97468ef 100644 (file)
@@ -652,7 +652,8 @@ bool manualViewBaseContour::SelectPosibleContour(int x, int y, int z)
        } // if !GetEditable() && !_selected && id!= -1
 */
 
-       if ( (GetEditable()==true) && (id==-1 ) && (this->_lstViewPoints.size()>=2) )
+
+       if (  (GetEditable()==true) && (id==-1 ) && (this->_lstViewPoints.size()>=2)  )
             {
                 if (ifTouchContour(x,y,z)==true)
                 {