1 /*=========================================================================
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
14 * This software is governed by the CeCILL-B license under French law and
15 * abiding by the rules of distribution of free software. You can use,
16 * modify and/ or redistribute the software under the terms of the CeCILL-B
17 * license as circulated by CEA, CNRS and INRIA at the following URL
18 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 * or in the file LICENSE.txt.
21 * As a counterpart to the access to the source code and rights to copy,
22 * modify and redistribute granted by the license, users are provided only
23 * with a limited warranty and the software's author, the holder of the
24 * economic rights, and the successive licensors have only limited
27 * The fact that you are presently reading this means that you have had
28 * knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
33 * \brief Class bbtk::manualConnectorContourController
37 #include "manualConnectorContourController.h"
43 //=========================================================================
44 manualConnectorContourController::manualConnectorContourController()
48 //=========================================================================
50 manualConnectorContourController::~manualConnectorContourController()
54 //=========================================================================
56 void manualConnectorContourController::MouseMove(int x, int y) // virtual
61 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
62 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
63 if (GetState()==1){ SetPoint( _bakIdPoint , x , y ,z); }
64 if (GetState()==5){ SetPoint( _bakIdPoint , x , y ,z); }
65 if ( GetState()==6 && !IsEditable() && GetPosibleToMove() &&IsMoving() )
67 //GetManualViewBaseContour()->MoveContour(x,y,z);
69 if (GetState()!=7 || GetManualViewBaseContour()->GetPosibleSelected() ){
70 GetManualViewBaseContour()->Refresh();
71 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
75 GetManualViewBaseContour()->RemoveControlPoints();
76 GetManualViewBaseContour()->Refresh();
77 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
82 //=========================================================================
84 void manualConnectorContourController::MouseClickRight(int x, int y)
86 SetCompleteCreation( true );
87 SetKeyBoardMoving( false );
88 GetManualContourModel()->SetCloseContour(false);
91 SetPosibleToMove( false );
96 //=========================================================================
98 void manualConnectorContourController::MouseClickLeft(int x, int y)
103 int size= GetManualViewBaseContour()->GetNumberOfPoints();
106 // Insert a Control Point with shift+ClickLeft
107 vtkRenderWindowInteractor *vtkrenderwindowinteractor = _vtkInteractorStyleBaseView->GetInteractor();
110 if ( (_vtkInteractorStyleBaseView!=NULL) && (GetState()==0) && ( (vtkrenderwindowinteractor!=NULL) && (vtkrenderwindowinteractor->GetShiftKey()==1) ) )
116 // Start to Insert Control Points with ClickLeft (Empty contour)
117 if ((GetState()==0) && (size==0) && (_easyCreation==true) )
121 GetManualContourModel()->SetCloseContour(false);
125 // RaC Just create 2 points
126 if ((GetState()==1) && (_easyCreation==true) && GetNumberOfPointsManualContour()==2)
129 endContourCreation();
132 // Continue to Insert Control Points with ClickLeft (After being empty the contour)
133 if ((GetState()==1) && (_easyCreation==true) )
137 _bakIdPoint=GetNumberOfPointsManualContour() - 1;
140 // Insert Control Points IF Contour si Selected
141 if ((GetState()==0) && GetManualViewBaseContour()->GetPosibleSelected() )
145 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
148 // Chose id of Control Point to be move
149 if ( (GetState()==0 || GetState()==6) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) )
152 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
153 if(_bakIdPoint!=0 && _bakIdPoint!=GetManualViewBaseContour()->GetNumberOfPoints()-1)
158 // If nothing selected _state=7
159 if ( (GetState()==0) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)==-1 ) )
162 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
166 SetPosibleToMove( true );
167 GetManualViewBaseContour()->SetSelected( GetManualViewBaseContour()->GetPosibleSelected() );
170 if ( GetState() == 0 && GetManualViewBaseContour()->GetPosibleSelected() )
174 GetManualViewBaseContour()->InitMove(x,y,z);
180 GetManualViewBaseContour()->Refresh();
185 //=========================================================================
187 void manualConnectorContourController::endContourCreation()
189 SetCompleteCreation( true );
190 SetKeyBoardMoving( false );
191 GetManualContourModel()->SetCloseContour(false);
193 SetEditable( false );
194 SetPosibleToMove( false );
199 //=========================================================================
201 } // EO namespace bbtk