X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsVtkGUIEditorGraphic%2FGObjectController.cxx;h=645997b25ed8c7d07df31afb2a71a25d523e5b96;hb=5cf9c7b92a97ee411e6a441beca8a06d2bffc8b3;hp=278d9c768ef514e457e03d718983c2d434ffca9c;hpb=c8402dc4438aae412055d54bacf221c1449a83d6;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx b/lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx index 278d9c7..645997b 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,134 +59,134 @@ namespace bbtk _model = model; _view = view; } + //========================================================================= -bool GObjectController::OnMouseMove() -{ - cout<<"RaC GObjectController::OnMouseMove "<GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor(); + _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor(); _wxVTKiren->GetEventPosition( X , Y ); - - int state = _model->getState(); + int state = _view->getState(); //Evaluate new state - if(state == CLICKED) - { - _model->setState(DRAG); - //MoveObject(X,Y); - - } - if(state == DRAG) - { - //MoveObject(X,Y); - - } - if(state == NOTHING_HAPPENS) + if( state == NOTHING_HAPPENS) { if(_view->isPointInside(X,Y)) { - _model->setState(HIGHLIGHTED); + _view->setState(HIGHLIGHTED); } } - if(state==HIGHLIGHTED) + if( state==HIGHLIGHTED) { if(!_view->isPointInside(X,Y)) { - _model->setState(NOTHING_HAPPENS); + _view->setState(NOTHING_HAPPENS); } } - _view->refresh(); + _model->notifyObservers(getId()); + + + return true; } - return true; -} -//========================================================================= -bool GObjectController::OnLeftButtonDown() -{ + + //========================================================================= - if ( _vtkInteractorStyleBaseView!=NULL ) + bool GObjectController::OnLeftButtonDown()//virtual + { + int state = _view->getState(); + + //Evaluate new state + if(state == HIGHLIGHTED) + { + _isLeftClickDown=true; + _view->setState(SELECTED); + } + return true; + } + + //========================================================================= + + bool GObjectController::OnLeftButtonUp()//virtual { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); - //MouseClickLeft(X,Y); + return true; } - return true; -} -//========================================================================= -bool GObjectController::OnLeftButtonUp() -{ - if ( _vtkInteractorStyleBaseView!=NULL ) + + //========================================================================= + + bool GObjectController::OnLeftDClick()//virtual { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); - //MouseReleaseLeft(X,Y); - } - return true; -} -//========================================================================= -bool GObjectController::OnLeftDClick() -{ - if ( _vtkInteractorStyleBaseView!=NULL ) + + return true; + } + + //========================================================================= + + bool GObjectController::OnMiddleButtonDown()//virtual { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); + return true; + } - //this->MouseDLeft(X,Y); + //========================================================================= + + void GObjectController::moveObject(int X,int Y) + { + _view->moveObject(X,Y); } - return true; -} -//========================================================================= -bool GObjectController::OnMiddleButtonDown() -{ - if ( _vtkInteractorStyleBaseView!=NULL ) + + //========================================================================= + + int GObjectController::getGObjectType() { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X,Y); - //GetManualViewBaseContour()->InitMove( X, Y,GetZ()); - } - return true; -} -//========================================================================= -bool GObjectController::OnMiddleButtonUp() -{ - return true; -} -//========================================================================= -bool GObjectController::OnRightButtonDown() -{ - if( _vtkInteractorStyleBaseView!= NULL ) + return _model->getGObjectType(); + } + + //========================================================================= + + GObjectModel* GObjectController::getModel() { - int X,Y; - wxVTKRenderWindowInteractor *wxVTKiren; - wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor(); - wxVTKiren->GetEventPosition(X, Y); - - //SetCompleteCreation( true ); - //SetKeyBoardMoving( false ); - //this->GetManualContourModel()->SetCloseContour(true); - //MouseClickRight(X,Y); - } - return true; -} -//========================================================================= -bool GObjectController::OnRightButtonUp() -{ - return true; -} -//========================================================================= + return _model; + } + + //========================================================================= + + vtkGObjectView* GObjectController::getView() + { + return _view; + } + + //========================================================================= + + int GObjectController::getId() + { + return _model->getObjectId(); + } + + //========================================================================= + + void GObjectController::setId(int id) + { + _model->setObjectId(id); + } + + //========================================================================= + + std::string GObjectController::getStatusText() + { + return _model->getStatusText(); + } + + //========================================================================= + + void GObjectController::removeFromScene() + { + _view->removeFromScene(); + } + + //========================================================================= } // EO namespace bbtk