]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkClipping3DDataViewer.h
2413 creaMaracasVisu Feature New Normal New blackBox BitmapButtonIcon and fix the...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkClipping3DDataViewer.h
index 8620269878941fc877a8d84e08453d7ee64ff677..236aa3c57361c2a63cf1d5dfd0466c8ee2f9ee24 100644 (file)
@@ -1,8 +1,53 @@
+/*# ---------------------------------------------------------------------
+#
+# 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.
+# ------------------------------------------------------------------------ */
+
 #ifndef VTKCLIPPING3DDATAVIEWER_H_
 #define VTKCLIPPING3DDATAVIEWER_H_
 
 #include "wxMPRBaseData.h"
 
+#include "vtkClipPolyData.h"
+#include "vtkStripper.h"
+#include "vtkLODActor.h"
+#include "vtkMarchingCubes.h"
+#include "vtkVolumeRayCastMapper.h"
+#include "boxSurfaceObserver.h"
+#include "vtkVolumeRayCastCompositeFunction.h"
+#include <vtkPiecewiseFunction.h>
+#include "vtkVolumeProperty.h"
+#include "vtkPolyDataMapper.h"
+#include "vtkColorTransferFunction.h"
+#include "vtkVolume.h"
+#include "vtkActor.h"
+#include "vtkOutlineFilter.h"
+#include "vtkRenderWindowInteractor.h"
+
+#include "vtkVolumeRayCastMIPFunction.h"
+
+#include "volumerendererdata.h"
+
 class vtkClipping3DDataViewer {
 public:
        //----------------------
@@ -45,16 +90,23 @@ public:
        bool                                    GetVisibleVolume();
        void                                    SetVisibleVolume(bool visibleVolume);
 
+    bool                                       GetVisibleVolumeBox();
+       void                                    SetVisibleVolumeBox(bool visibleBox);
+
        void                                    SetRepresentationType(int idTissue, bool representationType);
        bool                                    GetRepresentationType(int idTissue);
 
        boxSurfaceObserver              *GetObserverS(int idObserverS);
        boxSurfaceObserver              *GetObserverV();
 
-       //void                                  ReadVolumeFunctions(char *namefile); 
-       void                                    ReadVolumeFunctions(); 
-       void                                    ReadMeshVTK(char *namefile); 
+       //void                                  ReadVolumeFunctions(char *namefile);
+       void                                    ReadVolumeFunctions();
+       void                                    ReadMeshVTK(char *namefile);
+
 
+    void                    Configure_VolumeBox();
+    void                    SetInteractor(vtkRenderWindowInteractor* interactor);
+    void                    SetRenderer(vtkRenderer* renderer);
 
        //-------------------
        //Getters Vectors
@@ -67,6 +119,8 @@ public:
        std::vector<double>*                                    GetBlueColorsOfColorTransferenceFVector();
        std::vector<double>*                                    GetGreyValueColorsOfColorTransferenceFVector();
 
+       void setColorTransferFunction(vtkColorTransferFunction* colortable);
+
        //--------------------------------------
        //Getters transference function
        //and color of the transference function
@@ -74,10 +128,20 @@ public:
        vtkPiecewiseFunction                            *GetTransferencefunction();
        vtkColorTransferFunction                        *GetColorTransferenceFunction();
 
+    void                        SetRayCasting(bool active);
+       void                        SetMIPActive(bool active);
+    void                        SetInterpolation(bool active);
+    void                        SetShade(bool active);
+    void                        updateVolume();
+
+
+    void                        BoxActorChanged(bool changed);
+    void                        UpdateVolumeBox(vector<double> gf, vector<double> vf, vtkColorTransferFunction* ctfun);
+
 
 
 private:
-       
+
        vtkMarchingCubes                                        *_mCubes[ VTKMPRDATA_MAXTISSUE ];
        vtkStripper                                                     *_tissueStripper[ VTKMPRDATA_MAXTISSUE ];
        vtkPolyDataMapper                                       *_tissueMapper[ VTKMPRDATA_MAXTISSUE ];
@@ -92,7 +156,7 @@ private:
        /// Volume
        vtkPiecewiseFunction                            *_tfun;
        vtkColorTransferFunction                        *_ctfun;
-       vtkVolumeRayCastCompositeFunction       *_compositeFunction;
+//     vtkVolumeRayCastCompositeFunction       *_compositeFunction;
        vtkPlanes                                                       *_volumePlanes;
        vtkVolumeRayCastMapper                          *_volumeMapper;
        vtkVolumeProperty                                       *_volumeProperty;
@@ -101,6 +165,9 @@ private:
        vtkMPRBaseData                                          *_vtkmprbasedata;
 
        bool                                                            _visibleVolume;
+
+    bool                                                               _visibleVolumeBox;
+
        bool                                                            _representationType[VTKMPRDATA_MAXTISSUE];
        bool                                                            _visibleTissue[VTKMPRDATA_MAXTISSUE];
        vtkActor                                                        *_tissue[VTKMPRDATA_MAXTISSUE];
@@ -113,6 +180,16 @@ private:
        std::vector<double>                                     greenColorsOfColorTransferenceFVector;
        std::vector<double>                                     blueColorsOfColorTransferenceFVector;
        std::vector<double>                                     greyValueColorsOfColorTransferenceFVector;
+
+       vtkVolumeRayCastCompositeFunction   *_compositeFunction;
+       vtkVolumeRayCastMIPFunction         *_compositeFunctionMIP ;
+
+       bool _isRayCasting;
+    bool _isMIP;
+       bool _interpolation;
+       bool _shade;
+
+       VolumeRendererData* _volumerendererdata;
 };
 
 #endif /*VTKCLIPPING3DDATAVIEWER_H_*/