]> Creatis software - bbtk.git/blob - packages/wxvtk/src/bbwxvtkViewer2D.h
=== MAJOR RELEASE ====
[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/04/18 12:59:53 $
7   Version:   $Revision: 1.4 $
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 "vtkImageViewer2.h"
42 #include "vtkImplicitPlaneWidget.h"
43
44 #include "bbtkWxBlackBox.h"
45 #include "wxVTKRenderWindowInteractor.h"
46
47
48
49 namespace bbwxvtk
50 {
51   class Viewer2D; 
52
53
54   //--------------------------------------------------------------------------
55   class Viewer2DWidget : public wxPanel
56   {
57   public:
58     Viewer2DWidget(Viewer2D* box, wxWindow *parent);
59     ~Viewer2DWidget();
60     void UpdateView();
61   private:
62     Viewer2D                     *mBox;
63     vtkImageViewer2              *imageViewer;
64     vtkImageData                 *backImageData;
65     wxVTKRenderWindowInteractor  *wxvtkrenderwindowinteractor;
66
67     vtkImplicitPlaneWidget * maPlane1, * maPlane2, * mbPlane1, * mbPlane2;
68
69   };
70   
71   //------------------------------------------------------------------------
72   //------------------------------------------------------------------------
73   //------------------------------------------------------------------------
74   
75   class /*BBTK_EXPORT*/ Viewer2D : public bbtk::WxBlackBox
76   {    
77     BBTK_BLACK_BOX_INTERFACE(Viewer2D,bbtk::WxBlackBox);
78     BBTK_DECLARE_INPUT(Slice,int);
79     BBTK_DECLARE_INPUT(Orientation,int);
80     BBTK_DECLARE_INPUT(In,vtkImageData *);
81     BBTK_DECLARE_OUTPUT(Out,int);
82     BBTK_PROCESS(Process);
83     void Process();
84     BBTK_CREATE_WIDGET(CreateWidget);
85     void CreateWidget();
86     void bbUserOnShow();
87   };
88    
89   //=================================================================
90   // UserBlackBox description
91   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Viewer2D,bbtk::WxBlackBox);
92   BBTK_NAME("Viewer2D");
93   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
94   BBTK_DESCRIPTION("Viewer2D widget (vtk)");
95   BBTK_CATEGORY("viewer");
96   BBTK_INPUT(Viewer2D,Slice,"Position of the slider",int,"");
97   BBTK_INPUT(Viewer2D,Orientation,"Slicing orientation : 0:yz / 1:xz / 2:xy",int,"");
98   BBTK_INPUT(Viewer2D,In,"Input Image",vtkImageData *,"");
99   BBTK_OUTPUT(Viewer2D,Out,"Position of the slider",int,"");
100   BBTK_END_DESCRIBE_BLACK_BOX(Viewer2D);
101   //=================================================================
102
103
104 }//namespace bbwxvtk
105
106 #endif  //__bbwxvtkViewer2D_h__
107
108 #endif //_USE_VTK_
109 #endif //_USE_WXWIDGETS_