]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/manualConnectorContourController.cxx
It is possible to delete connections !!!
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / manualConnectorContourController.cxx
1 /*=========================================================================                                                                               
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
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.
20 *
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
25 *  liability. 
26 *
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 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32 *  \file 
33 *  \brief Class bbtk::manualConnectorContourController 
34 */
35
36
37 #include "manualConnectorContourController.h"
38
39 namespace bbtk
40 {
41
42
43         //=========================================================================
44         manualConnectorContourController::manualConnectorContourController()
45         {               
46         }
47
48         //=========================================================================
49         
50         manualConnectorContourController::~manualConnectorContourController()
51         {
52         }
53
54         //=========================================================================
55
56         void manualConnectorContourController::MouseMove(int x, int y) // virtual
57         {
58                 int z=GetZ();
59                 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
60                 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
61                 if (GetState()==1){     SetPoint( _bakIdPoint , x , y ,z); }
62                 if (GetState()==5){     SetPoint( _bakIdPoint , x , y ,z); }
63                 if ( GetState()==6 && !IsEditable() && GetPosibleToMove() &&IsMoving() )
64                 {
65                         //GetManualViewBaseContour()->MoveContour(x,y,z);
66                 }
67                 if (GetState()!=7 || GetManualViewBaseContour()->GetPosibleSelected() ){
68                         GetManualViewBaseContour()->Refresh();
69                         this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
70                 }
71                 if (!IsEditable())
72                 {
73                         GetManualViewBaseContour()->RemoveControlPoints();
74                         GetManualViewBaseContour()->Refresh();
75                         this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
76                 }
77
78         }
79
80         //=========================================================================
81
82         void manualConnectorContourController::MouseClickRight(int x, int y)
83         {
84                 SetCompleteCreation( true );
85                 SetKeyBoardMoving( false );
86                 GetManualContourModel()->SetCloseContour(false);
87
88                 SetEditable( false );
89                 SetPosibleToMove( false );
90                 SetState(0);
91                 
92         }
93
94         //=========================================================================
95         void manualConnectorContourController::MouseClickLeft(int x, int y){
96
97                 bool ok = false;
98                 int z   = GetZ();
99                 int size= GetManualViewBaseContour()->GetNumberOfPoints();
100
101                 // Insert a Control Point with shift+ClickLeft
102                 vtkRenderWindowInteractor *vtkrenderwindowinteractor = _vtkInteractorStyleBaseView->GetInteractor();
103                 if( IsEditable() )
104                 {
105                         if ( (_vtkInteractorStyleBaseView!=NULL) && (GetState()==0) && ( (vtkrenderwindowinteractor!=NULL) && (vtkrenderwindowinteractor->GetShiftKey()==1) ) )
106                         {
107                                 ok=true;
108                                 InsertPoint(x,y,z);
109                                 size++;
110                         }
111                         // Start to Insert Control Points with ClickLeft (Empty contour)
112                         if ((GetState()==0) && (size==0) && (_easyCreation==true) )
113                         {
114                                 ok=true;
115                                 SetState(1);
116                                 GetManualContourModel()->SetCloseContour(false);
117                                 AddPoint(x,y,z);
118                         }
119
120                         // RaC Just create 2 points
121                         if ((GetState()==1) && (_easyCreation==true) && GetNumberOfPointsManualContour()==2)
122                         {
123                                 ok=true;
124
125                                 SetCompleteCreation( true );
126                                 SetKeyBoardMoving( false );
127                                 GetManualContourModel()->SetCloseContour(false);
128
129                                 SetEditable( false );
130                                 SetPosibleToMove( false );
131                                 SetState(0);
132                         }
133
134                         // Continue to Insert Control Points with ClickLeft (After being empty the contour)
135                         if ((GetState()==1) && (_easyCreation==true) )
136                         {
137                                 ok=true;
138                                 AddPoint(x,y,z);
139                                 _bakIdPoint=GetNumberOfPointsManualContour() - 1;
140                         }
141
142                         // Insert Control Points IF Contour si Selected
143                         if ((GetState()==0) && GetManualViewBaseContour()->GetPosibleSelected() )
144                         {
145                                 ok=true;
146                                 InsertPoint(x,y,z);
147                                 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
148                                 SetState(6);
149                         }
150                         // Chose id of Control Point to be move
151                         if ( (GetState()==0 || GetState()==6) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) )
152                         {
153                                 ok=true;
154                                 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
155                                 if(_bakIdPoint!=0 && _bakIdPoint!=GetManualViewBaseContour()->GetNumberOfPoints()-1)
156                                 {
157                                         SetState(5);
158                                 }
159                         }
160                         // If nothing selected _state=7
161                         if ( (GetState()==0) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)==-1 ) )
162                         {
163                                 //ok=true;
164                                 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
165                                 SetState(7);
166                         }
167                 }else{
168                         SetPosibleToMove( true );
169                         GetManualViewBaseContour()->SetSelected( GetManualViewBaseContour()->GetPosibleSelected() );
170                 } // IsEditable
171                 
172                 if ( GetState() == 0 && GetManualViewBaseContour()->GetPosibleSelected() )
173                 {
174                         SetMoving( true );
175                         ok=true;
176                         GetManualViewBaseContour()->InitMove(x,y,z);
177                         SetState(6);
178                 }
179                 if (ok==true)
180                 {
181                         GetManualViewBaseContour()->Refresh();
182                 }
183         }
184         //=========================================================================
185
186 }  // EO namespace bbtk
187
188 // EOF
189