X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fwxvtk%2Fsrc%2FbbwxvtkViewer2D.h;h=36bc9cba428020f6e4acf686e18c5b8d34656641;hb=315c4b62d90c40f8cccd821a5ba961bf51367bb0;hp=c72b8c893a91dce1fd2834b7b2a8456de8d554de;hpb=cdded8fbd6963f715bb7ef07dd75fade7b91f2e8;p=bbtk.git diff --git a/packages/wxvtk/src/bbwxvtkViewer2D.h b/packages/wxvtk/src/bbwxvtkViewer2D.h index c72b8c8..36bc9cb 100644 --- a/packages/wxvtk/src/bbwxvtkViewer2D.h +++ b/packages/wxvtk/src/bbwxvtkViewer2D.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbwxvtkViewer2D.h,v $ Language: C++ - Date: $Date: 2008/12/09 15:25:08 $ - Version: $Revision: 1.13 $ + Date: $Date: 2009/09/17 11:17:19 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,10 +29,8 @@ * \brief */ - -#ifdef _USE_WXWIDGETS_ -#ifdef _USE_VTK_ - +#ifdef USE_WXWIDGETS +#ifdef USE_VTK #ifndef __bbwxvtkViewer2D_h__ #define __bbwxvtkViewer2D_h__ @@ -44,11 +42,8 @@ #include "bbtkWxBlackBox.h" #include "wxVTKRenderWindowInteractor.h" - - namespace bbwxvtk { - //------------------------------------------------------------------------ //------------------------------------------------------------------------ //------------------------------------------------------------------------ @@ -56,19 +51,22 @@ namespace bbwxvtk class /*BBTK_EXPORT*/ Viewer2D : public bbtk::WxBlackBox { BBTK_BLACK_BOX_INTERFACE(Viewer2D,bbtk::WxBlackBox); - BBTK_DECLARE_INPUT(Slice,int); - BBTK_DECLARE_INPUT(Orientation,int); - BBTK_DECLARE_INPUT(In,vtkImageData *); - BBTK_DECLARE_OUTPUT(Out,int); + + BBTK_DECLARE_INPUT(Slice, int); + BBTK_DECLARE_INPUT(Interpolate, bool); // JP + BBTK_DECLARE_INPUT(Orientation, int); + BBTK_DECLARE_INPUT(In, vtkImageData *); + BBTK_DECLARE_OUTPUT(Out, int); + BBTK_DECLARE_OUTPUT(Renderer,vtkRenderer*); BBTK_PROCESS(Process); BBTK_CREATE_WIDGET(CreateWidget); - BBTK_ON_SHOW_WIDGET(OnShowWidget); + // BBTK_ON_SHOW_WIDGET(OnShowWidget); void Process(); void CreateWidget(wxWindow*); - void OnShowWidget(); - void bbUserConstructor(); + // void OnShowWidget(); + }; //================================================================= @@ -78,18 +76,18 @@ namespace bbwxvtk BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr"); BBTK_DESCRIPTION("2D Viewer widget (vtk)"); BBTK_CATEGORY("viewer"); - BBTK_INPUT(Viewer2D,Slice,"Initial Slice number",int,""); - BBTK_INPUT(Viewer2D,Orientation,"Slicing orientation : 0:yz / 1:xz / 2:xy",int,""); - BBTK_INPUT(Viewer2D,In,"Input Image",vtkImageData *,""); - BBTK_OUTPUT(Viewer2D,Out,"Current Slice number",int,""); - BBTK_OUTPUT(Viewer2D,Renderer,"vtk Renderer",vtkRenderer*,""); + BBTK_INPUT(Viewer2D, Slice, "Initial Slice number", int, ""); + BBTK_INPUT(Viewer2D, Orientation, "Slicing orientation : 0:yz / 1:xz / 2:xy", int, ""); + BBTK_INPUT(Viewer2D, Interpolate, "Pixels interpolation: true/false ", bool, ""); // JP + BBTK_INPUT(Viewer2D, In, "Input Image", vtkImageData *, ""); + BBTK_OUTPUT(Viewer2D,Out, "Current Slice number", int, ""); + BBTK_OUTPUT(Viewer2D,Renderer, "vtk Renderer", vtkRenderer*, ""); BBTK_END_DESCRIBE_BLACK_BOX(Viewer2D); //================================================================= - }//namespace bbwxvtk #endif //__bbwxvtkViewer2D_h__ -#endif //_USE_VTK_ -#endif //_USE_WXWIDGETS_ +#endif //USE_VTK +#endif //USE_WXWIDGETS