]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.cxx
Implemented deleting of boxes from the scene....
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / GObjectController.cxx
index fba50c45ef59811a2b094e1db6af6f881e34bd65..645997b25ed8c7d07df31afb2a71a25d523e5b96 100644 (file)
@@ -47,9 +47,11 @@ namespace bbtk
        }
 
        //=========================================================================
+       
        GObjectController::~GObjectController()
        {
        }
+
        //=========================================================================
 
        void GObjectController::setModelAndView(GObjectModel* model, vtkGObjectView* view)
@@ -57,127 +59,134 @@ 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->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
+               _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
                _wxVTKiren->GetEventPosition( X , Y );
-
-               int state  = _model->getState();
+               int state  = _view->getState();
                
                //Evaluate new state
-               if(state == CLICKED)
+               if( state == NOTHING_HAPPENS)
                {
-                       _model->setState(DRAG);
-                       //MoveObject(X,Y);
-                       
-               }
-               if(state == DRAG)
-               {
-                       //MoveObject(X,Y);
-                       
+                       if(_view->isPointInside(X,Y))
+                       {
+                               _view->setState(HIGHLIGHTED);   
+                       }                       
                }
-               if(state == NOTHING_HAPPENS)
+               if( state==HIGHLIGHTED)
                {
-                       if(_view->isPointInside(X,Y))
+                       if(!_view->isPointInside(X,Y))
                        {
-                               _model->setState(HIGHLIGHTED);                          
+                               _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