]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkText2D.h
Text2D FontSize, Color
[bbtk.git] / packages / vtk / src / bbvtkText2D.h
1 //===== 
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)
3 //===== 
4 #ifndef __bbvtkText2D_h_INCLUDED__
5 #define __bbvtkText2D_h_INCLUDED__
6 #include "bbvtk_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 #include "vtkProp.h"
11 #include "vtkRenderer.h"
12 #include "vtkTextActor.h"
13
14 namespace bbvtk
15 {
16
17 class bbvtk_EXPORT Text2D
18  : 
19    public bbtk::AtomicBlackBox
20 {
21   BBTK_BLACK_BOX_INTERFACE(Text2D,bbtk::AtomicBlackBox);
22 //===== 
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)
24 //===== 
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);
34   void Process();
35
36   vtkTextActor *_textActor;
37
38 //===== 
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)
40 //===== 
41 };
42
43 BBTK_BEGIN_DESCRIBE_BLACK_BOX(Text2D,bbtk::AtomicBlackBox);
44   BBTK_NAME("Text2D");
45   BBTK_AUTHOR("Info-Dev");
46   BBTK_DESCRIPTION("No Description.");
47   BBTK_CATEGORY("empty");
48
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>,"");
56
57   BBTK_OUTPUT(Text2D,Out,"vtk Prop",vtkProp*,"");
58
59 BBTK_END_DESCRIBE_BLACK_BOX(Text2D);
60 //===== 
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)
62 //===== 
63 }
64 // EO namespace bbvtk
65
66 #endif // __bbvtkText2D_h_INCLUDED__
67