]> Creatis software - bbtk.git/commitdiff
CompareImages
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 25 Mar 2024 10:02:25 +0000 (11:02 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 25 Mar 2024 10:02:25 +0000 (11:02 +0100)
packages/wx/src/bbwxDropFiles.cxx
packages/wx/src/bbwxDropFiles.h

index 62585a7f4997d89d9fea8d51b066d78ca8b50fa8..63bc712d5438f98f0327ad29b7070265aae81ce0 100644 (file)
@@ -43,7 +43,6 @@ BBTK_BLACK_BOX_IMPLEMENTATION(DropFiles,bbtk::AtomicBlackBox);
 //===== 
 void DropFiles::Process()
 {
-
 // THE MAIN PROCESSING METHOD BODY
 //   Here we simply set the input 'In' value to the output 'Out'
 //   And print out the output value
@@ -58,50 +57,45 @@ void DropFiles::Process()
 
 //    bbSetOutputOut( bbGetInputIn() );
 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
-
        if (bbGetInputWidget()!=NULL)
        { 
                bbGetInputWidget()->SetDropTarget( new WxDropFiles(this) );
        }
-  
+    bbSetOutputLstPaths( bbGetInputLstPaths() );
 }
-//===== 
+
+//=====
 // 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 DropFiles::bbUserSetDefaultValues()
 {
-
 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
 //    Here we initialize the input 'In' to 0
    bbSetInputWidget(NULL);
-  
 }
-//===== 
+
+//=====
 // 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 DropFiles::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 DropFiles::bbUserFinalizeProcessing()
 {
-
 //  THE FINALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should desallocate the internal/output pointers 
 //    if any
-  
-}
 }
-// EO namespace bbwx
+
+}// EO namespace bbwx
 
 
index e6a0f4314c7022879e2855769906e70ce8f88ca5..95fafcba113a4dd6da99faaeb2b565c1be301f80 100644 (file)
@@ -26,6 +26,7 @@ class bbwx_EXPORT DropFiles
 // 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)
 //===== 
   BBTK_DECLARE_INPUT(Widget,wxWindow*);
+  BBTK_DECLARE_INPUT(LstPaths,std::vector<std::string>);
   BBTK_DECLARE_OUTPUT(LstPaths,std::vector<std::string>);
   BBTK_PROCESS(Process);
   void Process();
@@ -40,13 +41,13 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(DropFiles,bbtk::AtomicBlackBox);
   BBTK_DESCRIPTION("No Description.");
   BBTK_CATEGORY("empty");
   BBTK_INPUT(DropFiles,Widget,"wxWidget",wxWindow*,"");
+  BBTK_INPUT(DropFiles,LstPaths,"Input init List Paths", std::vector<std::string> ,"");
   BBTK_OUTPUT(DropFiles,LstPaths,"List of paths",std::vector<std::string>,"");
 BBTK_END_DESCRIBE_BLACK_BOX(DropFiles);
 //===== 
 // 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)
 //===== 
-}
-// EO namespace bbwx
+}  // EO namespace bbwx
 
 #endif // __bbwxDropFiles_h_INCLUDED__