]> Creatis software - bbtk.git/blobdiff - packages/wxvtk/src/bbwxvtkViewer2D.h
Don't update camera if only Slice changed
[bbtk.git] / packages / wxvtk / src / bbwxvtkViewer2D.h
index cdb26f1c3162bbaa636b950192edb785c182dbde..183527d210ebb73a57595a12f89877e88ba868bf 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbwxvtkViewer2D.h,v $
   Language:  C++
-  Date:      $Date: 2008/12/11 15:30:17 $
-  Version:   $Revision: 1.15 $
+  Date:      $Date: 2009/04/17 09:04:13 $
+  Version:   $Revision: 1.16 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
  * \brief 
  */
 
-
 #ifdef USE_WXWIDGETS
 #ifdef USE_VTK
 
-
 #ifndef __bbwxvtkViewer2D_h__
 #define __bbwxvtkViewer2D_h__
 
 #include "bbtkWxBlackBox.h"
 #include "wxVTKRenderWindowInteractor.h"
 
-
-
 namespace bbwxvtk
 {
-
   //------------------------------------------------------------------------
   //------------------------------------------------------------------------
   //------------------------------------------------------------------------
@@ -56,10 +51,12 @@ 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(Orientation, int);
+    BBTK_DECLARE_INPUT(In,          vtkImageData *);
+    BBTK_DECLARE_OUTPUT(Out,        int);
+    
     BBTK_DECLARE_OUTPUT(Renderer,vtkRenderer*);
     BBTK_PROCESS(Process);
     BBTK_CREATE_WIDGET(CreateWidget);
@@ -78,15 +75,14 @@ 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, 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__