]> 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 8fc721c2b78c87082e5ac8b529349562a2e58a4e..2c90897a2a4bebb8fdfdaf6c6c60f1d678fa9b6c 100644 (file)
@@ -47,9 +47,11 @@ namespace bbtk
        }
 
        //=========================================================================
+       
        GObjectController::~GObjectController()
        {
        }
+
        //=========================================================================
 
        void GObjectController::setModelAndView(GObjectModel* model, vtkGObjectView* view)
@@ -57,134 +59,220 @@ namespace bbtk
                _model = model;
                _view = view;
        }
+
        //=========================================================================
 
-bool GObjectController::OnMouseMove()
-{
-       cout<<"RaC GObjectController::OnMouseMove "<<endl;
-       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(state == CLICKED)
+               /**********************   VIRTUAL *************************/
+
+               if ( _vtkInteractorStyleBaseView!=NULL)
                {
-                       _model->setState(DRAG);
-                       //MoveObject(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)
+                       {
+                               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);
                        
                }
-               if(state == DRAG)
+
+               /**/
+
+               return true;
+       }
+
+       //=========================================================================
+       
+       bool GObjectController::OnLeftButtonDown()
+       {
+               /**********************   VIRTUAL *************************
+               
+               if ( _vtkInteractorStyleBaseView!=NULL )
                {
-                       //MoveObject(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==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(state == NOTHING_HAPPENS)
+
+               */
+
+               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)
+                       {
+                               _model->setState(SELECTED);
+                       }
+
+                       if( !_model->hasChanged() && state == DRAG)
                        {
-                               _model->setState(HIGHLIGHTED);                  
-                       }                       
+                               _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();
                }
-               if(state==HIGHLIGHTED)
+
+               */
+               return true;
+       }
+
+       //=========================================================================
+
+       bool GObjectController::OnRightButtonDown()
+       {
+               /**********************   VIRTUAL *************************/
+
+               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 == SELECTED)
                        {
-                               _model->setState(NOTHING_HAPPENS);                      
+                               _view->setState(NOTHING_HAPPENS);
                        }
+
+                       _model->notifyObservers(_id);
                }
                
-               _view->update();
+               /**/
+
+               return true;
+
        }
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnLeftButtonDown()
-{
-       
-       if ( _vtkInteractorStyleBaseView!=NULL )
-       {
-               int X,Y;
-               wxVTKRenderWindowInteractor *wxVTKiren;
-               wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
-               wxVTKiren->GetEventPosition(X,Y);
 
-               //MouseClickLeft(X,Y);
+       //=========================================================================
+
+       void GObjectController::moveObject(int X,int Y)
+       {
+               _view->moveObject(X,Y); 
        }
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnLeftButtonUp()
-{
-       if ( _vtkInteractorStyleBaseView!=NULL )
+
+       //=========================================================================
+
+       int GObjectController::getGObjectType()
        {
-               int X,Y;
-               wxVTKRenderWindowInteractor *wxVTKiren;
-               wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
-               wxVTKiren->GetEventPosition(X,Y);
-               //MouseReleaseLeft(X,Y);
+               return _model->getGObjectType();
        }
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnLeftDClick()
-{
-       if ( _vtkInteractorStyleBaseView!=NULL )
+
+       //=========================================================================
+       
+       GObjectModel* GObjectController::getModel()
        {
-               int X,Y;
-               wxVTKRenderWindowInteractor *wxVTKiren;
-               wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
-               wxVTKiren->GetEventPosition(X,Y);
+               return _model;
+       }
 
-               //this->MouseDLeft(X,Y);
+       //=========================================================================
+
+       vtkGObjectView* GObjectController::getView()
+       {
+               return _view;
        }
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnMiddleButtonDown()
-{
-       if ( _vtkInteractorStyleBaseView!=NULL )
+
+       //=========================================================================
+
+       int GObjectController::getId()
        {
-               int X,Y;
-               wxVTKRenderWindowInteractor *wxVTKiren;
-               wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
-               wxVTKiren->GetEventPosition(X,Y);
-               //GetManualViewBaseContour()->InitMove( X, Y,GetZ());
+               return _id;
        }
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnMiddleButtonUp()
-{
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnRightButtonDown()
-{
-       if( _vtkInteractorStyleBaseView!= NULL )
+
+       //=========================================================================
+       
+       void GObjectController::setId(int id)
        {
-               int X,Y;
-               wxVTKRenderWindowInteractor *wxVTKiren;
-               wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
-               wxVTKiren->GetEventPosition(X, Y);
-
-               //SetCompleteCreation( true );
-               //SetKeyBoardMoving( false );
-               //this->GetManualContourModel()->SetCloseContour(true);
-               //MouseClickRight(X,Y);
+               _id = id;
        }
-       return true;
-}
-//=========================================================================
-bool GObjectController::OnRightButtonUp()
-{
-       return true;
-}
-//=========================================================================
+
+       //=========================================================================
 
 }  // EO namespace bbtk