2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
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.
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
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 # ------------------------------------------------------------------------
26 /*=========================================================================
32 =========================================================================*/
34 /* ---------------------------------------------------------------------
36 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
37 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
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.
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
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 * ------------------------------------------------------------------------ */
58 * \brief Class bbtk::GBoxController
62 #include "GBoxController.h"
71 //=========================================================================
72 GBoxController::GBoxController()
77 //=========================================================================
78 GBoxController::~GBoxController()
81 //=========================================================================
83 bool GBoxController::OnMouseMove()
86 if ( _vtkInteractorStyleBaseView!=NULL)
89 wxVTKRenderWindowInteractor *_wxVTKiren;
90 _wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
91 _wxVTKiren->GetEventPosition( X , Y );
93 int state = _view->getState();
97 if(state == NOTHING_HAPPENS)
99 if(_view->isPointInside(X,Y))
101 _view->setState(HIGHLIGHTED);
104 if( state==HIGHLIGHTED)
106 if(!_view->isPointInside(X,Y))
108 _view->setState(NOTHING_HAPPENS);
112 _model->notifyObservers(getId());
118 //=========================================================================
120 bool GBoxController::OnLeftButtonDown()
123 int state = _view->getState();
126 if(state == HIGHLIGHTED)
129 _isLeftClickDown=true;
130 _view->setState(SELECTED);
131 _model->notifyObservers(getId(),ADD_TO_SELECTED);
137 //=========================================================================
139 bool GBoxController::OnLeftButtonUp()
142 wxVTKRenderWindowInteractor *wxVTKiren;
143 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
144 wxVTKiren->GetEventPosition(X,Y);
146 int state = _view->getState();
150 _isLeftClickDown=false;
151 if(_view->isPointInside(X,Y))
153 // It is supposed that I'm always inside even if the box is in drag
154 _view->setState(SELECTED);
155 _model->notifyObservers(getId());
162 //=========================================================================
164 bool GBoxController::OnRightButtonUp()
169 //=========================================================================
171 bool GBoxController::OnMiddleButtonDown()
176 //=========================================================================
178 } // EO namespace bbtk