]> Creatis software - creaContours.git/blobdiff - bbtk/src/bbcreaContoursSetFileLocation.cxx
#3388 wxContourMainFrame_tool box BBTK
[creaContours.git] / bbtk / src / bbcreaContoursSetFileLocation.cxx
index 84c73b257a6a0df7a80d7a2171a36f6ab1dc023e..d05a301ec2aabcc5465ed16a09da9f5016bfcb19 100644 (file)
@@ -11,12 +11,12 @@ namespace bbcreaContours
 
 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,SetFileLocation)
 BBTK_BLACK_BOX_IMPLEMENTATION(SetFileLocation,bbtk::AtomicBlackBox);
-//===== 
+
+//=====
 // 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)
 //===== 
 void SetFileLocation::Process()
 {
-
 // THE MAIN PROCESSING METHOD BODY
 //   Here we simply set the input 'In' value to the output 'Out'
 //   And print out the output value
@@ -31,60 +31,53 @@ void SetFileLocation::Process()
 
 //    bbSetOutputOut( bbGetInputIn() );
 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
-
-
        if (wxContourMainFrame::getInstance()!=NULL)
        { 
                if (wxContourMainFrame::getInstance()->GetFileLocation().empty()==true)
                {
-                       wxContourMainFrame::getInstance()->SetFileLocation(bbGetInputFileLocation() );
+                       wxContourMainFrame::getInstance()->SetFileLocation( bbGetInputFileLocation() );
                }else {
                        wxContourMainFrame::getInstance()->onSave();
                        wxContourMainFrame::getInstance()->deleteAllContours();
-                       wxContourMainFrame::getInstance()->SetFileLocation(bbGetInputFileLocation() );
+                       wxContourMainFrame::getInstance()->SetFileLocation( bbGetInputFileLocation() );
                } // if FileLocaton
-
-               wxContourMainFrame::getInstance()->onLoad();
+               wxContourMainFrame::getInstance()->onLoad( false );
                wxContourMainFrame::getInstance()->RefreshInterface();
        } // if Instance
 }
-//===== 
+
+//=====
 // 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)
 //===== 
 void SetFileLocation::bbUserSetDefaultValues()
 {
-
 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
 //    Here we initialize the input 'In' to 0
    bbSetInputFileLocation("");
-  
 }
-//===== 
+
+//=====
 // 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)
 //===== 
 void SetFileLocation::bbUserInitializeProcessing()
 {
-
 //  THE INITIALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should allocate the internal/output pointers 
-//    if any 
-
-  
+//    if any
 }
-//===== 
+
+//=====
 // 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)
 //===== 
 void SetFileLocation::bbUserFinalizeProcessing()
 {
-
 //  THE FINALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should desallocate the internal/output pointers 
 //    if any
-  
 }
-}
-// EO namespace bbcreaContours
+
+}// EO namespace bbcreaContours