]> Creatis software - creaContours.git/blob - bbtk/src/bbcreaContoursSetColorLayerImage.cxx
c9dc9f81194a34650a0a982a16ae2fa0b47b1ae8
[creaContours.git] / bbtk / src / bbcreaContoursSetColorLayerImage.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 "bbcreaContoursSetColorLayerImage.h"
5 #include "bbcreaContoursPackage.h"
6
7 #include "wxContourMainFrame.h"
8
9 namespace bbcreaContours
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,SetColorLayerImage)
13 BBTK_BLACK_BOX_IMPLEMENTATION(SetColorLayerImage,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 SetColorLayerImage::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 //    bbSetOutputOut( bbGetInputIn() );
33 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
34  
35         if (wxContourMainFrame::getInstance()!=NULL)
36         { 
37                 if (bbGetInputIn()!=NULL) 
38                 {
39                         wxContourMainFrame *wxcontourmainframe=wxContourMainFrame::getInstance();
40                         wxcontourmainframe->SetColorLayerImage( bbGetInputIn() );
41                 } // InputIn
42         } // if Instance
43  
44 }
45 //===== 
46 // 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)
47 //===== 
48 void SetColorLayerImage::bbUserSetDefaultValues()
49 {
50
51 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
52 //    Here we initialize the input 'In' to 0
53    bbSetInputIn(NULL);
54   
55 }
56 //===== 
57 // 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)
58 //===== 
59 void SetColorLayerImage::bbUserInitializeProcessing()
60 {
61
62 //  THE INITIALIZATION METHOD BODY :
63 //    Here does nothing 
64 //    but this is where you should allocate the internal/output pointers 
65 //    if any 
66
67   
68 }
69 //===== 
70 // 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)
71 //===== 
72 void SetColorLayerImage::bbUserFinalizeProcessing()
73 {
74
75 //  THE FINALIZATION METHOD BODY :
76 //    Here does nothing 
77 //    but this is where you should desallocate the internal/output pointers 
78 //    if any
79   
80 }
81 }
82 // EO namespace bbcreaContours
83
84