]> Creatis software - bbtk.git/blob - packages/wxvtk/src/bbwxvtkViewer2D.h
#3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7
[bbtk.git] / packages / wxvtk / src / bbwxvtkViewer2D.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29                                                                                 
30   Program:   bbtk
31   Module:    $RCSfile: bbwxvtkViewer2D.h,v $
32   Language:  C++
33   Date:      $Date: 2012/11/16 08:52:36 $
34   Version:   $Revision: 1.19 $
35
36                                                                                 
37 =========================================================================*//**
38  * \brief Short description in one line
39  * 
40  * Long description which 
41  * can span multiple lines
42  */
43 /**
44  * \file 
45  * \brief 
46  */
47 /**
48  * \class Viewer2D
49  * \brief 
50  */
51
52 #ifdef USE_WXWIDGETS
53 #ifdef USE_VTK
54
55 #ifndef __bbwxvtkViewer2D_h__
56 #define __bbwxvtkViewer2D_h__
57
58 #include "vtkImageData.h"
59 #include "vtkImplicitPlaneWidget.h"
60
61 #include "bbtkWxBlackBox.h"
62
63 namespace bbwxvtk
64 {
65   //------------------------------------------------------------------------
66   //------------------------------------------------------------------------
67   //------------------------------------------------------------------------
68   
69   class /*BBTK_EXPORT*/ Viewer2D : public bbtk::WxBlackBox
70   {    
71     BBTK_BLACK_BOX_INTERFACE(Viewer2D,bbtk::WxBlackBox);
72     
73     BBTK_DECLARE_INPUT(Slice,       int);
74     BBTK_DECLARE_INPUT(Interpolate, bool);  // JP
75     BBTK_DECLARE_INPUT(Orientation, int);    
76     BBTK_DECLARE_INPUT(In,          vtkImageData *);
77     BBTK_DECLARE_OUTPUT(Out,        int);
78     
79     BBTK_DECLARE_OUTPUT(Renderer,vtkRenderer*);
80     BBTK_PROCESS(Process);
81     BBTK_CREATE_WIDGET(CreateWidget);
82     //   BBTK_ON_SHOW_WIDGET(OnShowWidget);
83     
84     void Process();
85     void CreateWidget(wxWindow*);
86     //    void OnShowWidget();
87
88   };
89    
90   //=================================================================
91   // UserBlackBox description
92   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Viewer2D,bbtk::WxBlackBox);
93   BBTK_NAME("Viewer2D");
94   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
95   BBTK_DESCRIPTION("2D Viewer widget (vtk)");
96   BBTK_CATEGORY("viewer");
97   BBTK_INPUT(Viewer2D, Slice,       "Initial Slice number",                     int,            "");
98   BBTK_INPUT(Viewer2D, Orientation, "Slicing orientation : 0:yz / 1:xz / 2:xy", int,            "");
99   BBTK_INPUT(Viewer2D, Interpolate, "Pixels interpolation: true/false        ", bool,           ""); // JP
100   BBTK_INPUT(Viewer2D, In,          "Input Image",                              vtkImageData *, "");
101   BBTK_OUTPUT(Viewer2D,Out,         "Current Slice number",                     int,            "");
102   BBTK_OUTPUT(Viewer2D,Renderer,    "vtk Renderer",                             vtkRenderer*,   "");
103   BBTK_END_DESCRIBE_BLACK_BOX(Viewer2D);
104   //=================================================================
105
106 }//namespace bbwxvtk
107
108 #endif  //__bbwxvtkViewer2D_h__
109
110 #endif //USE_VTK
111 #endif //USE_WXWIDGETS