]> 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/06/17 11:12:03 $
7   Version:   $Revision: 1.5 $
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     vtkImageData                 *mDefaultImage;
66     wxVTKRenderWindowInteractor  *wxvtkrenderwindowinteractor;
67     bool mUpdateCamera;
68     vtkImplicitPlaneWidget * maPlane1, * maPlane2, * mbPlane1, * mbPlane2;
69
70   };
71   
72   //------------------------------------------------------------------------
73   //------------------------------------------------------------------------
74   //------------------------------------------------------------------------
75   
76   class /*BBTK_EXPORT*/ Viewer2D : public bbtk::WxBlackBox
77   {    
78     BBTK_BLACK_BOX_INTERFACE(Viewer2D,bbtk::WxBlackBox);
79     BBTK_DECLARE_INPUT(Slice,int);
80     BBTK_DECLARE_INPUT(Orientation,int);
81     BBTK_DECLARE_INPUT(In,vtkImageData *);
82     BBTK_DECLARE_OUTPUT(Out,int);
83     BBTK_PROCESS(Process);
84     void Process();
85     BBTK_CREATE_WIDGET(CreateWidget);
86     void CreateWidget();
87     void bbUserOnShow();
88     void bbUserConstructor();
89   };
90    
91   //=================================================================
92   // UserBlackBox description
93   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Viewer2D,bbtk::WxBlackBox);
94   BBTK_NAME("Viewer2D");
95   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
96   BBTK_DESCRIPTION("Viewer2D widget (vtk)");
97   BBTK_CATEGORY("viewer");
98   BBTK_INPUT(Viewer2D,Slice,"Position of the slider",int,"");
99   BBTK_INPUT(Viewer2D,Orientation,"Slicing orientation : 0:yz / 1:xz / 2:xy",int,"");
100   BBTK_INPUT(Viewer2D,In,"Input Image",vtkImageData *,"");
101   BBTK_OUTPUT(Viewer2D,Out,"Position of the slider",int,"");
102   BBTK_END_DESCRIBE_BLACK_BOX(Viewer2D);
103   //=================================================================
104
105
106 }//namespace bbwxvtk
107
108 #endif  //__bbwxvtkViewer2D_h__
109
110 #endif //_USE_VTK_
111 #endif //_USE_WXWIDGETS_