]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GConnectorController.cxx
Feature #1771 Add licence terms for all files.
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / GConnectorController.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------  
24 */
25
26 /*=========================================================================
27 Program:   bbtk
28 Module:    $RCSfile$
29 Language:  C++
30 Date:      $Date$
31 Version:   $Revision$
32 =========================================================================*/
33
34 /* ---------------------------------------------------------------------
35
36 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
37 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
38 *
39 *  This software is governed by the CeCILL-B license under French law and
40 *  abiding by the rules of distribution of free software. You can  use,
41 *  modify and/ or redistribute the software under the terms of the CeCILL-B
42 *  license as circulated by CEA, CNRS and INRIA at the following URL
43 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
44 *  or in the file LICENSE.txt.
45 *
46 *  As a counterpart to the access to the source code and  rights to copy,
47 *  modify and redistribute granted by the license, users are provided only
48 *  with a limited warranty  and the software's author,  the holder of the
49 *  economic rights,  and the successive licensors  have only  limited
50 *  liability.
51 *
52 *  The fact that you are presently reading this means that you have had
53 *  knowledge of the CeCILL-B license and that you accept its terms.
54 * ------------------------------------------------------------------------ */
55
56 /**
57 *  \file
58 *  \brief Class bbtk::GConnectorController
59 */
60
61
62 #include "GConnectorController.h"
63
64 #ifdef _DEBUG
65 #define new DEBUG_NEW
66 #endif
67 namespace bbtk
68 {
69
70
71         //=========================================================================
72         GConnectorController::GConnectorController()
73         {
74
75         }
76
77         //=========================================================================
78
79         GConnectorController::~GConnectorController()
80         {
81         }
82
83         //=========================================================================
84
85         bool GConnectorController::OnMouseMove()
86         {
87
88                 if (_view->getState() ==SELECTED)
89                 {
90                         _controller->GetManualViewBaseContour()->SetSelected(true);
91                 }
92                 
93                 if ( _vtkInteractorStyleBaseView!=NULL)
94                 {
95                         int X,Y;
96                         wxVTKRenderWindowInteractor *_wxVTKiren;
97                         _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
98                         _wxVTKiren->GetEventPosition( X , Y );
99
100                         if ( (_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) &&(_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) )
101                         {
102                                 _controller->MouseMove(X,Y);
103                         }
104
105                 }
106                 return true;
107         }
108
109         //=========================================================================
110
111         bool GConnectorController::OnLeftButtonDown()
112         {
113
114                 if ( _vtkInteractorStyleBaseView!=NULL )
115                 {
116                         int X,Y;
117                         wxVTKRenderWindowInteractor *wxVTKiren;
118                         wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
119                         wxVTKiren->GetEventPosition(X,Y);
120
121                         _controller->SetKeyBoardMoving( false );
122                         _controller->MouseClickLeft(X,Y);
123
124                 }
125                 return true;
126         }
127
128         //=========================================================================
129
130         bool GConnectorController::OnLeftButtonUp()
131         {
132                 if( _vtkInteractorStyleBaseView!= NULL )
133                 {
134                         int X,Y;
135                         wxVTKRenderWindowInteractor *wxVTKiren;
136                         wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
137                         wxVTKiren->GetEventPosition(X, Y);
138
139                         _controller->MouseReleaseLeft(X,Y);
140                         if(_controller->GetManualViewBaseContour()->GetSelected()==true)
141                         {
142                                 _view->setState(SELECTED);
143                                 _model->notifyObservers(getId(),ADD_TO_SELECTED);
144                         }
145
146                 }
147                 return true;
148
149         }
150
151         //=========================================================================
152
153         bool GConnectorController::OnLeftDClick()
154         {
155
156                 if ( _vtkInteractorStyleBaseView!=NULL )
157                 {
158                         int X,Y;
159                         wxVTKRenderWindowInteractor *wxVTKiren;
160                         wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
161                         wxVTKiren->GetEventPosition(X,Y);
162
163                         _controller->MouseDLeft(X,Y);
164
165                 }
166                 return true;
167         }
168
169         //=========================================================================
170
171         bool GConnectorController::OnRightButtonDown()
172         {
173                 if( _vtkInteractorStyleBaseView!= NULL )
174                 {
175                         int X,Y;
176                         wxVTKRenderWindowInteractor *wxVTKiren;
177                         wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
178                         wxVTKiren->GetEventPosition(X, Y);
179
180                         _controller->MouseClickRight(X,Y);
181
182                 }
183                 return true;
184         }
185
186         //=========================================================================
187
188         bool GConnectorController::OnRightButtonUp()
189         {
190                 return true;
191         }
192
193         //=========================================================================
194
195         bool GConnectorController::OnMiddleButtonDown()
196         {
197                 if ( _vtkInteractorStyleBaseView!=NULL )
198                 {
199                         int X, Y, Z=GPOSITION_Z;
200                         wxVTKRenderWindowInteractor *wxVTKiren;
201                         wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
202                         wxVTKiren->GetEventPosition(X, Y);
203                         _controller->GetManualViewBaseContour()->InitMove( X, Y,Z);
204                 }
205                 return true;
206         }
207         //=========================================================================
208         bool GConnectorController::OnMiddleButtonUp()
209         {
210                 return true;
211         }
212
213         //=========================================================================
214
215         manualConnectorContourController* GConnectorController::getManualContourController()
216         {
217                 return _controller;
218         }
219
220         //=========================================================================
221
222         void GConnectorController::setManualContourController(manualConnectorContourController* controller)
223         {
224                 _controller = controller;
225                 _controller->SetVtkInteractorStyleBaseView(_vtkInteractorStyleBaseView);
226         }
227
228         //=========================================================================
229
230         void GConnectorController::removeFromScene()
231         {
232                 GConnectorModel *conMod = (GConnectorModel*)_model;
233                 conMod->disconnectConnection();
234
235                 _controller->SetEditable(false);
236                 _controller->DeleteContour();
237         }
238
239         //=========================================================================
240
241         void GConnectorController::endContourCreation()
242         {
243                 _controller->endContourCreation();
244         }
245
246         //=========================================================================
247
248 }  // EO namespace bbtk
249
250 // EOF
251