]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGBlackBoxView.h
This commit was manufactured by cvs2svn to create tag 'CREATOOLS_2-0-3'.
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / vtkGBlackBoxView.h
index 35a8c5115f3d872d5576cebd2ee64e2d675b4f85..b17f19dbeca1e6274d8734885ef7f15d41f3a7ab 100644 (file)
@@ -35,30 +35,35 @@ Version:   $Revision$
 *  \brief Class bbtk::vtkGBlackBoxView : abstract black-box interface. 
 */
 
-/**
-* \class bbtk::vtkGBlackBoxView
-* \brief 
-*/
+/****
+* Design and Developpement of BBTK GEditor
+* Ricardo A Corredor J <ra.corredor67@uniandes.edu.co>
+* RaC - 2010
+****/
 
 #ifndef __vtkGBlackBoxView_h__
 #define __vtkGBlackBoxView_h__
 
 //Includes same project
 #include "GlobalConstants.h"
-#include "vtkGObjectView.h"
+#include "vtkGBoxView.h"
+#include "GBlackBoxModel.h"
 
 //Includes creaMaracasVisu
-#include <wxVtk3DBaseView.h>
+
+#include "vtkInteractorStyleBaseView.h"
 
 //Includes vtk
-#include <vtkRenderer.h>
 
 #include "vtkPolyDataMapper.h"
 #include "vtkActor.h"
-
+#include "vtkVectorText.h"
 #include "vtkRenderer.h"
 #include "vtkCellArray.h"
 
+#include "vtkTextActor3D.h"
+#include "vtkTextProperty.h"
+
 
 //Includes std
 #include <iostream>
@@ -67,7 +72,7 @@ Version:   $Revision$
 namespace bbtk
 {
 
-       class vtkGBlackBoxView : public vtkGObjectView
+       class vtkGBlackBoxView : public vtkGBoxView
        {
 
        public: 
@@ -76,21 +81,27 @@ namespace bbtk
                vtkGBlackBoxView();
                ~vtkGBlackBoxView();
                
-               //Public methods                        
+               //Public methods                
 
        private:
 
                //Private Attributes
+               vtkTextActor3D* _boxTextActor;
 
                //Private Methods
+               void updatePositionTextActor(double xInic, double yInic, double zInic);
 
        protected:
 
                //Protected Attributes
                
                //Protected Methods
+               virtual void addVtkActors();
+               virtual void removeVtkActors();
                virtual void createVtkObjects();
-               virtual void refresh();
+
+               virtual void update(int idController,int command);
+               virtual void updateColors();
        };