]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectController.h
#3084 bbGEditor Bug New Normal - Color refresh for inputs and outputs
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / GObjectController.h
index fed4a545c0675cf19d0feb92c931a18b7e7f926b..ff37a2f7e8d641b5ae1eaa633cfe12f0a1a4e005 100644 (file)
@@ -81,63 +81,39 @@ Version:   $Revision$
 #include <iostream>
 
 namespace bbtk {
-
     class GObjectController : public InteractorStyleMaracas {
     public:
-
         //Constructors
         GObjectController( );
         ~ GObjectController( );
-
         //Public methods
-
         void setModelAndView( GObjectModel* model, vtkGObjectView* view );
-
         // Same type of the saved in the model of the graphical objects
         int getGObjectType( );
-
-        GObjectModel* getModel( );
+        GObjectModel*  getModel( );
         vtkGObjectView* getView( );
-
         std::string getStatusText( );
-
         // Same ObjectID from the model
         int getId( );
         void setId( int id );
-
         virtual void removeFromScene( );
-
     private:
-
         //Attributes
-
-
-
         //Private Methods
-
     protected:
-
         //Protected Attributes
-
-        GObjectModel *_model;
-        vtkGObjectView *_view;
-
+        GObjectModel   *_model;
+        vtkGObjectView         *_view;
         bool _isLeftClickDown;
-
         //Protected Methods
-
         // Methods from InteractorStyleMaracas
         virtual bool OnMouseMove( );
         virtual bool OnLeftButtonDown( );
         virtual bool OnLeftButtonUp( );
         virtual bool OnLeftDClick( );
         virtual bool OnMiddleButtonDown( );
-
         virtual void moveObject( int X, int Y );
-
     };
-
-
 }
 // namespace bbtk
 #endif