]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkClipping3DView.h
8e7f4bbf2f01c7dde73b277f9d8386b1632aded4
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkClipping3DView.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 WXVTKCLIPPING3DVIEW_H_
27 #define WXVTKCLIPPING3DVIEW_H_
28
29 #include "vtkClipping3DDataViewer.h"
30 #include "wxVtk3DBaseView.h"
31 #include "wx/wx.h"
32 #include "vtkBoxWidget.h"
33
34 //#include "wxVtkClipping3DViewCntrlPanel.h"
35 //class wxVtkClipping3DViewCntrlPanel;
36
37 class wxVtkClipping3DView
38 {
39 public:
40         wxVtkClipping3DView( wxVtk3DBaseView* wxvtk3Dbaseview );
41         virtual ~wxVtkClipping3DView();
42         virtual void                    Refresh();
43         virtual void                    Configure();
44         void                                            SetVtkClipping3DDataViewer( vtkClipping3DDataViewer *vtkclipping3Ddataviewer );
45
46         wxPanel*                                        CreateSurfControlPanel(wxWindow *parent);
47         wxPanel*                                        CreateVolControlPanel(wxWindow *parent);
48
49         vtkClipping3DDataViewer*        GetVtkClipping3DDataViewer();
50
51         void                                            VisibleActor(int idTissue, bool visTissue);
52         void                                            VisibleVolumeActor( bool visVolume );
53
54         void                 VisibleVolumeBoxActor(bool visible);
55
56         void                                            SetVisibleBoxSurface(bool visible);
57         void                                            SetVisibleBoxVolume(bool visible);
58         void                                            SetRepSurfaceWireFrame(int idTissue , bool typeRepresentation );
59
60         wxVtk3DBaseView*                GetWxvtk3Dbaseview()throw(char*);
61
62         void                 SetRayCasting(bool active);
63         void                 SetMIPActive(bool active);
64    void                 SetInterpolation(bool active);
65    void                 SetShade(bool active);
66
67    void                 UpdateVolumeBox(vector<double> gf, vector<double> vf, vtkColorTransferFunction* ctfun);
68
69
70 private:
71         wxVtk3DBaseView                         *_wxvtk3Dbaseview;
72         vtkClipping3DDataViewer         *_vtkclipping3Ddataviewer;
73         vtkBoxWidget                                    *_boxWidgetS1;
74         vtkBoxWidget                                    *_boxWidgetVolume;
75         wxPanel                                                 *_wxvtkclipping3DviewCntrlPanel;
76         wxPanel                                                 *_wxvtkclipping3DviewVolCntrlPanel;
77 protected:
78 };
79
80 #endif /*WXVTKCLIPPING3DVIEW_H_*/