//===== // 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 __bbcreaVtkBoxWidget_h_INCLUDED__ #define __bbcreaVtkBoxWidget_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkBoxWidget.h" #include "vtkRenderer.h" #include "vtkImplicitFunction.h" #include "vtkPlanes.h" #include "vtkImageData.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT BoxWidget : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(BoxWidget,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( Active , bool ); BBTK_DECLARE_INPUT( Renderer , vtkRenderer* ); BBTK_DECLARE_INPUT( ImageInitSize , vtkImageData* ); BBTK_DECLARE_OUTPUT( ImplicitFunction , vtkImplicitFunction* ); BBTK_PROCESS(Process); void Process(); bool firsttime; vtkBoxWidget *boxWidget; vtkPlanes *planes; //===== // 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(BoxWidget,bbtk::AtomicBlackBox); BBTK_NAME("BoxWidget"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(BoxWidget,Active,"(default false) true/false",bool,""); BBTK_INPUT(BoxWidget,ImageInitSize,"(default NULL=> 0,500,0,500,0,500) Boudaring image size ",vtkImageData*,""); BBTK_INPUT(BoxWidget,Renderer,"vtkRenderer",vtkRenderer*,""); BBTK_OUTPUT(BoxWidget,ImplicitFunction,"vtkImplicitFunction",vtkImplicitFunction*,""); BBTK_END_DESCRIBE_BLACK_BOX(BoxWidget); //===== // 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 // __bbcreaVtkBoxWidget_h_INCLUDED__