]> Creatis software - creaContours.git/blob - bbtk/src/bbcreaContoursSetFileLocation.cxx
#onLoad without interface
[creaContours.git] / bbtk / src / bbcreaContoursSetFileLocation.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 "bbcreaContoursSetFileLocation.h"
5 #include "bbcreaContoursPackage.h"
6
7 #include "wxContourMainFrame.h"
8
9 namespace bbcreaContours
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,SetFileLocation)
13 BBTK_BLACK_BOX_IMPLEMENTATION(SetFileLocation,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 SetFileLocation::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
36         if (wxContourMainFrame::getInstance()!=NULL)
37         { 
38                 if (wxContourMainFrame::getInstance()->GetFileLocation().empty()==true)
39                 {
40                         wxContourMainFrame::getInstance()->SetFileLocation( bbGetInputFileLocation() );
41                 }else {
42                         wxContourMainFrame::getInstance()->onSave();
43                         wxContourMainFrame::getInstance()->deleteAllContours();
44                         wxContourMainFrame::getInstance()->SetFileLocation( bbGetInputFileLocation() );
45                 } // if FileLocaton
46
47                 wxContourMainFrame::getInstance()->onLoad( false );
48         
49                 wxContourMainFrame::getInstance()->RefreshInterface();
50         } // if Instance
51 }
52 //===== 
53 // 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)
54 //===== 
55 void SetFileLocation::bbUserSetDefaultValues()
56 {
57
58 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
59 //    Here we initialize the input 'In' to 0
60    bbSetInputFileLocation("");
61   
62 }
63 //===== 
64 // 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)
65 //===== 
66 void SetFileLocation::bbUserInitializeProcessing()
67 {
68
69 //  THE INITIALIZATION METHOD BODY :
70 //    Here does nothing 
71 //    but this is where you should allocate the internal/output pointers 
72 //    if any 
73
74   
75 }
76 //===== 
77 // 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)
78 //===== 
79 void SetFileLocation::bbUserFinalizeProcessing()
80 {
81
82 //  THE FINALIZATION METHOD BODY :
83 //    Here does nothing 
84 //    but this is where you should desallocate the internal/output pointers 
85 //    if any
86   
87 }
88 }
89 // EO namespace bbcreaContours
90
91