]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/src/bbcreaMiniToolsMiniToolsIcons.cxx
Feature #2005 Black Box with MiniTools Icons
[creaMiniTools.git] / bbtk_package_creaMiniTools / src / bbcreaMiniToolsMiniToolsIcons.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 "bbcreaMiniToolsMiniToolsIcons.h"
5 #include "bbcreaMiniToolsPackage.h"
6 #include "images/CDM64.xpm"
7 namespace bbcreaMiniTools
8 {
9
10 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMiniTools,MiniToolsIcons)
11 BBTK_BLACK_BOX_IMPLEMENTATION(MiniToolsIcons,bbtk::AtomicBlackBox);
12 //===== 
13 // 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)
14 //===== 
15 void MiniToolsIcons::Process()
16 {
17
18 // THE MAIN PROCESSING METHOD BODY
19 //   Here we simply set the input 'In' value to the output 'Out'
20 //   And print out the output value
21 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
22 //    void bbSet{Input|Output}NAME(const TYPE&)
23 //    const TYPE& bbGet{Input|Output}NAME() const 
24 //    Where :
25 //    * NAME is the name of the input/output
26 //      (the one provided in the attribute 'name' of the tag 'input')
27 //    * TYPE is the C++ type of the input/output
28 //      (the one provided in the attribute 'type' of the tag 'input')
29     bbSetOutputIconCreaDevManager( new wxBitmap(CDM64) );
30     //std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
31   
32 }
33 //===== 
34 // 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)
35 //===== 
36 void MiniToolsIcons::bbUserSetDefaultValues()
37 {
38
39 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
40    bbSetOutputIconCreaDevManager(NULL);
41   
42 }
43 //===== 
44 // 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)
45 //===== 
46 void MiniToolsIcons::bbUserInitializeProcessing()
47 {
48
49 //  THE INITIALIZATION METHOD BODY :
50 //    Here does nothing 
51 //    but this is where you should allocate the internal/output pointers 
52 //    if any 
53
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 MiniToolsIcons::bbUserFinalizeProcessing()
60 {
61
62 //  THE FINALIZATION METHOD BODY :
63 //    Here does nothing 
64 //    but this is where you should desallocate the internal/output pointers 
65 //    if any
66   
67 }
68 }
69 // EO namespace bbcreaMiniTools
70
71