]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkClipping3DView.cxx
#3109 creaMaracasVisu Bug New Normal - branch vtk7itk4 compilation with vtk7
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkClipping3DView.cxx
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 #include "wxVtkClipping3DView.h"
27
28 #include "wxVtkClipping3DViewCntrlPanel.h"
29 #include "wxVtkClipping3DViewVolCntrlPanel.h"
30
31 wxVtkClipping3DView::wxVtkClipping3DView(wxVtk3DBaseView* wxvtk3Dbaseview)
32 {
33
34         _wxvtk3Dbaseview                                =       wxvtk3Dbaseview;
35         _vtkclipping3Ddataviewer                =       NULL;
36         _wxvtkclipping3DviewCntrlPanel  =       NULL;
37
38         _boxWidgetVolume                                =       NULL;
39         _boxWidgetS1                                    =       NULL;
40 }
41
42 //-------------------------------------------------------------------
43 wxVtkClipping3DView::~wxVtkClipping3DView()
44 {
45         if (_boxWidgetVolume!=NULL)                              { _boxWidgetVolume     -> Delete();                    }
46         if (_boxWidgetS1!=NULL)                                  { _boxWidgetS1         -> Delete();                    }
47         if (_vtkclipping3Ddataviewer!=NULL)              { delete _vtkclipping3Ddataviewer;                     }
48         if (_wxvtkclipping3DviewCntrlPanel!=NULL){ delete _wxvtkclipping3DviewCntrlPanel;       }
49 }
50
51 //-------------------------------------------------------------------
52 void wxVtkClipping3DView::SetVisibleBoxSurface(bool visible)
53 {
54         if (visible==true)
55         {
56                 _boxWidgetS1->On();
57         } else {
58                 _boxWidgetS1->Off();
59         }
60 }
61
62 //-------------------------------------------------------------------
63 void wxVtkClipping3DView::VisibleVolumeBoxActor(bool visible)
64 {
65         if (visible!=_vtkclipping3Ddataviewer->GetVisibleVolumeBox() )
66         {
67         VisibleVolumeActor(!visible);
68         _vtkclipping3Ddataviewer->BoxActorChanged(visible);
69         _vtkclipping3Ddataviewer->SetVisibleVolumeBox(visible);
70         _vtkclipping3Ddataviewer->SetVisibleVolume(!visible);
71         }
72 }
73
74 //-------------------------------------------------------------------
75 void wxVtkClipping3DView::Refresh()
76 {
77         _vtkclipping3Ddataviewer->Refresh();
78         if (_wxvtkclipping3DviewCntrlPanel!=NULL)
79         {
80                 _wxvtkclipping3DviewCntrlPanel->Refresh();
81         }
82 }
83
84 //-------------------------------------------------------------------
85 wxPanel* wxVtkClipping3DView::CreateSurfControlPanel(wxWindow *parent)
86 {
87         _wxvtkclipping3DviewCntrlPanel = new wxVtkClipping3DViewCntrlPanel(parent,this);
88         return _wxvtkclipping3DviewCntrlPanel;
89 }
90
91 //RaC 03-2010 Divide in two panels
92 //-------------------------------------------------------------------
93 wxPanel* wxVtkClipping3DView::CreateVolControlPanel(wxWindow *parent)
94 {
95         _wxvtkclipping3DviewVolCntrlPanel = new wxVtkClipping3DViewVolCntrlPanel(parent,this);
96         return _wxvtkclipping3DviewVolCntrlPanel;
97 }
98
99 //-------------------------------------------------------------------
100 vtkClipping3DDataViewer* wxVtkClipping3DView::GetVtkClipping3DDataViewer()
101 {
102         return _vtkclipping3Ddataviewer;
103 }
104
105 //-------------------------------------------------------------------
106 void wxVtkClipping3DView::VisibleActor(int idTissue, bool visTissue){
107         if (visTissue!=_vtkclipping3Ddataviewer->GetVisibleTissue(idTissue)){
108                 if (visTissue==false){
109                         _wxvtk3Dbaseview->GetRenderer()->RemoveActor( _vtkclipping3Ddataviewer->GetTissueActor(idTissue)  );
110                 } else {
111                         _wxvtk3Dbaseview->GetRenderer()->AddActor( _vtkclipping3Ddataviewer->GetTissueActor(idTissue)  );
112 //                      _boxWidgetS1->GetPlanes( this->GetVtkClipping3DDataViewer()->GetTissuePlanes(idTissue) );
113 //                      _actor->VisibilityOn();
114                 }
115                 _vtkclipping3Ddataviewer->SetVisibleTissue(idTissue,visTissue);
116         }
117 }
118
119 //-------------------------------------------------------------------
120 void wxVtkClipping3DView::SetRepSurfaceWireFrame(int idTissue , bool representationType )
121 {
122         vtkActor *tmpActor;
123         tmpActor = GetVtkClipping3DDataViewer()->GetTissueActor(idTissue);
124
125         if (representationType==false){
126                 tmpActor->GetProperty()->SetRepresentationToWireframe();
127         } else {
128                 tmpActor->GetProperty()->SetRepresentationToSurface();
129         }
130
131         _vtkclipping3Ddataviewer->SetRepresentationType(idTissue,representationType);
132 }
133
134 //-------------------------------------------------------------------
135 void wxVtkClipping3DView::VisibleVolumeActor( bool visVolume){
136         if (visVolume!=_vtkclipping3Ddataviewer->GetVisibleVolume() ){
137                 if (visVolume==false){
138 //EED 31/03/2008
139 //                      _wxvtk3Dbaseview->GetRenderer()->RemoveActor( _vtkclipping3Ddataviewer->GetVolumeActor()  );
140                         _wxvtk3Dbaseview->GetRenderer()->RemoveVolume( _vtkclipping3Ddataviewer->GetVolumeActor()  );
141                 } else {
142 //EED 31/03/2008
143 //                      _wxvtk3Dbaseview->GetRenderer()->AddActor( _vtkclipping3Ddataviewer->GetVolumeActor() );
144                         _wxvtk3Dbaseview->GetRenderer()->AddVolume( _vtkclipping3Ddataviewer->GetVolumeActor() );
145                 }
146                 _vtkclipping3Ddataviewer->SetVisibleVolume(visVolume);
147         }
148         else if(visVolume==false  && _vtkclipping3Ddataviewer->GetVisibleVolumeBox() == true)
149         {
150             _vtkclipping3Ddataviewer->BoxActorChanged(false);
151         _vtkclipping3Ddataviewer->SetVisibleVolumeBox(false);
152         }
153
154 }
155
156 //-------------------------------------------------------------------
157 wxVtk3DBaseView* wxVtkClipping3DView::GetWxvtk3Dbaseview()throw(char*)
158 {
159         if(_wxvtk3Dbaseview==NULL){
160                 throw "wxVtk3DBaseView* wxVtkClipping3DView::GetWxvtk3Dbaseview() _wxvtk3Dbaseview=NULL";
161         }
162         return _wxvtk3Dbaseview;
163 }
164
165 //-------------------------------------------------------------------
166 void wxVtkClipping3DView::Configure()
167 {
168         _wxvtk3Dbaseview->Configure();
169
170         // Actors are added to the renderer.
171
172         _boxWidgetS1 = vtkBoxWidget::New();
173         _boxWidgetS1->SetInteractor( _wxvtk3Dbaseview->GetWxVTKRenderWindowInteractor() );
174         _boxWidgetS1->SetPlaceFactor(1.25);
175
176
177
178         vtkStripper *stripper=_vtkclipping3Ddataviewer->GetTissueStripper(0);
179         vtkPolyData *polydata= stripper->GetOutput();
180
181 //EED 2017-01-01 Migration VTK7
182 #if VTK_MAJOR_VERSION <= 5
183         _boxWidgetS1->SetInput( polydata );
184 #else
185         _boxWidgetS1->SetInputData( polydata );
186 #endif
187
188 //EED 2016-08-19        
189         //_boxWidgetS1->PlaceWidget();
190         int ext[6];
191         this->GetVtkClipping3DDataViewer()->GetVtkMPRBaseData()->GetImageData()->GetExtent(ext);
192         _boxWidgetS1->PlaceWidget(ext[0],ext[1],ext[2],ext[3],ext[4],ext[5]);
193
194         int i;
195         for (i=0; i< VTKMPRDATA_MAXTISSUE ; i++)
196         {
197                 _boxWidgetS1->AddObserver( vtkCommand::InteractionEvent, _vtkclipping3Ddataviewer->GetObserverS(i) );
198         }
199
200 //      _wxvtk3Dbaseview->GetRenderer()->AddActor( _vtkclipping3Ddataviewer->GetTissueActor(0) );
201 //      _wxvtk3Dbaseview->GetRenderer()->AddActor( _vtkclipping3Ddataviewer->GetTissueActor(3));
202
203         VisibleActor(0, false );
204         VisibleActor(1, false );
205         VisibleActor(2, false );
206         VisibleActor(3, false );
207
208         _boxWidgetS1->HandlesOn ();
209
210 //EED 29Mars2009
211 //      _boxWidgetS1->On();
212         _boxWidgetS1->Off();
213
214         _boxWidgetS1->GetPlanes( this->GetVtkClipping3DDataViewer()->GetTissuePlanes(0) );
215         _boxWidgetS1->GetPlanes( this->GetVtkClipping3DDataViewer()->GetTissuePlanes(1) );
216         _boxWidgetS1->GetPlanes( this->GetVtkClipping3DDataViewer()->GetTissuePlanes(2) );
217         _boxWidgetS1->GetPlanes( this->GetVtkClipping3DDataViewer()->GetTissuePlanes(3) );
218
219 // EED 9 fev 2007
220 // box Volume
221         _boxWidgetVolume = vtkBoxWidget::New();
222         _boxWidgetVolume->SetInteractor( _wxvtk3Dbaseview->GetWxVTKRenderWindowInteractor() );
223         _boxWidgetVolume->SetPlaceFactor(1.25);
224
225 //EED 2017-01-01 Migration VTK7
226 #if VTK_MAJOR_VERSION <= 5
227         _boxWidgetVolume->SetInput( this->GetVtkClipping3DDataViewer()->GetVtkMPRBaseData()->GetImageData() );
228 #else
229         _boxWidgetVolume->SetInputData( this->GetVtkClipping3DDataViewer()->GetVtkMPRBaseData()->GetImageData() );
230 #endif
231
232         _boxWidgetVolume->PlaceWidget();
233         _boxWidgetVolume->AddObserver( vtkCommand::InteractionEvent, _vtkclipping3Ddataviewer->GetObserverV() );
234         _boxWidgetVolume->HandlesOn ();
235
236 //EED 29Mars2009
237 //      _boxWidgetVolume->On();
238         _boxWidgetVolume->Off();
239
240 //      vtkPlanes *vtkplanes=this->GetVtkClipping3DDataViewer()->GetVolumePlanes();
241 //      _boxWidgetVolume->GetPlanes( vtkplanes );
242
243 //EED 27/05/2013
244 //  _wxvtk3Dbaseview->GetRenderer()->ResetCamera ();
245 //  _wxvtk3Dbaseview->GetCamera()->Dolly(1.2);
246
247   // An initial camera view is created.  The Dolly() method moves
248   // the camera towards the FocalPoint, thereby enlarging the image.
249         _wxvtk3Dbaseview->ResetCamera();
250
251
252   // Set a background color for the renderer and set the size of the
253   // render window (expressed in pixels).
254   _wxvtk3Dbaseview->GetRenderer()->SetBackground( 0.36 , 0.36 , 0.36 );
255   _wxvtk3Dbaseview->GetRenWin()->SetSize(400, 400);
256
257   // Note that when camera movement occurs (as it does in the Dolly()
258   // method), the clipping planes often need adjusting. Clipping planes
259   // consist of two planes: near and far along the view direction. The
260   // near plane clips out objects in front of the plane; the far plane
261   // clips out objects behind the plane. This way only what is drawn
262   // between the planes is actually rendered.
263 //EEDUPS  _wxvtk3Dbaseview->GetRenderer()->ResetCameraClippingRange();
264
265         _vtkclipping3Ddataviewer->SetRenderer(this->GetWxvtk3Dbaseview()->GetRenderer());
266         _vtkclipping3Ddataviewer->SetInteractor(this->GetWxvtk3Dbaseview()->GetWxVTKRenderWindowInteractor());
267 }
268 //-------------------------------------------------------------------
269 void wxVtkClipping3DView::SetVtkClipping3DDataViewer(vtkClipping3DDataViewer *vtkclipping3Ddataviewer)
270 {
271         _vtkclipping3Ddataviewer = vtkclipping3Ddataviewer;
272 }
273
274 void wxVtkClipping3DView::SetRayCasting(bool active)
275 {
276     _vtkclipping3Ddataviewer->SetRayCasting(active);
277     _vtkclipping3Ddataviewer->updateVolume();
278 }
279
280 void wxVtkClipping3DView::SetMIPActive(bool active)
281 {
282     _vtkclipping3Ddataviewer->SetMIPActive(active);
283     _vtkclipping3Ddataviewer->updateVolume();
284 }
285
286 void wxVtkClipping3DView::SetInterpolation(bool active)
287 {
288     _vtkclipping3Ddataviewer->SetInterpolation(active);
289     _vtkclipping3Ddataviewer->updateVolume();
290 }
291
292 void wxVtkClipping3DView::SetShade(bool active)
293 {
294     _vtkclipping3Ddataviewer->SetShade(active);
295     _vtkclipping3Ddataviewer->updateVolume();
296 }
297
298 void wxVtkClipping3DView::UpdateVolumeBox(vector<double> gf, vector<double> vf, vtkColorTransferFunction* ctfun)
299 {
300     _vtkclipping3Ddataviewer->UpdateVolumeBox(gf, vf, ctfun);
301 }
302
303
304