]> Creatis software - creaVtk.git/commitdiff
#2817 creaVtk Feature New Normal - avoid vtk messages OutputWindwo box (vtkOutputWindow)
authorEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Mon, 8 Feb 2016 09:29:59 +0000 (10:29 +0100)
committerEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Mon, 8 Feb 2016 09:29:59 +0000 (10:29 +0100)
bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx [new file with mode: 0644]
bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.h [new file with mode: 0644]

diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx b/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx
new file mode 100644 (file)
index 0000000..5e49bdb
--- /dev/null
@@ -0,0 +1,88 @@
+//===== 
+// 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)
+//===== 
+#include "bbcreaVtkOutputWindow.h"
+#include "bbcreaVtkPackage.h"
+namespace bbcreaVtk
+{
+
+vtkOutputWindowBBTK::vtkOutputWindowBBTK() {}
+void vtkOutputWindowBBTK::DisplayDebugText (const char *) {}
+void vtkOutputWindowBBTK::DisplayText (const char *) {}
+void vtkOutputWindowBBTK::DisplayErrorText (const char *) {}
+void vtkOutputWindowBBTK::DisplayWarningText (const char *) {}
+void vtkOutputWindowBBTK::DisplayGenericWarningText (const char *) {}
+
+
+
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,OutputWindow)
+BBTK_BLACK_BOX_IMPLEMENTATION(OutputWindow,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 OutputWindow::Process()
+{
+// THE MAIN PROCESSING METHOD BODY
+//   Here we simply set the input 'In' value to the output 'Out'
+//   And print out the output value
+// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
+//    void bbSet{Input|Output}NAME(const TYPE&)
+//    const TYPE& bbGet{Input|Output}NAME() const 
+//    Where :
+//    * NAME is the name of the input/output
+//      (the one provided in the attribute 'name' of the tag 'input')
+//    * TYPE is the C++ type of the input/output
+//      (the one provided in the attribute 'type' of the tag 'input')
+
+//    bbSetOutputOut( bbGetInputIn() );
+//    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
+  
+       if (firsttime==true)
+       {
+               firsttime=false;
+               vtkOutputWindowBBTK *w= vtkOutputWindowBBTK::New();
+               vtkOutputWindow::SetInstance( w );
+               w->Delete();
+       }
+}
+//===== 
+// 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 OutputWindow::bbUserSetDefaultValues()
+{
+
+//  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
+//    Here we initialize the input 'In' to 0
+
+    firsttime=true;
+//   bbSetInputIn(0);
+}
+//===== 
+// 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 OutputWindow::bbUserInitializeProcessing()
+{
+
+//  THE INITIALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should allocate the internal/output pointers 
+//    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 OutputWindow::bbUserFinalizeProcessing()
+{
+
+//  THE FINALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should desallocate the internal/output pointers 
+//    if any
+  
+}
+}
+// EO namespace bbcreaVtk
+
+
diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.h b/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.h
new file mode 100644 (file)
index 0000000..eda454d
--- /dev/null
@@ -0,0 +1,71 @@
+//===== 
+// 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)
+//===== 
+#ifndef __bbcreaVtkOutputWindow_h_INCLUDED__
+#define __bbcreaVtkOutputWindow_h_INCLUDED__
+#include "bbcreaVtk_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+#include "iostream"
+
+#include "vtkOutputWindow.h"
+
+namespace bbcreaVtk
+{
+
+class vtkOutputWindowBBTK : public vtkOutputWindow
+{
+public:
+       vtkOutputWindowBBTK();
+       static vtkOutputWindowBBTK* New() { return new vtkOutputWindowBBTK;}
+
+       virtual void    DisplayDebugText (const char *);
+       virtual void    DisplayText (const char *);
+       virtual void    DisplayErrorText (const char *);
+       virtual void    DisplayWarningText (const char *);
+       virtual void    DisplayGenericWarningText (const char *);
+
+protected:
+};
+
+
+
+class bbcreaVtk_EXPORT OutputWindow
+ : 
+   public bbtk::AtomicBlackBox
+{
+  BBTK_BLACK_BOX_INTERFACE(OutputWindow,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)
+//===== 
+
+//  BBTK_DECLARE_INPUT(In,double);
+//  BBTK_DECLARE_OUTPUT(Out,double);
+
+  BBTK_PROCESS(Process);
+  void Process();
+
+  bool firsttime;
+//===== 
+// 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_BEGIN_DESCRIBE_BLACK_BOX(OutputWindow,bbtk::AtomicBlackBox);
+  BBTK_NAME("OutputWindow");
+  BBTK_AUTHOR("InfoDev");
+  BBTK_DESCRIPTION("No Description.");
+  BBTK_CATEGORY("empty");
+
+//  BBTK_INPUT(OutputWindow,In,"First input",double,"");
+
+//  BBTK_OUTPUT(OutputWindow,Out,"First output",double,"");
+
+BBTK_END_DESCRIBE_BLACK_BOX(OutputWindow);
+//===== 
+// 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 bbcreaVtk
+
+#endif // __bbcreaVtkOutputWindow_h_INCLUDED__
+