]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuwxVtkBaseView_Info.cxx
#3456 creaMaracasVisu Feature New Normal - Export Image in wxVtkBaseView_Info
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuwxVtkBaseView_Info.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 "bbcreaMaracasVisuwxVtkBaseView_Info.h"
5 #include "bbcreaMaracasVisuPackage.h"
6 namespace bbcreaMaracasVisu
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,wxVtkBaseView_Info)
10 BBTK_BLACK_BOX_IMPLEMENTATION(wxVtkBaseView_Info,bbtk::AtomicBlackBox);
11 //===== 
12 // 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)
13 //===== 
14 void wxVtkBaseView_Info::Process()
15 {
16
17 // THE MAIN PROCESSING METHOD BODY
18 //   Here we simply set the input 'In' value to the output 'Out'
19 //   And print out the output value
20 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
21 //    void bbSet{Input|Output}NAME(const TYPE&)
22 //    const TYPE& bbGet{Input|Output}NAME() const 
23 //    Where :
24 //    * NAME is the name of the input/output
25 //      (the one provided in the attribute 'name' of the tag 'input')
26 //    * TYPE is the C++ type of the input/output
27 //      (the one provided in the attribute 'type' of the tag 'input')
28
29 //    bbSetOutputOut( bbGetInputIn() );
30 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
31   
32         if (bbGetInputwxVtkBaseView()!=NULL)
33         {
34                 bbSetOutputvtkRenderer( bbGetInputwxVtkBaseView()->GetRenderer() );
35                 bbSetOutputDirection( bbGetInputwxVtkBaseView()->GetDirection() );
36
37                 vtkBaseData *vtkbasedata = bbGetInputwxVtkBaseView()->GetVtkBaseData();
38                 if (vtkbasedata!=NULL)
39                 {
40                         marImageData *marimagedata = vtkbasedata->GetMarImageData();
41                         if (marimagedata!=NULL)
42                         {
43                                 bbSetOutputImage( marimagedata->GetImageData() );                               
44                         } // MarImageData
45                 }  // BaseData
46         }
47
48
49 }
50 //===== 
51 // 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)
52 //===== 
53 void wxVtkBaseView_Info::bbUserSetDefaultValues()
54 {
55
56 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
57 //    Here we initialize the input 'In' to 0
58    bbSetOutputDirection(2);
59    bbSetOutputvtkRenderer(NULL);
60   
61 }
62 //===== 
63 // 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)
64 //===== 
65 void wxVtkBaseView_Info::bbUserInitializeProcessing()
66 {
67
68 //  THE INITIALIZATION METHOD BODY :
69 //    Here does nothing 
70 //    but this is where you should allocate the internal/output pointers 
71 //    if any 
72
73   
74 }
75 //===== 
76 // 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)
77 //===== 
78 void wxVtkBaseView_Info::bbUserFinalizeProcessing()
79 {
80
81 //  THE FINALIZATION METHOD BODY :
82 //    Here does nothing 
83 //    but this is where you should desallocate the internal/output pointers 
84 //    if any
85   
86 }
87 }
88 // EO namespace bbcreaMaracasVisu
89
90