X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsVtkGUIEditorGraphic%2FGObjectController.cxx;h=2c90897a2a4bebb8fdfdaf6c6c60f1d678fa9b6c;hb=eaf825847b9ac4bd762deafa59a7df1c2ceba433;hp=37b5de2d4ddf64067a6ed54e61cfe219614723e3;hpb=0b3b25440d23eabf549ebdfa0a4a39ea91ea2f23;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx b/lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx index 37b5de2..2c90897 100644 --- a/lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx +++ b/lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx @@ -47,9 +47,11 @@ namespace bbtk } //========================================================================= + GObjectController::~GObjectController() { } + //========================================================================= void GObjectController::setModelAndView(GObjectModel* model, vtkGObjectView* view) @@ -57,159 +59,220 @@ namespace bbtk _model = model; _view = view; } + //========================================================================= -bool GObjectController::OnMouseMove() -{ - - if ( _vtkInteractorStyleBaseView!=NULL) + bool GObjectController::OnMouseMove() { - int X,Y; - wxVTKRenderWindowInteractor *_wxVTKiren; - _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); - _wxVTKiren->GetEventPosition( X , Y ); - - int state = _model->getState(); - //Evaluate new state - if(!_model->hasChanged() && state == DRAG) - { - moveObject(X,Y); - _model->setChanged(); - } + /********************** VIRTUAL *************************/ - if(!_model->hasChanged() && state == NOTHING_HAPPENS) + if ( _vtkInteractorStyleBaseView!=NULL) { - if(_view->isPointInside(X,Y)) + int X,Y; + wxVTKRenderWindowInteractor *_wxVTKiren; + _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); + _wxVTKiren->GetEventPosition( X , Y ); + + int state = _view->getState(); + + //Evaluate new state + if( state == DRAG) { - _model->setState(HIGHLIGHTED); - _model->setChanged(); - } - } - if(!_model->hasChanged() && state==HIGHLIGHTED) - { - if(!_view->isPointInside(X,Y)) + moveObject(X,Y); + } + + if( state == NOTHING_HAPPENS) + { + if(_view->isPointInside(X,Y)) + { + _view->setState(HIGHLIGHTED); + } + } + if( state==HIGHLIGHTED) { - _model->setState(NOTHING_HAPPENS); - _model->setChanged(); + if(!_view->isPointInside(X,Y)) + { + _view->setState(NOTHING_HAPPENS); + } } + + _model->notifyObservers(_id); + } - - _model->notifyObservers(); + + /**/ + + return true; } - return true; -} -//========================================================================= -bool GObjectController::OnLeftButtonDown() -{ + + //========================================================================= - if ( _vtkInteractorStyleBaseView!=NULL ) + bool GObjectController::OnLeftButtonDown() { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); - - int state = _model->getState(); + /********************** VIRTUAL ************************* - //Evaluate new state - if(!_model->hasChanged() && state==HIGHLIGHTED) + if ( _vtkInteractorStyleBaseView!=NULL ) { - _view->isFirstDragging(true); - _model->setState(DRAG); - _model->setChanged(); + int X,Y; + wxVTKRenderWindowInteractor *wxVTKiren; + wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); + wxVTKiren->GetEventPosition(X,Y); + + int state = _model->getState(); + + //Evaluate new state + if(!_model->hasChanged() && state==HIGHLIGHTED) + { + _view->isStartDragging(true); + _model->setState(DRAG); + } + + if( !_model->hasChanged() && state == SELECTED) + { + if(_view->isPointInside(X,Y)) + { + _view->isStartDragging(true); + _model->setState(DRAG); + } + } + + _model->notifyObservers(); } - if( !_model->hasChanged() && state == SELECTED) + */ + + return true; + } + + //========================================================================= + + bool GObjectController::OnLeftButtonUp() + { + + /********************** VIRTUAL ************************* + + if ( _vtkInteractorStyleBaseView!=NULL ) { - if(_view->isPointInside(X,Y)) + int X,Y; + wxVTKRenderWindowInteractor *wxVTKiren; + wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); + wxVTKiren->GetEventPosition(X,Y); + + int state = _model->getState(); + + //Evaluate new state + if(!_model->hasChanged() && state==CLICKED) { - _view->isFirstDragging(true); - _model->setState(DRAG); - _model->setChanged(); - } + _model->setState(SELECTED); + } + + if( !_model->hasChanged() && state == DRAG) + { + _model->setState(SELECTED); + } + + _model->notifyObservers(); + } - - _model->notifyObservers(); + + */ + return true; } - return true; -} -//========================================================================= -bool GObjectController::OnLeftButtonUp() -{ - if ( _vtkInteractorStyleBaseView!=NULL ) + + //========================================================================= + + bool GObjectController::OnLeftDClick() { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); + /********************** VIRTUAL ************************* - int state = _model->getState(); - - //Evaluate new state - if(!_model->hasChanged() && state==CLICKED) + if ( _vtkInteractorStyleBaseView!=NULL ) { - _model->setState(SELECTED); - _model->setChanged(); + int X,Y; + wxVTKRenderWindowInteractor *wxVTKiren; + wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); + wxVTKiren->GetEventPosition(X,Y); + + _model->notifyObservers(); } - if( !_model->hasChanged() && state == DRAG) + */ + return true; + } + + //========================================================================= + + bool GObjectController::OnRightButtonDown() + { + /********************** VIRTUAL *************************/ + + if( _vtkInteractorStyleBaseView!= NULL ) { - _model->setState(SELECTED); - _model->setChanged(); + int X,Y; + wxVTKRenderWindowInteractor *wxVTKiren; + wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); + wxVTKiren->GetEventPosition(X, Y); + + int state = _view->getState(); + + //Evaluate new state + if( state == SELECTED) + { + _view->setState(NOTHING_HAPPENS); + } + + _model->notifyObservers(_id); } + + /**/ - _model->notifyObservers(); + return true; } - return true; -} -//========================================================================= -bool GObjectController::OnLeftDClick() -{ - if ( _vtkInteractorStyleBaseView!=NULL ) + + //========================================================================= + + void GObjectController::moveObject(int X,int Y) { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); + _view->moveObject(X,Y); + } + + //========================================================================= - _model->notifyObservers(); + int GObjectController::getGObjectType() + { + return _model->getGObjectType(); } - return true; -} -//========================================================================= -bool GObjectController::OnRightButtonDown() -{ - if( _vtkInteractorStyleBaseView!= NULL ) + + //========================================================================= + + GObjectModel* GObjectController::getModel() { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X, Y); - - int state = _model->getState(); - - //Evaluate new state - if( !_model->hasChanged() && state == SELECTED) - { - _model->setState(NOTHING_HAPPENS); - _model->setChanged(); - } + return _model; + } + + //========================================================================= - _model->notifyObservers(); + vtkGObjectView* GObjectController::getView() + { + return _view; } - return true; -} -//========================================================================= + //========================================================================= -void GObjectController::moveObject(int X,int Y) -{ - _view->moveObject(X,Y); -} + int GObjectController::getId() + { + return _id; + } -//========================================================================= + //========================================================================= + + void GObjectController::setId(int id) + { + _id = id; + } + + //========================================================================= } // EO namespace bbtk