]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx
Stable version ... The connection is correctly painted :)
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / GObjectController.cxx
index f00541cc38624a249b5b7d4008233d6f849dc905..2c90897a2a4bebb8fdfdaf6c6c60f1d678fa9b6c 100644 (file)
@@ -47,9 +47,11 @@ namespace bbtk
        }
 
        //=========================================================================
+       
        GObjectController::~GObjectController()
        {
        }
+
        //=========================================================================
 
        void GObjectController::setModelAndView(GObjectModel* model, vtkGObjectView* view)
@@ -57,6 +59,219 @@ namespace bbtk
                _model = model;
                _view = view;
        }
+
+       //=========================================================================
+
+       bool GObjectController::OnMouseMove()
+       {
+               
+               /**********************   VIRTUAL *************************/
+
+               if ( _vtkInteractorStyleBaseView!=NULL)
+               {
+                       int X,Y;
+                       wxVTKRenderWindowInteractor *_wxVTKiren;
+                       _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
+                       _wxVTKiren->GetEventPosition( X , Y );
+
+                       int state  = _view->getState();
+                       
+                       //Evaluate new state
+                       if( state == DRAG)
+                       {
+                               moveObject(X,Y);
+                       }
+
+                       if( state == NOTHING_HAPPENS)
+                       {
+                               if(_view->isPointInside(X,Y))
+                               {
+                                       _view->setState(HIGHLIGHTED);   
+                               }                       
+                       }
+                       if( state==HIGHLIGHTED)
+                       {
+                               if(!_view->isPointInside(X,Y))
+                               {
+                                       _view->setState(NOTHING_HAPPENS);
+                               }
+                       }
+                       
+                       _model->notifyObservers(_id);
+                       
+               }
+
+               /**/
+
+               return true;
+       }
+
+       //=========================================================================
+       
+       bool GObjectController::OnLeftButtonDown()
+       {
+               /**********************   VIRTUAL *************************
+               
+               if ( _vtkInteractorStyleBaseView!=NULL )
+               {
+                       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();
+               }
+
+               */
+
+               return true;
+       }
+
+       //=========================================================================
+       
+       bool GObjectController::OnLeftButtonUp()
+       {
+
+               /**********************   VIRTUAL *************************
+
+               if ( _vtkInteractorStyleBaseView!=NULL )
+               {
+                       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)
+                       {
+                               _model->setState(SELECTED);
+                       }
+
+                       if( !_model->hasChanged() && state == DRAG)
+                       {
+                               _model->setState(SELECTED);
+                       }
+
+                       _model->notifyObservers();
+
+               }
+
+               */
+               return true;
+       }
+
+       //=========================================================================
+       
+       bool GObjectController::OnLeftDClick()
+       {
+               /**********************   VIRTUAL *************************
+
+               if ( _vtkInteractorStyleBaseView!=NULL )
+               {
+                       int X,Y;
+                       wxVTKRenderWindowInteractor *wxVTKiren;
+                       wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
+                       wxVTKiren->GetEventPosition(X,Y);
+
+                       _model->notifyObservers();
+               }
+
+               */
+               return true;
+       }
+
+       //=========================================================================
+
+       bool GObjectController::OnRightButtonDown()
+       {
+               /**********************   VIRTUAL *************************/
+
+               if( _vtkInteractorStyleBaseView!= NULL )
+               {
+                       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);
+               }
+               
+               /**/
+
+               return true;
+
+       }
+
+       //=========================================================================
+
+       void GObjectController::moveObject(int X,int Y)
+       {
+               _view->moveObject(X,Y); 
+       }
+
+       //=========================================================================
+
+       int GObjectController::getGObjectType()
+       {
+               return _model->getGObjectType();
+       }
+
+       //=========================================================================
+       
+       GObjectModel* GObjectController::getModel()
+       {
+               return _model;
+       }
+
+       //=========================================================================
+
+       vtkGObjectView* GObjectController::getView()
+       {
+               return _view;
+       }
+
+       //=========================================================================
+
+       int GObjectController::getId()
+       {
+               return _id;
+       }
+
+       //=========================================================================
+       
+       void GObjectController::setId(int id)
+       {
+               _id = id;
+       }
+
        //=========================================================================
 
 }  // EO namespace bbtk