]> Creatis software - bbtk.git/blobdiff - packages/wxvtk/src/bbwxvtkViewer2D.h
bbtk now depends on crea !
[bbtk.git] / packages / wxvtk / src / bbwxvtkViewer2D.h
index 9fed7193f81e62221082c23ba7f751be78693808..cdb26f1c3162bbaa636b950192edb785c182dbde 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbwxvtkViewer2D.h,v $
   Language:  C++
-  Date:      $Date: 2008/03/03 13:14:27 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/12/11 15:30:17 $
+  Version:   $Revision: 1.15 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
  */
 
 
-#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"
 
 namespace bbwxvtk
 {
-  class Viewer2D; 
 
-
-  //--------------------------------------------------------------------------
-  class Viewer2DWidget : public wxPanel
-  {
-  public:
-    Viewer2DWidget(Viewer2D* box, wxWindow *parent);
-    ~Viewer2DWidget();
-    void Update();
-  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_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();
+    //   BBTK_ON_SHOW_WIDGET(OnShowWidget);
+    
+    void Process();
+    void CreateWidget(wxWindow*);
+    //    void OnShowWidget();
+    void bbUserConstructor();
   };
    
   //=================================================================
@@ -90,12 +76,13 @@ 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);
   //=================================================================
 
@@ -104,5 +91,5 @@ namespace bbwxvtk
 
 #endif  //__bbwxvtkViewer2D_h__
 
-#endif //_USE_VTK_
-#endif //_USE_WXWIDGETS_
+#endif //USE_VTK
+#endif //USE_WXWIDGETS