]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkScalarBarActor.cxx
#3458 box HausdorffDistancePointSetFilter
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkScalarBarActor.cxx
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 #include "bbcreaVtkScalarBarActor.h"
5 #include "bbcreaVtkPackage.h"
6
7 #include <vtkScalarBarActor.h>
8
9 namespace bbcreaVtk
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,ScalarBarActor)
13 BBTK_BLACK_BOX_IMPLEMENTATION(ScalarBarActor,bbtk::AtomicBlackBox);
14 //===== 
15 // 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)
16 //===== 
17 void ScalarBarActor::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31
32
33 //    bbSetOutputOut( bbGetInputIn() );
34 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
35   
36
37      if (firsttime==true)
38           {
39                         firsttime=false;
40                         vtkScalarBarActor* scalarbarActor = vtkScalarBarActor::New();
41                         scalarbarActor->SetLookupTable( bbGetInputLookupTable() );
42                         scalarbarActor->SetTitle( bbGetInputTitle().c_str() );
43                         scalarbarActor->SetNumberOfLabels(4);
44                         if (bbGetInputDisplayPosition().size()==2)
45                         { 
46                                 scalarbarActor->SetDisplayPosition( bbGetInputDisplayPosition()[0] , bbGetInputDisplayPosition()[1] );
47                         }
48                         int fontsize = scalarbarActor->GetLabelTextProperty()->GetFontSize();
49                         scalarbarActor->GetLabelTextProperty()->SetFontSize(fontsize/2);
50                         if (bbGetInputRenderer()!=NULL)
51                         {
52                  bbGetInputRenderer()->AddActor2D( scalarbarActor );                            
53                         }
54      } // firsttime
55
56
57 }
58
59 //===== 
60 // 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)
61 //===== 
62 void ScalarBarActor::bbUserSetDefaultValues()
63 {
64
65 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
66 //    Here we initialize the input 'In' to 0
67    bbSetInputLookupTable(NULL);
68    bbSetInputRenderer(NULL);
69    firsttime=true;
70   
71 }
72 //===== 
73 // 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)
74 //===== 
75 void ScalarBarActor::bbUserInitializeProcessing()
76 {
77
78 //  THE INITIALIZATION METHOD BODY :
79 //    Here does nothing 
80 //    but this is where you should allocate the internal/output pointers 
81 //    if any 
82
83   
84 }
85 //===== 
86 // 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)
87 //===== 
88 void ScalarBarActor::bbUserFinalizeProcessing()
89 {
90
91 //  THE FINALIZATION METHOD BODY :
92 //    Here does nothing 
93 //    but this is where you should desallocate the internal/output pointers 
94 //    if any
95   
96 }
97 }
98 // EO namespace bbcreaVtk
99
100