// 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);
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);
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);
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); }
{
GetManualViewBaseContour()->MoveContour(x,y,z);
} // if State 6
-
if (GetState()!=7 || GetManualViewBaseContour()->GetPosibleSelected() )
{
GetManualViewBaseContour()->Refresh();