]> Creatis software - bbtk.git/blob - packages/wxvtk/src/bbwxvtkViewer2D.h
*** empty log message ***
[bbtk.git] / packages / wxvtk / src / bbwxvtkViewer2D.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbwxvtkViewer2D.h,v $
5   Language:  C++
6   Date:      $Date: 2008/12/09 15:25:08 $
7   Version:   $Revision: 1.13 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*//**
18  * \brief Short description in one line
19  * 
20  * Long description which 
21  * can span multiple lines
22  */
23 /**
24  * \file 
25  * \brief 
26  */
27 /**
28  * \class Viewer2D
29  * \brief 
30  */
31
32
33 #ifdef _USE_WXWIDGETS_
34 #ifdef _USE_VTK_
35
36
37 #ifndef __bbwxvtkViewer2D_h__
38 #define __bbwxvtkViewer2D_h__
39
40 #include "vtkImageData.h"
41 #include "wxvtkImageViewer2.h"
42 #include "vtkImplicitPlaneWidget.h"
43
44 #include "bbtkWxBlackBox.h"
45 #include "wxVTKRenderWindowInteractor.h"
46
47
48
49 namespace bbwxvtk
50 {
51
52   //------------------------------------------------------------------------
53   //------------------------------------------------------------------------
54   //------------------------------------------------------------------------
55   
56   class /*BBTK_EXPORT*/ Viewer2D : public bbtk::WxBlackBox
57   {    
58     BBTK_BLACK_BOX_INTERFACE(Viewer2D,bbtk::WxBlackBox);
59     BBTK_DECLARE_INPUT(Slice,int);
60     BBTK_DECLARE_INPUT(Orientation,int);
61     BBTK_DECLARE_INPUT(In,vtkImageData *);
62     BBTK_DECLARE_OUTPUT(Out,int);
63     BBTK_DECLARE_OUTPUT(Renderer,vtkRenderer*);
64     BBTK_PROCESS(Process);
65     BBTK_CREATE_WIDGET(CreateWidget);
66     BBTK_ON_SHOW_WIDGET(OnShowWidget);
67     
68     void Process();
69     void CreateWidget(wxWindow*);
70     void OnShowWidget();
71     void bbUserConstructor();
72   };
73    
74   //=================================================================
75   // UserBlackBox description
76   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Viewer2D,bbtk::WxBlackBox);
77   BBTK_NAME("Viewer2D");
78   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
79   BBTK_DESCRIPTION("2D Viewer widget (vtk)");
80   BBTK_CATEGORY("viewer");
81   BBTK_INPUT(Viewer2D,Slice,"Initial Slice number",int,"");
82   BBTK_INPUT(Viewer2D,Orientation,"Slicing orientation : 0:yz / 1:xz / 2:xy",int,"");
83   BBTK_INPUT(Viewer2D,In,"Input Image",vtkImageData *,"");
84   BBTK_OUTPUT(Viewer2D,Out,"Current Slice number",int,"");
85   BBTK_OUTPUT(Viewer2D,Renderer,"vtk Renderer",vtkRenderer*,"");
86   BBTK_END_DESCRIBE_BLACK_BOX(Viewer2D);
87   //=================================================================
88
89
90 }//namespace bbwxvtk
91
92 #endif  //__bbwxvtkViewer2D_h__
93
94 #endif //_USE_VTK_
95 #endif //_USE_WXWIDGETS_