]> Creatis software - creaContours.git/blob - bbtk/src/bbcreaContoursSetColorLayerImage.cxx
#3388 wxContourMainFrame_tool box BBTK
[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 // THE MAIN PROCESSING METHOD BODY
20 //   Here we simply set the input 'In' value to the output 'Out'
21 //   And print out the output value
22 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
23 //    void bbSet{Input|Output}NAME(const TYPE&)
24 //    const TYPE& bbGet{Input|Output}NAME() const 
25 //    Where :
26 //    * NAME is the name of the input/output
27 //      (the one provided in the attribute 'name' of the tag 'input')
28 //    * TYPE is the C++ type of the input/output
29 //      (the one provided in the attribute 'type' of the tag 'input')
30
31 //    bbSetOutputOut( bbGetInputIn() );
32 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
33  
34         if (wxContourMainFrame::getInstance()!=NULL)
35         { 
36                 if (bbGetInputIn()!=NULL) 
37                 {
38                         wxContourMainFrame *wxcontourmainframe=wxContourMainFrame::getInstance();
39                         wxcontourmainframe->SetColorLayerImage( bbGetInputIn() );
40                 } // InputIn
41         } // if Instance
42 }
43
44 //=====
45 // 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)
46 //===== 
47 void SetColorLayerImage::bbUserSetDefaultValues()
48 {
49 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
50 //    Here we initialize the input 'In' to 0
51    bbSetInputIn(NULL);
52 }
53
54 //=====
55 // 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)
56 //===== 
57 void SetColorLayerImage::bbUserInitializeProcessing()
58 {
59 //  THE INITIALIZATION METHOD BODY :
60 //    Here does nothing 
61 //    but this is where you should allocate the internal/output pointers 
62 //    if any
63 }
64
65 //=====
66 // 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)
67 //===== 
68 void SetColorLayerImage::bbUserFinalizeProcessing()
69 {
70 //  THE FINALIZATION METHOD BODY :
71 //    Here does nothing 
72 //    but this is where you should desallocate the internal/output pointers 
73 //    if any
74 }
75
76 }// EO namespace bbcreaContours
77
78