]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasRendererView.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxMaracasRendererView.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: wxMaracasRendererView.h,v $
30   Language:  C++
31
32 =========================================================================*/
33
34 #ifndef __wxMaracasRendererViewPanelH__
35 #define __wxMaracasRendererViewPanelH__
36
37 #include <vector>
38 #include <wx/wx.h>
39 #include "wx/aui/aui.h"
40 #include <iostream>
41 #include "marTypes.h"
42 #include "vtkProp3D.h"
43 #include "wxVtkBaseView.h"
44
45 #include "wxMaracasRendererView.h"
46 #include "wxMaracasRenderTabbedPanel.h"
47 #include "volumerenderermanager.h"
48 #include "wxMaracasSurfaceRenderingManager.h"
49
50 class  creaMaracasVisu_EXPORT  wxMaracasRendererView : public wxPanel
51 {
52
53 public:
54         wxMaracasRendererView( wxWindow* parent, std::string path);
55         ~wxMaracasRendererView( );
56
57         static wxMaracasRendererView* getInstance(wxWindow* parent,std::string path="");
58         static wxMaracasRendererView* getInstance();
59
60         std::string getPath();
61         wxMaracasRenderTabbedPanel* getTabbedPanel(int id) throw(char*);
62
63         void setRenderer(vtkRenderer*  renderer); /* throw(char*), */   // JPR
64         void setVtkBaseView(wxVtk3DBaseView* base);
65         void onLoadImageFile();
66         void addVolumes(vtkImageData* img, std::string pathfile, std::string filename);
67         void addPanels(wxMaracasRenderTabbedPanel* wxtabs, vtkImageData* img, std::string pathfile, std::string filename);
68
69         void deleteVolume(int volid);
70         std::vector<std::string> getFiles();
71
72 private:
73         static wxMaracasRendererView* instance;
74
75         std::vector<wxMaracasRenderTabbedPanel*> tabsVector;
76         std::vector<std::string> files;
77
78         wxAuiManager* wxauimanager;
79         wxToolBar * _toolb;
80
81         vtkRenderer*  _renderer;
82         wxVtk3DBaseView* baseView;
83         std::string _path;
84
85         int _idCount;
86 };
87
88 class ToolBarEventHandlerRenderer : public wxEvtHandler
89 {
90         public:
91                 ToolBarEventHandlerRenderer();
92                 ~ToolBarEventHandlerRenderer();
93
94                 void onLoadImageFile(wxCommandEvent& event);
95
96         private:
97
98                 DECLARE_EVENT_TABLE()
99         };
100
101 class ToolBarRenderer : public wxToolBar{
102
103 public:
104         ToolBarRenderer(wxWindow * parent,std::string iconsdir);
105         ~ToolBarRenderer(void);
106
107 private:
108
109         ToolBarEventHandlerRenderer* _evthand;
110 };
111
112 #endif