]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_N_ViewersWidget.h
#3009 creaMaracasVisu Feature New Normal - Interpolate option in box ViewerNV
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxMaracas_N_ViewersWidget.h
index 67a0e0c7b362081e6805187bbfa790d31c1a5eac..4d0223c6092d00d8ce5a81a04c450c8b39a73315 100644 (file)
@@ -1,16 +1,41 @@
+/*# ---------------------------------------------------------------------
+#
+# 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.
+# ------------------------------------------------------------------------ */
+
 /*=========================================================================
 
   Program:   wxMaracas
   Module:    $RCSfile: wxMaracas_N_ViewersWidget.h,v $
   Language:  C++
-  Date:      $Date: 2009/07/27 07:58:20 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2012/11/15 14:14:35 $
+  Version:   $Revision: 1.14 $
 
   Copyright: (c) 2002, 2003
   License:
-  
-     This software is distributed WITHOUT ANY WARRANTY; without even 
-     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
      PURPOSE.  See the above copyright notice for more information.
 
 =========================================================================*/
@@ -48,15 +73,40 @@ class creaMaracasVisu_EXPORT wxMaracas_N_ViewersWidget : public wxPanel
   {
   public:
 
-                 
+
        //------------------------------------------------------------------------------------------------------------
        // Constructors & Destructors
        //------------------------------------------------------------------------------------------------------------
 
+       /**
+       *       @pre A wxWindow* object must be provided as a parent for the viewer
+       *       @post The layout of the viewer is initialize, if there is no image or type set,
+                       only the panel of the viwer is created with no vtk objects
+       *       @param wxWindow* parent of the window
+       *       @param vtkImageData* imagedata of the viewer
+       *       @param std::vector<int>* vector of the type for the viewer
+       *       @deprecated This method will be eliminated in future versions,
+       *       @deprecated the viewers will start with a default image if it is not specified,
+       *       @deprecated this is in order to create the layout of the viewer,
+       *       @deprecated the vtkInteractors* and the object vtkRenderer* use second constructor
+       */
        wxMaracas_N_ViewersWidget(wxWindow *parent, vtkImageData* imagedata = NULL, std::vector<int> *nTypeView = NULL);
-    ~wxMaracas_N_ViewersWidget();
+       /**
+       *       @pre A wxWindow* object must be provided as a parent for the viewer and the type of layout for the viewer
+       *       @post The layout of the viewer is initialized, if no image is provided at first, a default image is
+       *               used
+       *       @param wxWindow* parent of the window
+       *       @param std::vector<int>* vector of the type for the viewer
+       *       @param vtkImageData* imagedata of the viewer
+       */
+       wxMaracas_N_ViewersWidget(wxWindow *parent, std::vector<int> *nTypeView, vtkImageData* imagedata = NULL);
+       /**
+       *       @pre none
+       *       @post the viewer window is deleted, all of the interactors and the renderer are deleted
+       */
+       ~wxMaracas_N_ViewersWidget();
+
 
-       
        //------------------------------------------------------------------------------------------------------------
        // Methods
        //------------------------------------------------------------------------------------------------------------
@@ -71,6 +121,7 @@ class creaMaracasVisu_EXPORT wxMaracas_N_ViewersWidget : public wxPanel
        wxVtkBaseView *GetwxVtkBaseView(int iWin);
        virtual void Refresh(bool eraseBackground = true,const wxRect* rect = NULL );
        void SetImage( vtkImageData *image      );
+       void ConfigureVTK();
        void SetType(std::vector<int>* type);
        void UpdateLayout(vtkImageData* imagedata);
 //     double GetZ(int iWin);
@@ -79,13 +130,21 @@ class creaMaracasVisu_EXPORT wxMaracas_N_ViewersWidget : public wxPanel
        double GetZ();
 
        void setColorTransferFunction(vtkColorTransferFunction* colortable);
+    void SetColorWindowLevel(double colorWindow, double colorLevel);
+
+       void SetInterpolate(bool interpolate);
+
 
        //------------------------------------------------------------------------------------------------------------
        // Attributes
        //------------------------------------------------------------------------------------------------------------
 
   private:
-       
+
+       wxPanel *wxw1;
+       wxPanel *wxw2;
+       wxPanel *wxw3;
+       wxPanel *wxw4;
        wxMaracas_ViewerWidget  *wxwindow1;
        wxMaracas_ViewerWidget  *wxwindow2;
        wxMaracas_ViewerWidget  *wxwindow3;
@@ -96,8 +155,9 @@ class creaMaracasVisu_EXPORT wxMaracas_N_ViewersWidget : public wxPanel
 
        std::vector<int> *nTypeView;
 
-       vtkMPRBaseData* mvtkmprbasedata;  
-         
+       vtkMPRBaseData* mvtkmprbasedata;
+
+       void invariant();
   DECLARE_EVENT_TABLE( );
   };