]> 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 d24947c74200da42f9e748574e0479ad0367e38a..183527d210ebb73a57595a12f89877e88ba868bf 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbwxvtkViewer2D.h,v $
   Language:  C++
-  Date:      $Date: 2008/03/10 12:28:44 $
-  Version:   $Revision: 1.2 $
+  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_
-
+#ifdef USE_WXWIDGETS
+#ifdef USE_VTK
 
 #ifndef __bbwxvtkViewer2D_h__
 #define __bbwxvtkViewer2D_h__
 
 #include "vtkImageData.h"
-#include "vtkImageViewer2.h"
+#include "wxvtkImageViewer2.h"
 #include "vtkImplicitPlaneWidget.h"
 
 #include "bbtkWxBlackBox.h"
 #include "wxVTKRenderWindowInteractor.h"
 
-
-
 namespace bbwxvtk
 {
-  class Viewer2D; 
-
-
-  //--------------------------------------------------------------------------
-  class Viewer2DWidget : public wxPanel
-  {
-  public:
-    Viewer2DWidget(Viewer2D* box, wxWindow *parent);
-    ~Viewer2DWidget();
-    void UpdateView();
-  private:
-    Viewer2D                     *mBox;
-    vtkImageViewer2             *imageViewer;
-    vtkImageData                *backImageData;
-    wxVTKRenderWindowInteractor  *wxvtkrenderwindowinteractor;
-
-    vtkImplicitPlaneWidget * maPlane1, * maPlane2, * mbPlane1, * mbPlane2;
-
-  };
-  
   //------------------------------------------------------------------------
   //------------------------------------------------------------------------
   //------------------------------------------------------------------------
   
   class /*BBTK_EXPORT*/ Viewer2D : public bbtk::WxBlackBox
   {    
-    BBTK_USER_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_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_OUTPUT(Renderer,vtkRenderer*);
     BBTK_PROCESS(Process);
-    void Process();
     BBTK_CREATE_WIDGET(CreateWidget);
-    void CreateWidget();
-    void bbUserOnShow();
+    //   BBTK_ON_SHOW_WIDGET(OnShowWidget);
+    
+    void Process();
+    void CreateWidget(wxWindow*);
+    //    void OnShowWidget();
+    void bbUserConstructor();
   };
    
   //=================================================================
@@ -91,19 +73,19 @@ namespace bbwxvtk
   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Viewer2D,bbtk::WxBlackBox);
   BBTK_NAME("Viewer2D");
   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
-  BBTK_DESCRIPTION("Viewer2D widget (vtk)");
+  BBTK_DESCRIPTION("2D Viewer widget (vtk)");
   BBTK_CATEGORY("viewer");
-  BBTK_INPUT(Viewer2D,Slice,"Position of the slider",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,"Position of the slider",int);
+  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__
 
-#endif //_USE_VTK_
-#endif //_USE_WXWIDGETS_
+#endif //USE_VTK
+#endif //USE_WXWIDGETS