]> Creatis software - crea.git/blob - src/creawxVTKRenderWindowInteractor.h
#3374 crea Bug New Normal - vtk8itk5wx3-mingw64
[crea.git] / src / creawxVTKRenderWindowInteractor.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29
30   Program:   Visualization Toolkit
31   Module:    $RCSfile$
32   Language:  C++
33   Date:      $Date$
34   Version:   $Revision$
35
36   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
37   All rights reserved.
38   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
39
40      This software is distributed WITHOUT ANY WARRANTY; without even 
41      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
42      PURPOSE.  See the above copyright notice for more information.
43
44 =========================================================================*/
45
46 // .NAME  wxVTKRenderWindowInteractor - class to enable VTK to render to 
47 // and interact with wxWindow.
48 // .SECTION Description
49 //  wxVTKRenderWindowInteractor provide a VTK widget for wxWindow. This class
50 // was completely rewrote to have the 'Look & Feel' of the python version:
51 // wxVTKRenderWindowInteractor.py
52 // .SECTION Caveats 
53 //  - There is a know bug that prevent this class to works for more info see 
54 // WX_USE_X_CAPTURE. This bug only affect wxGTK from 2.3.2 to wxGTK 2.4.0.
55 //  - Furthermore this class is tempated over either wxWindows or wxGLCanvas,
56 // in wxWindows 2.3.1 and earlier, the wxGLCanvas had scroll bars, you can avoid
57 // this effect by playing with WX_BASE_CLASS at your risk (you might end up with
58 // lot of flickering.)
59 //  - This class might not be easily readable as it tried to work with VTK 3.2
60 //  and 4.x. This class doesn't support reparenting with VTK 4.2 and earlier.
61 // .SECTION see also
62 // wxVTKRenderWindowInteractor.py wxVTKRenderWindow.py
63
64 #ifndef _wxVTKRenderWindowInteractor_h_
65 #define _wxVTKRenderWindowInteractor_h_
66
67 // For compilers that support precompilation, includes "wx/wx.h".
68 #include "wx/wxprec.h"
69
70 #ifdef __BORLANDC__
71 #  pragma hdrstop
72 #endif
73
74 #ifndef WX_PRECOMP
75 #include <wx/wx.h>
76 #endif
77
78 #include <wx/timer.h>
79 #include <wx/dcclient.h>
80
81 // vtk includes
82 #include "vtkRenderWindowInteractor.h"
83 #include "vtkRenderWindow.h"
84
85 #define USE_WXGLCANVAS
86
87 #if defined(__WXGTK__) && defined(USE_WXGLCANVAS)
88 #  if wxUSE_GLCANVAS
89 #    include <wx/glcanvas.h>
90 #  else
91 #    error "problem of wxGLCanvas, you need to build wxWidgets with opengl"
92 #  endif //wxUSE_GLCANVAS
93 #endif //__WXGTK__
94
95 // Motif version (renamed into wxX11 for wxWindow 2.4 and newer)
96 #if defined(__WXMOTIF__) 
97 # error This GUI is not supported by wxVTKRenderWindowInteractor for now
98 #endif
99
100 #include "creaSystem.h"
101
102
103 // wx forward declarations
104 class wxPaintEvent;
105 class wxMouseEvent;
106 class wxTimerEvent;
107 class wxKeyEvent;
108 class wxSizeEvent;
109
110 //=======================================================================
111 // LG : NAMESPACE IS NECESSARY TO AVOID CONFLICTING SYMBOLS IN DYN LIBS
112 namespace crea
113 {
114
115
116 #if defined(__WXGTK__) && defined(USE_WXGLCANVAS)
117 class wxVTKRenderWindowInteractor : public wxGLCanvas, public vtkRenderWindowInteractor
118 #else
119 class CREA_EXPORT wxVTKRenderWindowInteractor : public wxWindow, public vtkRenderWindowInteractor
120 #endif //__WXGTK__
121 {
122 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
123 #if wxMAJOR_VERSION <= 2
124   DECLARE_DYNAMIC_CLASS(wxVTKRenderWindowInteractor)
125 #else
126   wxDECLARE_DYNAMIC_CLASS(wxVTKRenderWindowInteractor);
127 #endif
128   
129   public:
130     //constructors
131     wxVTKRenderWindowInteractor();
132
133     wxVTKRenderWindowInteractor(wxWindow *parent,
134                                 wxWindowID id,
135                                 const wxPoint &pos = wxDefaultPosition,
136                                 const wxSize &size = wxDefaultSize,
137                                 long style = wxWANTS_CHARS | wxNO_FULL_REPAINT_ON_RESIZE,
138                                 const wxString &name = wxPanelNameStr);
139   //EED win Compilation why ??:    vtkTypeRevisionMacro(wxVTKRenderWindowInteractor,vtkRenderWindowInteractor);
140     static wxVTKRenderWindowInteractor * New();
141     void PrintSelf(ostream& os, vtkIndent indent);
142
143           //destructor
144     ~wxVTKRenderWindowInteractor();
145
146     // vtkRenderWindowInteractor overrides
147     void Initialize();
148     void Enable();
149     bool Enable(bool enable);
150     void Disable();
151     void Start();
152     void UpdateSize(int x, int y);
153     int CreateTimer(int timertype);
154     int DestroyTimer();
155     void TerminateApp() {};
156
157     // event handlers
158     void OnPaint(wxPaintEvent &event);
159     void OnEraseBackground (wxEraseEvent& event);
160     void OnMotion(wxMouseEvent &event);
161
162     void OnButtonDown(wxMouseEvent &event);
163     void OnButtonUp(wxMouseEvent &event);
164 #if !(VTK_MAJOR_VERSION == 3 && VTK_MINOR_VERSION == 1)
165     void OnEnter(wxMouseEvent &event);
166     void OnLeave(wxMouseEvent &event);
167     void OnMouseWheel(wxMouseEvent& event);
168 #if wxCHECK_VERSION(2, 8, 0)
169     void OnMouseCaptureLost(wxMouseCaptureLostEvent& event);
170 #endif
171     void OnKeyDown(wxKeyEvent &event);
172     void OnKeyUp(wxKeyEvent &event);
173     void OnChar(wxKeyEvent &event);
174 #endif
175     void OnTimer(wxTimerEvent &event);
176     void OnSize(wxSizeEvent &event);
177
178     void Render();
179     void SetRenderWhenDisabled(int newValue);
180
181     // Description:
182     // Prescribe that the window be created in a stereo-capable mode. This
183     // method must be called before the window is realized. Default if off.
184     vtkGetMacro(Stereo,int);
185     vtkBooleanMacro(Stereo,int);
186     virtual void SetStereo(int capable);
187
188     // Description:
189     // As CaptureMouse could be a problem sometimes on a window box
190     // This method allow to set or not the CaptureMouse.
191     // This method actually will works only if WX_USE_X_CAPTURE was set to 1
192     vtkSetMacro(UseCaptureMouse,int);
193     vtkBooleanMacro(UseCaptureMouse,int);
194
195 #if VTK_MAJOR_VERSION > 5 || (VTK_MAJOR_VERSION == 5 && VTK_MINOR_VERSION >= 2)
196   protected:
197     virtual int InternalCreateTimer(int timerId, int timerType, unsigned long duration);
198     virtual int InternalDestroyTimer(int platformTimerId);
199 #endif
200
201   protected:
202 #if defined(__WXGTK__) && defined(USE_WXGLCANVAS)
203     wxGLContext *context;
204 #endif
205     wxTimer timer;
206     int ActiveButton;
207     long GetHandleHack();
208     int Stereo;
209     
210   private:
211     long Handle;
212     bool Created;
213     int RenderWhenDisabled;
214     int UseCaptureMouse;
215
216     DECLARE_EVENT_TABLE()
217 };
218
219
220 // LG : EO namespace bbwxvtk
221 //======================================================================
222
223 #endif //_wxVTKRenderWindowInteractor_h_