]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkText2D.h
#3167 BBTK Feature New Normal - box vtk ImageProperties GetOrientation
[bbtk.git] / packages / vtk / src / bbvtkText2D.h
index cc5e72abf80d447caa4ac352bcbec68710dd0b78..ff85ca4c8479e400e6f62162eae0f8866ba9e758 100644 (file)
@@ -9,6 +9,7 @@
 
 #include "vtkProp.h"
 #include "vtkRenderer.h"
+#include "vtkTextActor.h"
 
 namespace bbvtk
 {
@@ -24,10 +25,16 @@ class bbvtk_EXPORT Text2D
 BBTK_DECLARE_INPUT(In,std::string);
   BBTK_DECLARE_INPUT(Renderer,vtkRenderer*);
   BBTK_DECLARE_INPUT(Point,std::vector<double>);
+  BBTK_DECLARE_INPUT(Spacing,std::vector<double>);
   BBTK_DECLARE_INPUT(Opacity,double);
+  BBTK_DECLARE_INPUT(FontSize,int);
+  BBTK_DECLARE_INPUT(Color,std::vector<double>);
   BBTK_DECLARE_OUTPUT( Out , vtkProp* );
   BBTK_PROCESS(Process);
   void Process();
+
+  vtkTextActor *_textActor;
+
 //===== 
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
@@ -40,9 +47,12 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(Text2D,bbtk::AtomicBlackBox);
   BBTK_CATEGORY("empty");
 
   BBTK_INPUT(Text2D,In,"Input text (default = 'VOID')",std::string,"");
-  BBTK_INPUT(Text2D,Renderer,"Input text",vtkRenderer*,"");
   BBTK_INPUT(Text2D,Point,"Point [x,y,z]",std::vector<double>,"");
-  BBTK_INPUT(Text2D,Opacity,"Input text",double,"");
+  BBTK_INPUT(Text2D,Spacing,"Spacing [sx,sy,sz] default [1,1,1]",std::vector<double>,"");
+  BBTK_INPUT(Text2D,Opacity,"Pacity (default 1)",double,"");
+  BBTK_INPUT(Text2D,Renderer,"Vtk Rendere ",vtkRenderer*,"");
+  BBTK_INPUT(Text2D,FontSize,"Font size (default 14)",int,"");
+  BBTK_INPUT(Text2D,Color,"vector color [r,g,b] (default [0,0,1])",std::vector<double>,"");
 
   BBTK_OUTPUT(Text2D,Out,"vtk Prop",vtkProp*,"");