]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/include/wxSurfaceWidget.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / include / wxSurfaceWidget.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 /*=========================================================================
27
28   Program:   wxMaracas
29   Module:    $RCSfile: wxSurfaceWidget.h,v $
30   Language:  C++
31   Date:      $Date: 2012/11/15 14:15:18 $
32   Version:   $Revision: 1.2 $
33
34   Copyright: (c) 2002, 2003
35   License:
36   
37      This software is distributed WITHOUT ANY WARRANTY; without even 
38      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
39      PURPOSE.  See the above copyright notice for more information.
40
41 =========================================================================*/
42 #ifndef __WX__3D__SURF__WDG__
43 #define __WX__3D__SURF__WDG__
44
45 #include "vtk3DSurfaceWidget.h"
46 #include <wx/wx.h>
47 #include <wx/slider.h>
48 #include <kernel/marInterface.h>
49
50 //----------------------------------------------------------------------------
51 /**
52  * \brief Panel class composed of a vtk renderwindow with double click available
53  * and add some buttons
54  */
55 class wxSurfaceWidget : public wxPanel , InterfaceVtkPanelWidgets
56 {
57 public:
58   enum ToolBarIDs {
59     ID_TOOL_BAR = 300,
60     ID_BUTTON_NEW_AXIS,
61     ID_BUTTON_DELETE_AXIS,
62     ID_CHECKBOX_ISOVISIBLE,
63     ID_SLIDER_ISOVAL,
64     ID_SLIDER_OPACITY,
65     ID_BUTTON_CHOOSE_COLOR,
66     ID_BUTTON_QUANTIFICATION,
67     ID_BUTTON_MANUAL_AXIS,
68   };
69   
70   enum WidgetsIDs {
71     ID_WORLD3D = 800
72   };
73
74   wxSurfaceWidget( wxWindow* parent, wxWindowID id = -1,
75                   const wxPoint& pos    = wxDefaultPosition,
76                   const wxSize& size    = wxDefaultSize,
77                   long  style                   = 0/*wxScrolledWindowStyle*/,
78                   const wxString& name  = wxPanelNameStr
79                   );
80
81   ~wxSurfaceWidget( );
82
83   void AddAxisActors();
84   void RefreshAxis();
85   void Clean3D();
86
87   //axis toolbar
88   void OnExtractAxis(wxCommandEvent& event);
89   void OnDeleteAxis(wxCommandEvent& event);
90   void OnQuantification(wxCommandEvent& event);
91
92   //surface
93   void OnChooseSurfaceColor(wxCommandEvent& event);
94   void OnIsoVisible(wxCommandEvent& event);
95
96   //slider isovalue
97   void OnSliderIsovalueScrollThumbrelease(wxScrollEvent& event);
98
99   //slider opacity
100   void OnSliderOpacityScrollThumbrelease(wxScrollEvent& event);
101
102   void ShowMARACASData( marInterface* mar );
103
104   void CallBackOnLeftDClick( wxMouseEvent& event );
105   void SetId_toolbar_plans(int _id_toolbar_plans );
106
107   int  GetIsovalue();
108   int  GetOpacity();
109
110   vtk3DSurfaceWidget *GetVtk3DSurfaceWidget();
111         void OnManualAxis(wxCommandEvent& event);
112         void OnRefreshManualAxis(wxCommandEvent& event);
113
114
115   private:
116
117         int                                     _id_toolbar_plans;
118
119     wxButton                    *_bt_new_axis;
120     wxButton                    *_bt_delete_axis;
121     wxButton                    *_bt_call_quantification;
122
123         wxButton                        *_bt_manual_axis; 
124         wxButton                        *_bt_refresh_manual_axis;
125
126     wxStaticText                *_st_cero;
127         wxStaticText            *_st_text;
128     wxStaticText                *_st_one;
129     wxStaticText                *_st_two;
130
131         wxCheckBox                      *_isoVisible;
132         wxSlider                        *_isoValue;
133         wxSlider                        *_opacity;
134         wxButton                        *_surface_color; //mat
135         marInterface            *_mar;
136         vtk3DSurfaceWidget      *_3DWorld;
137
138   DECLARE_EVENT_TABLE( );
139 };
140
141 #endif // __WX__3D__SURF__WDG__