]> Creatis software - creaMaracasVisu.git/blob - lib/GUI/Wx/SurfaceRenderer/wxMaracasSurfaceRendering.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / GUI / Wx / SurfaceRenderer / wxMaracasSurfaceRendering.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: wxMaracasSurfaceRendering.h,v $
30   Language:  C++
31   Date:      $Date: 2012/11/15 14:15:37 $
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
43 #ifndef __wxMaracasSurfaceRenderingPanelH__
44 #define __wxMaracasSurfaceRenderingPanelH__
45
46 #include <vector>
47 #include <wx/wx.h>
48 #include "wx/aui/aui.h"
49 #include <iostream>
50 #include "marTypes.h"
51 #include "vtkProp3D.h"
52
53 #include "wxMaracasSurfaceRenderingManager.h"
54 #include "wxMaracasSurfaceRenderingPanel.h"
55
56 class  creaMaracasVisu_EXPORT  wxMaracasSurfaceRendering : public wxPanel
57 {
58
59 public:
60     wxMaracasSurfaceRendering( wxWindow* parent, std::string path);
61     ~wxMaracasSurfaceRendering( );
62
63     static wxMaracasSurfaceRendering* getInstance(wxWindow* parent,std::string path="");
64
65     static wxMaracasSurfaceRendering* getInstance();
66
67     void setRenderer(vtkRenderer*  renderer);
68
69     void setInteractor(vtkRenderWindowInteractor*  interactor);
70
71     void changeOpacity(int propid, int value);
72
73     void changeIsoValue(int propid, double value);
74
75     void addRemoveActor(int propid, bool addremove);
76
77     void addRemoveSurfaceBox(int propid, bool addremove);
78
79     void changeColor(int propid, double red, double green, double blue);
80
81     void addProp3D(vtkProp3D* prop3D, std::string dataname="");
82
83     void addPropMHD(vtkImageData* imgdata, std::string dataname="");
84
85     void loadProp3D(wxString filename, wxString dataname);
86
87     void loadPropMHD(wxString filename, wxString dataname);
88
89     void onLoadImageFile();
90
91     void addSurfaceRenderingPanel(wxMaracasSurfaceRenderingPanel* surrend, std::string dataname="");
92
93     std::string getPath();
94
95     void deleteActor(int propid);
96
97     bool interactorSet();
98
99 private:
100     static wxMaracasSurfaceRendering* instance;
101
102     wxMaracasSurfaceRenderingManager* surrendmanager;
103         
104     wxAuiManager* wxauimanager;
105     
106     wxToolBar* _toolb;
107
108     std::string _path;
109
110     void createFileChooser();
111 };
112
113 class ToolBarEventHandler : public wxEvtHandler{
114
115         public:
116                 ToolBarEventHandler();
117                 ~ToolBarEventHandler();
118
119                 void onLoadImageFile(wxCommandEvent& event);
120
121         private:
122
123                 DECLARE_EVENT_TABLE()
124         };
125
126 class ToolBar : public wxToolBar{
127
128 public:
129         ToolBar(wxWindow * parent,std::string iconsdir);
130         ~ToolBar(void);
131
132 private:
133
134         ToolBarEventHandler* _evthand;
135 };
136
137 #endif