#ifdef _USE_WXWIDGETS_ #ifndef __bbmaracasvisuHistogramView_h_INCLUDED__ #define __bbmaracasvisuHistogramView_h_INCLUDED__ #include "bbtkWxBlackBox.h" #include "vtkImageData.h" namespace bbmaracasvisu { class /*BBTK_EXPORT*/ HistogramView : public bbtk::WxBlackBox { BBTK_BLACK_BOX_INTERFACE(HistogramView,bbtk::WxBlackBox); //================================================================== /// User callback called in the box contructor virtual void bbUserConstructor(); /// User callback called in the box copy constructor virtual void bbUserCopyConstructor(); /// User callback called in the box destructor virtual void bbUserDestructor(); //================================================================== BBTK_DECLARE_INPUT(In, vtkImageData *); BBTK_PROCESS(Process); void Process(); BBTK_CREATE_WIDGET(CreateWidget); void CreateWidget(); }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(HistogramView,bbtk::WxBlackBox); BBTK_NAME("HistogramView"); BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); BBTK_DESCRIPTION("Histogram window"); BBTK_CATEGORY("viewer"); BBTK_INPUT(HistogramView,In,"Input image",vtkImageData*,""); BBTK_END_DESCRIBE_BLACK_BOX(HistogramView); } // EO namespace bbmaracasvisu #endif // __bbmaracasvisuHistogramView_h_INCLUDED__ #endif // _USE_WXWIDGETS_