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