]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbmaracasvisuHistogramView.cxx
The bbtk folder with the maracasvisu bbtk package was added to the creaMaracasVisu...
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuHistogramView.cxx
1 #include "bbmaracasvisuHistogramView.h"
2 #include "bbmaracasvisuPackage.h"
3
4 #include "Histogram.h"
5
6 namespace bbmaracasvisu
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,HistogramView)
10 BBTK_BLACK_BOX_IMPLEMENTATION(HistogramView,bbtk::WxBlackBox);
11
12 //------------------------------------------------
13 void HistogramView::Process()
14 {
15 }
16
17 //------------------------------------------------
18 void HistogramView::CreateWidget()
19 {
20         bbtkDebugMessageInc("Core",9,"HistogramViewWindow::CreateWidget()"<<std::endl);
21         Histogram *wxwidget = new Histogram( bbGetWxParent() , -1, wxPoint(0,0), wxSize(400,400),wxNO_BORDER ,bbGetInputIn());
22     bbtkDebugDecTab("Core",9);
23         bbSetOutputWidget( wxwidget );
24 }
25
26 //------------------------------------------------
27 void HistogramView::bbUserConstructor()
28 {
29 }
30
31 //------------------------------------------------
32 void HistogramView::bbUserCopyConstructor()
33 {
34 }
35
36 //------------------------------------------------
37 void HistogramView::bbUserDestructor()
38 {
39 }
40
41 }
42 // EO namespace bbmaracasvisu
43
44