]> Creatis software - creaMaracasVisu.git/blobdiff - bbtk/src/bbmaracasvisuContourVOI.h
#2647 creaMaracasVisu Feature New Normal - Merge creaButtonContainer BRANCH
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuContourVOI.h
index 4f55e46e71c3cab1c1a7a5ab7b6c01cea7f906ac..4ace9ea7697a84aa7583d76177549f40c2ca51b6 100644 (file)
@@ -1,8 +1,31 @@
-
+/*# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la Sant�)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
 
 #ifdef _USE_WXWIDGETS_
-#ifndef __bbmaracasvisuContourVOI_h_INCLUDED__
-#define __bbmaracasvisuContourVOI_h_INCLUDED__
+#ifndef __bbcreaMaracasVisuContourVOI_h_INCLUDED__
+#define __bbcreaMaracasVisuContourVOI_h_INCLUDED__
 #include "bbtkWxBlackBox.h"
 
 
@@ -10,7 +33,7 @@
 
 #include "Contour/ContourVOIWidget.h"
 
-namespace bbmaracasvisu
+namespace bbcreaMaracasVisu
 {
 
 
@@ -19,7 +42,7 @@ namespace bbmaracasvisu
   class wxWidgetVOI : public wxPanel
   {
        public:
-               wxWidgetVOI(wxWindow* parent, wxVtkBaseView *wxvtkbaseview, vtkImageData        *imagedata);
+               wxWidgetVOI(wxWindow* parent, wxVtkBaseView *wxvtkbaseview=NULL, vtkImageData   *imagedata=NULL);
                ~wxWidgetVOI();
            
                //if the MPR had generated the refresh event
@@ -31,11 +54,22 @@ namespace bbmaracasvisu
 
                ContourVOIWidget* GetContourVOIWidget();
 
+           void setImageData(vtkImageData * imagedata);
+               void setBaseView(wxVtkBaseView * wxvtkbaseview);
+
+               void initializeVOIWidget();
+
        private:
 
 //             ContourVOI                      *mbbViewerMPR;
                ContourVOIWidget        *mcontourvoiwidget;
 
+               wxVtkBaseView * wxvtkbaseview;
+               vtkImageData * imagedata;
+               
+
+               
+
        DECLARE_EVENT_TABLE( );     
   };
   
@@ -53,23 +87,21 @@ class /*BBTK_EXPORT*/ ContourVOI
    public bbtk::WxBlackBox
 {
   BBTK_BLACK_BOX_INTERFACE(ContourVOI,bbtk::WxBlackBox);
-//==================================================================
-/// User callback called in the box contructor
-virtual void bbUserConstructor();
-/// User callback called in the box copy constructor
-virtual void bbUserCopyConstructor();
-/// User callback called in the box destructor
-virtual void bbUserDestructor();
-//==================================================================
   BBTK_DECLARE_INPUT(Title,std::string);
     BBTK_DECLARE_INPUT(In, vtkImageData*);
     BBTK_DECLARE_INPUT(wxVtkBaseView, wxVtkBaseView*);
        BBTK_DECLARE_OUTPUT(Index,std::string);
        BBTK_DECLARE_OUTPUT(Size,std::string);
+       BBTK_DECLARE_OUTPUT(VOI,vtkImageData*);
   BBTK_PROCESS(Process);
   void Process();
   BBTK_CREATE_WIDGET(CreateWidget);
-  void CreateWidget();
+  void CreateWidget(wxWindow*);
+
+private:
+       vtkImageData* _img;
+       wxVtkBaseView* _base;
+//EED 20Juin2011       vtkExtractVOI*  _extract;
 
 };
 
@@ -83,10 +115,11 @@ BBTK_DESCRIPTION("define VOI widget");
        BBTK_INPUT(ContourVOI,wxVtkBaseView,"maracas visu wxVtkBaseView",wxVtkBaseView*,"");
        BBTK_OUTPUT(ContourVOI,Index, "Index"   ,       std::string,"");
        BBTK_OUTPUT(ContourVOI,Size, "Size"     ,       std::string,"");
+       BBTK_OUTPUT(ContourVOI,VOI,"Region of interest",vtkImageData*,"");
 BBTK_END_DESCRIBE_BLACK_BOX(ContourVOI);
 }
-// EO namespace bbmaracasvisu
+// EO namespace bbcreaMaracasVisu
 
-#endif // __bbmaracasvisuContourVOI_h_INCLUDED__
+#endif // __bbcreaMaracasVisuContourVOI_h_INCLUDED__
 #endif // _USE_WXWIDGETS_