]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkClipping3DViewCntrlPanel.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkClipping3DViewCntrlPanel.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 WXVTKCLIPPING3DVIEWCNTRLPANEL_H_
27 #define WXVTKCLIPPING3DVIEWCNTRLPANEL_H_
28
29 #include "wxVtkClipping3DView.h"
30 #include "volumerendererdata.h"
31 #include "wx/wx.h"
32
33 class wxVtkClipping3DViewCntrlPanel: public wxPanel
34         //, VolumeRendererData
35 {
36 public:
37         wxVtkClipping3DViewCntrlPanel(wxWindow *parent, wxVtkClipping3DView *_wxvtkclipping3Dview);
38         ~wxVtkClipping3DViewCntrlPanel();
39                         void    OnSurface(wxCommandEvent& event);
40                         void    OnRepresentationSurfaceWireFrame(wxCommandEvent& event);
41                         void    OnVisibleVolume(wxCommandEvent& event);
42                         void    OnVisibleBoxSurface(wxCommandEvent& event);
43                         void    OnVisibleBoxVolume(wxCommandEvent& event);
44                         void    OnColor(wxCommandEvent& event);
45                         void    OnVisibleSurface(wxCommandEvent& event);
46                         void    OnOpacity(wxScrollEvent& event);
47                         void    OnIsoValue(wxScrollEvent& event);
48                         void    OnIsoValueSpin(wxScrollEvent& event);
49         virtual void    Refresh();
50                         void    OnBtnCreateFileSTL(wxCommandEvent& event);
51                         void    OnBtnSaveRawVolume(wxCommandEvent& event);
52                         void    OnBtnVolumeFunctions(wxCommandEvent& event);
53                         void    OnBtnMeshVTKLoad(wxCommandEvent& event);
54
55
56 private:
57         wxVtkClipping3DView     *_wxvtkclipping3Dview;
58         wxSlider                        *_opacity;
59         wxSlider                        *_isoValue;
60         wxSlider                        *_isoValueSpin;
61         wxRadioButton           *_surfA;
62         wxRadioButton           *_surfB;
63         wxRadioButton           *_surfC;
64         wxRadioButton           *_surfD;
65         wxCheckBox                      *_visible;
66         wxButton                        *_color;
67
68         wxRadioButton           *_wireFrameRep;
69         wxRadioButton           *_surfaceRep;
70
71         int                             GetIdTissue();
72 protected:
73
74 };
75
76 #endif /*WXVTKCLIPPING3DVIEWCNTRLPANEL_H_*/