From 165b772fd99a0169bc00e21b5f328da81c331971 Mon Sep 17 00:00:00 2001 From: Eduardo DAVILA Date: Mon, 8 Feb 2016 10:29:59 +0100 Subject: [PATCH] #2817 creaVtk Feature New Normal - avoid vtk messages OutputWindwo box (vtkOutputWindow) --- .../src/bbcreaVtkOutputWindow.cxx | 88 +++++++++++++++++++ bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.h | 71 +++++++++++++++ 2 files changed, 159 insertions(+) create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.h diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx b/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx new file mode 100644 index 0000000..5e49bdb --- /dev/null +++ b/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.cxx @@ -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 = " <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 index 0000000..eda454d --- /dev/null +++ b/bbtk_creaVtk_PKG/src/bbcreaVtkOutputWindow.h @@ -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__ + -- 2.45.0