]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuIRMViewer.h
.
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuIRMViewer.h
1 #ifdef _USE_WXWIDGETS_
2 #ifndef __bbcreaMaracasVisuIRMViewer_h_INCLUDED__
3 #define __bbcreaMaracasVisuIRMViewer_h_INCLUDED__
4 #include "bbcreaMaracasVisu_EXPORT.h"
5 #include "bbtkWxBlackBox.h"
6
7 #include "vtkImageData.h"
8 #include "vtkProp3D.h"
9
10 //#include "marInterface.h"
11
12 namespace bbcreaMaracasVisu
13 {
14
15 class bbcreaMaracasVisu_EXPORT IRMViewer
16  : 
17    public bbtk::WxBlackBox
18 {
19   BBTK_BLACK_BOX_INTERFACE(IRMViewer,bbtk::WxBlackBox);
20   //BBTK_DECLARE_INPUT(In,vtkImageData*);
21   BBTK_DECLARE_INPUT(Renderer,vtkRenderer*);
22   BBTK_DECLARE_INPUT(In0,vtkProp3D*);  
23   BBTK_DECLARE_INPUT(In1,vtkProp3D*);
24   BBTK_DECLARE_INPUT(In2,vtkProp3D*);
25   BBTK_DECLARE_INPUT(In3,vtkProp3D*);
26   BBTK_DECLARE_INPUT(In4,vtkProp3D*);
27   BBTK_PROCESS(Process);
28   void Process();
29   BBTK_CREATE_WIDGET(CreateWidget);
30   void CreateWidget(wxWindow*);
31
32 private:
33         //marInterface* mar;
34 };
35
36 BBTK_BEGIN_DESCRIBE_BLACK_BOX(IRMViewer,bbtk::WxBlackBox);
37 BBTK_NAME("IRMViewer");
38 BBTK_AUTHOR("car-prie@uniandes.edu.co");
39 BBTK_DESCRIPTION("BB of the module IRMViewer");
40 BBTK_CATEGORY("__CategoryBlackBox__");
41 //BBTK_INPUT(IRMViewer,In,"Renderer to show the different prop3D",vtkImageData*,"");
42 BBTK_INPUT(IRMViewer,Renderer,"Renderer to show the different prop3D",vtkRenderer*,"");
43 BBTK_INPUT(IRMViewer,In0,"prop3D to the IRMViewer",vtkProp3D*,"");
44 BBTK_INPUT(IRMViewer,In1,"prop3D to the IRMViewer",vtkProp3D*,"");
45 BBTK_INPUT(IRMViewer,In2,"prop3D to the IRMViewer",vtkProp3D*,"");
46 BBTK_INPUT(IRMViewer,In3,"prop3D to the IRMViewer",vtkProp3D*,"");
47 BBTK_INPUT(IRMViewer,In4,"prop3D to the IRMViewer",vtkProp3D*,"");
48 BBTK_END_DESCRIBE_BLACK_BOX(IRMViewer);
49 }
50 // EO namespace bbcreaMaracasVisu
51
52 #endif // __bbcreaMaracasVisuIRMViewer_h_INCLUDED__
53 #endif // _USE_WXWIDGETS_
54