]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.h
#3012 creaMaracasVisu Bug New Normal - Update Image in ViewerNV
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkBaseView.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 #ifndef __WX_VTK__BASE__VIEW__H
29 #define __WX_VTK__BASE__VIEW__H
30
31
32
33 #include <vtkRenderer.h>
34 #include <vtkRenderWindow.h>
35 #include <vtkCamera.h>
36 #include <vtkTextActor.h>
37
38 //EEDxx include
39 #include <vtkProperty.h>
40 #include <vtkActor.h>
41
42
43 #include <vtkImageViewer2.h> 
44 #include <vtkInteractorStyleImage.h> 
45
46 #include "vtkBaseData.h"
47 #include "wxVTKRenderWindowInteractorEditContour.h"
48
49 #include <wx/wx.h>
50
51
52
53 #include <vector>
54 #include "marTypes.h"
55
56 #include "wxVTKRenderWindowInteractor.h"
57 //#include "include/vtkImageViewer2_XYZ.h"
58
59 /* JCP 14/05/09
60 //#include "vtkInteractorStyleBaseView.h"
61 //class vtkInteractorStyleBaseView;  
62  */
63
64
65 #include "vtkInteractorStyleImage.h"
66
67 class creaMaracasVisu_EXPORT wxVtkBaseView{
68 public:
69         wxVtkBaseView( );
70         wxVtkBaseView( wxWindow *parent );
71         virtual ~wxVtkBaseView();
72         wxVTKRenderWindowInteractor     *GetWxVTKRenderWindowInteractor() throw (char*);
73         virtual void                            Configure();
74         virtual void                            Refresh();
75         virtual void                            RefreshView();
76         virtual vtkRenderer*            GetRenderer();
77         virtual vtkRenderWindow*        GetRenWin();
78         virtual void                            TransFromCoordScreenToWorld(double &X, double &Y, double &Z, bool keepNormalDirection=false,int type=2);
79
80         //RaC 03-2010 Method used by TransFromCoordScreenToWorld
81         void                                            TransCoordScreenToWorld(double &X, double &Y, double &Z,int type=2);
82
83         /* JCP 04/05/09
84         void                                    SetInteractorStyleBaseView( vtkInteractorStyleBaseView* interactorStyle);
85         */
86         void                                            SetInteractorStyleBaseView( vtkInteractorStyleImage*    interactorStyle);
87         /* JCP 04/05/09
88          * 
89         vtkInteractorStyleBaseView*             GetInteractorStyleBaseView();   
90         */
91         vtkInteractorStyleImage*        GetInteractorStyleBaseView();
92         virtual void                            GetSpacing(double spc[3]);
93         virtual int                                     GetDirection();
94         vtkBaseData*                            GetVtkBaseData();
95         void                                            SetVtkBaseData(vtkBaseData *vtkbasedata);
96
97 private:
98         wxWindow                                        *_parent;
99         wxVTKRenderWindowInteractor *_iren;
100         /**
101          * JCP 04/05/09
102          * vtkInteractorStyleImage              *_interactorStyle;
103          */
104         vtkInteractorStyleImage         *_interactorStyle;
105
106 // EED Nov 15 2014
107         vtkBaseData                                     *_vtkbasedata;
108
109 protected:
110
111 };
112
113 //------------------------------------------------------------------
114 //------------------------------------------------------------------
115 //------------------------------------------------------------------
116
117
118 #endif // __WX_VTK__BASE__VIEW__H
119