2 // 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)
4 #ifndef __bbvtkText2D_h_INCLUDED__
5 #define __bbvtkText2D_h_INCLUDED__
6 #include "bbvtk_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
11 #include "vtkRenderer.h"
12 #include "vtkTextActor.h"
17 class bbvtk_EXPORT Text2D
19 public bbtk::AtomicBlackBox
21 BBTK_BLACK_BOX_INTERFACE(Text2D,bbtk::AtomicBlackBox);
23 // 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)
25 BBTK_DECLARE_INPUT(In,std::string);
26 BBTK_DECLARE_INPUT(Renderer,vtkRenderer*);
27 BBTK_DECLARE_INPUT(Point,std::vector<double>);
28 BBTK_DECLARE_INPUT(Spacing,std::vector<double>);
29 BBTK_DECLARE_INPUT(Opacity,double);
30 BBTK_DECLARE_INPUT(FontSize,int);
31 BBTK_DECLARE_INPUT(Color,std::vector<double>);
32 BBTK_DECLARE_OUTPUT( Out , vtkProp* );
33 BBTK_PROCESS(Process);
36 vtkTextActor *_textActor;
39 // 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)
43 BBTK_BEGIN_DESCRIBE_BLACK_BOX(Text2D,bbtk::AtomicBlackBox);
45 BBTK_AUTHOR("Info-Dev");
46 BBTK_DESCRIPTION("No Description.");
47 BBTK_CATEGORY("empty");
49 BBTK_INPUT(Text2D,In,"Input text (default = 'VOID')",std::string,"");
50 BBTK_INPUT(Text2D,Point,"Point [x,y,z]",std::vector<double>,"");
51 BBTK_INPUT(Text2D,Spacing,"Spacing [sx,sy,sz] default [1,1,1]",std::vector<double>,"");
52 BBTK_INPUT(Text2D,Opacity,"Pacity (default 1)",double,"");
53 BBTK_INPUT(Text2D,Renderer,"Vtk Rendere ",vtkRenderer*,"");
54 BBTK_INPUT(Text2D,FontSize,"Font size (default 14)",int,"");
55 BBTK_INPUT(Text2D,Color,"vector color [r,g,b] (default [0,0,1])",std::vector<double>,"");
57 BBTK_OUTPUT(Text2D,Out,"vtk Prop",vtkProp*,"");
59 BBTK_END_DESCRIBE_BLACK_BOX(Text2D);
61 // 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)
66 #endif // __bbvtkText2D_h_INCLUDED__