]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkMPR3DView.h
a46afe60ab19da8ac925ed683915fa7629dbd034
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkMPR3DView.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #ifndef WXVTKMPR3DVIEW_H_
27 #define WXVTKMPR3DVIEW_H_
28
29 #include "vtkMPR3DDataViewer.h"
30 #include "wxVtkMPR3DViewCntrlPanel.h"
31 #include "wxVtk3DBaseView.h"
32
33 #include "vtkProbeFilter.h"
34 #include "vtkPlaneWidget.h"
35 #include "vtkPointWidget.h"
36 #include "vtkImagePlaneWidget.h"
37
38
39 //class vtkmyPWCallback_3DPointWidget;
40 class wxVtkMPR3DViewCntrlPanel;
41
42 class creaMaracasVisu_EXPORT wxVtkMPR3DView
43 {
44 public:
45         wxVtkMPR3DView( wxVtk3DBaseView *wxvtk3Dbaseview );
46         virtual ~wxVtkMPR3DView();      
47         void                            VisibleImageActor(int idPosition, bool visible);
48         void                            VisiblePointWidget( bool visible );
49         void                            VisiblePlaneWidget( bool visible );
50
51         void                            SetVisibleTissue(int idTissue, bool visible);
52         bool                            GetVisibleTissue(int idTissue);
53         virtual void            Refresh();
54         virtual void            RefreshView();
55         virtual void            Configure();
56         void                            SetImage();
57
58         void                            SetBackGroundType(int type);
59         void                            SetVtkMPR3DDataViewer( vtkMPR3DDataViewer *vtkmpr3Ddataviewer );
60         wxPanel*                        CreateControlPanel(wxWindow *parent, bool align);
61
62         vtkMPR3DDataViewer* GetVtkMPR3DDataViewer();
63         wxVtk3DBaseView*        GetWxvtk3Dbaseview() throw (char*);
64
65         void                            InitOrientationPointWidget(); 
66         void                            showOutlineActor(bool value);
67
68         // EED 25 Janvier 2007 testLoic
69         void                            TestLoic1();
70         void                            TestLoic2();
71
72         void RemoveActor(vtkActor* actor);
73
74 //EED 27/05/2013
75 //      void ResetCamera(int *ext=NULL,double* spc=NULL);
76
77         void setColorTransferFunction(vtkColorTransferFunction* colortable);
78
79         
80         //Free planes
81         //-------------------------------------------------------------------
82         void ConfigureFreePlanes();
83         vtkImagePlaneWidget* GetPlaneWidget(unsigned char activationkey, double r, double g, double b, vtkCellPicker* picker);
84         void FreePlaneVisible(int plane, bool ok);
85         void FreePlaneInteraction(bool ok);
86         void SetFreePlanesOrtho();
87         
88         void SetColorWindow(double colorWindow);
89         void SetColorLevel(double colorLevel);
90
91         
92 private:
93         wxVtk3DBaseView                                 *_wxvtk3Dbaseview;
94         vtkMPR3DDataViewer                              *_vtkmpr3Ddataviewer;
95         wxVtkMPR3DViewCntrlPanel                *_wxvtkmpr3DviewCntrlPanel;
96
97         // Plane Widget (3D)
98         vtkPolyData                                             *_vtkplane;
99         vtkActor                                                *_contourPlaneActor;
100         vtkPlaneWidget                                  *_planeWidget;
101
102         // Point Widget (3D)
103         vtkPointWidget                                  *_pointWidget;
104         //vtkmyPWCallback_3DPointWidget *_myCallback;
105         vtkProbeFilter                                  *_probe;
106         vtkPolyDataMapper                               *_contourMapper;
107
108         //Free planes
109         vtkImagePlaneWidget *_planeWidgetX;
110         vtkImagePlaneWidget *_planeWidgetY;
111         vtkImagePlaneWidget *_planeWidgetZ;
112         
113
114 protected:
115 };
116
117 #endif /*WXVTKMPR3DVIEW_H_*/