]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GBlackBoxController.cxx
Feature #1771 Add licence terms for all files.
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / GBlackBoxController.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::GBlackBoxController
59 */
60
61
62 #include "GBlackBoxController.h"
63
64 #ifdef _DEBUG
65 #define new DEBUG_NEW
66 #endif
67 namespace bbtk
68 {
69
70
71         //=========================================================================
72         GBlackBoxController::GBlackBoxController()
73         {
74
75         }
76
77         //=========================================================================
78         GBlackBoxController::~GBlackBoxController()
79         {
80         }
81         //=========================================================================
82
83         bool GBlackBoxController::OnMouseMove()
84         {
85
86                 if ( _vtkInteractorStyleBaseView!=NULL)
87                 {
88                         int X,Y;
89                         wxVTKRenderWindowInteractor *_wxVTKiren;
90                         _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
91                         _wxVTKiren->GetEventPosition( X , Y );
92
93                         int state  = _view->getState();
94
95                         //Evaluate new state
96
97                         if(state == NOTHING_HAPPENS)
98                         {
99                                 if(_view->isPointInside(X,Y))
100                                 {
101                                         _view->setState(HIGHLIGHTED);
102                                 }
103                                                 return true; // to avoid to redraw all if nothing
104                         } // state
105
106                         if( state==HIGHLIGHTED)
107                         {
108                                 if(!_view->isPointInside(X,Y))
109                                 {
110                                         _view->setState(NOTHING_HAPPENS);
111                                 }
112                         } // state
113
114
115                         if ((state==DRAG) && (_isLeftClickDown==true) )
116                         {
117                             _objHasBeenMoved=true;
118                         } // state
119
120                         _model->notifyObservers(getId());
121
122                 }
123                 return true;
124         }
125
126         //=========================================================================
127
128         bool GBlackBoxController::OnLeftButtonDown()
129         {
130                 _objHasBeenMoved = false;
131                 _isLeftClickDown = true;
132         bool ok=true;
133                 
134                 int X,Y;
135                 wxVTKRenderWindowInteractor *_wxVTKiren;
136                 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
137                 _wxVTKiren->GetEventPosition( X , Y );
138                 
139                 
140                 
141                 int state  = _view->getState();
142                 //Evaluate new state
143                 
144                 if(_view->isPointInside(X,Y))
145                 
146 //              if(state == HIGHLIGHTED)
147 //EED3oct2010           if ( (state == HIGHLIGHTED) && (ctrlkey==1  ) )
148                         
149                 if(state == SELECTED)
150                 {
151                         _view->setState(NOTHING_HAPPENS);
152                         _model->notifyObservers(getId(),REMOVE_FROM_SELECTED);
153                 } else {
154                     ok=false;
155                         _view->setState(SELECTED);
156                         _model->notifyObservers(getId(),ADD_TO_SELECTED);
157                 }
158                 
159                 
160                 int shiftkey            = _vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey();
161                 int ctrlkey             = _vtkInteractorStyleBaseView->GetInteractor()->GetControlKey();
162                 ctrlkey = ctrlkey + shiftkey;
163                 
164                 
165                 if ( (state==DRAG) && (ctrlkey==1) &&  (_view->isPointInside(X,Y)==true) )
166                 {
167                         _view->setState(NOTHING_HAPPENS);
168                         _model->notifyObservers(getId(),REMOVE_FROM_SELECTED);
169                 }
170
171                 return ok;
172         }
173
174         //=========================================================================
175
176         bool GBlackBoxController::OnLeftButtonUp()
177         {
178         _isLeftClickDown    = false;
179                 int state           = _view->getState();
180
181                 //Evaluate new state
182
183 //EED Borrame
184 //              int X,Y;
185 //              wxVTKRenderWindowInteractor *wxVTKiren;
186 //              wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
187 //              wxVTKiren->GetEventPosition(X,Y);
188 //              if(_isLeftClickDown)
189 //              {
190 //                      _isLeftClickDown=false;
191 //                      if(_view->isPointInside(X,Y))
192 //                      {
193                                 // It is supposed that I'm always inside even if the box is in drag
194 //                              _view->setState(SELECTED);
195 //                              _model->notifyObservers(getId());
196 //                      }
197 //              }
198
199
200
201                 int shiftkey            = _vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey();
202                 int ctrlkey             = _vtkInteractorStyleBaseView->GetInteractor()->GetControlKey();
203                 ctrlkey = ctrlkey + shiftkey;
204                 
205                 
206 //EED 12/07/2012                
207 //              if ( (state==SELECTED) && (ctrlkey==0) && (_objHasBeenMoved==false))
208 //              {
209 //                      _view->setState(NOTHING_HAPPENS);
210 //                      _model->notifyObservers(getId(),REMOVE_FROM_SELECTED);
211 //              }
212
213
214
215                 return true;
216
217         }
218
219         //=========================================================================
220
221         bool GBlackBoxController::OnRightButtonUp()
222         {
223                 return true;
224         }
225
226         //=========================================================================
227
228         bool GBlackBoxController::OnMiddleButtonDown()
229         {
230                 int X,Y;
231                 wxVTKRenderWindowInteractor *wxVTKiren;
232                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
233                 wxVTKiren->GetEventPosition(X,Y);
234
235 //              int state  = _view->getState();
236
237                 //Evaluate new state
238                 if(_view->isPointInside(X,Y))
239                 {
240                         GBlackBoxModel *bbmodel = (GBlackBoxModel*)_model;
241                         _view->setState(HIGHLIGHTED);
242                         if(bbmodel->isExecutable())
243                         {
244                                 bbmodel->setExecutable(false);
245                         }
246                         else
247                         {
248                                 bbmodel->setExecutable(true);
249                         }
250                         bbmodel->notifyObservers(getId());
251                 }
252
253                 return true;
254         }
255
256         //=========================================================================
257
258 }  // EO namespace bbtk
259
260 // EOF
261