1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/glcanvas.cpp
3 // Purpose: wxGLCanvas, for using OpenGL/Mesa with wxWidgets and GTK
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
17 #include "wx/glcanvas.h"
22 #include "wx/colour.h"
23 #include "wx/module.h"
33 #include "wx/gtk/win_gtk.h"
34 #include "wx/gtk/private.h"
36 #if WXWIN_COMPATIBILITY_2_8
38 //-----------------------------------------------------------------------------
39 // "realize" from m_wxwindow: used to create m_glContext implicitly
40 //-----------------------------------------------------------------------------
44 gtk_glwindow_realized_callback( GtkWidget
*WXUNUSED(widget
), wxGLCanvas
*win
)
46 win
->GTKInitImplicitContext();
52 #endif // WXWIN_COMPATIBILITY_2_8
54 //-----------------------------------------------------------------------------
55 // "map" from m_wxwindow
56 //-----------------------------------------------------------------------------
60 gtk_glwindow_map_callback( GtkWidget
* WXUNUSED(widget
), wxGLCanvas
*win
)
62 wxPaintEvent
event( win
->GetId() );
63 event
.SetEventObject( win
);
64 win
->GetEventHandler()->ProcessEvent( event
);
66 win
->m_exposed
= false;
67 win
->GetUpdateRegion().Clear();
73 //-----------------------------------------------------------------------------
74 // "expose_event" of m_wxwindow
75 //-----------------------------------------------------------------------------
79 gtk_glwindow_expose_callback( GtkWidget
*WXUNUSED(widget
), GdkEventExpose
*gdk_event
, wxGLCanvas
*win
)
81 // don't need to install idle handler, its done from "event" signal
83 win
->m_exposed
= true;
85 win
->GetUpdateRegion().Union( gdk_event
->area
.x
,
87 gdk_event
->area
.width
,
88 gdk_event
->area
.height
);
93 //-----------------------------------------------------------------------------
94 // "size_allocate" of m_wxwindow
95 //-----------------------------------------------------------------------------
99 gtk_glcanvas_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxGLCanvas
*win
)
102 wxapp_install_idle_handler();
107 wxSizeEvent
event( wxSize(win
->m_width
,win
->m_height
), win
->GetId() );
108 event
.SetEventObject( win
);
109 win
->GetEventHandler()->ProcessEvent( event
);
113 //---------------------------------------------------------------------------
115 //---------------------------------------------------------------------------
117 IMPLEMENT_CLASS(wxGLCanvas
, wxWindow
)
119 wxGLCanvas::wxGLCanvas(wxWindow
*parent
,
121 const int *attribList
,
125 const wxString
& name
,
126 const wxPalette
& palette
)
127 #if WXWIN_COMPATIBILITY_2_8
128 : m_createImplicitContext(false)
131 Create(parent
, id
, pos
, size
, style
, name
, attribList
, palette
);
134 #if WXWIN_COMPATIBILITY_2_8
136 wxGLCanvas::wxGLCanvas(wxWindow
*parent
,
141 const wxString
& name
,
142 const int *attribList
,
143 const wxPalette
& palette
)
144 : m_createImplicitContext(true)
146 Create(parent
, id
, pos
, size
, style
, name
, attribList
, palette
);
149 wxGLCanvas::wxGLCanvas(wxWindow
*parent
,
150 const wxGLContext
*shared
,
155 const wxString
& name
,
156 const int *attribList
,
157 const wxPalette
& palette
)
158 : m_createImplicitContext(true)
160 m_sharedContext
= wx_const_cast(wxGLContext
*, shared
);
162 Create(parent
, id
, pos
, size
, style
, name
, attribList
, palette
);
165 wxGLCanvas::wxGLCanvas(wxWindow
*parent
,
166 const wxGLCanvas
*shared
,
168 const wxPoint
& pos
, const wxSize
& size
,
169 long style
, const wxString
& name
,
170 const int *attribList
,
171 const wxPalette
& palette
)
172 : m_createImplicitContext(true)
174 m_sharedContextOf
= wx_const_cast(wxGLCanvas
*, shared
);
176 Create(parent
, id
, pos
, size
, style
, name
, attribList
, palette
);
179 #endif // WXWIN_COMPATIBILITY_2_8
181 bool wxGLCanvas::Create(wxWindow
*parent
,
186 const wxString
& name
,
187 const int *attribList
,
188 const wxPalette
& palette
)
192 m_nativeSizeEvent
= true;
194 if ( !InitVisual(attribList
) )
197 XVisualInfo
* const xvi
= GetXVisualInfo();
200 GdkColormap
*colormap
;
202 // MR: This needs a fix for lower gtk+ versions too. Might need to rethink logic (FIXME)
203 #if defined(__WXGTK20__) && GTK_CHECK_VERSION(2,2,0)
204 if (!gtk_check_version(2,2,0))
206 wxWindow::Create( parent
, id
, pos
, size
, style
, name
);
208 m_glWidget
= m_wxwindow
;
210 GdkScreen
*screen
= gtk_widget_get_screen( m_glWidget
);
211 colormap
= gdk_screen_get_default_colormap(screen
);
212 visual
= gdk_colormap_get_visual(colormap
);
214 if (GDK_VISUAL_XVISUAL(visual
)->visualid
!= xvi
->visualid
)
216 visual
= gdk_x11_screen_lookup_visual( screen
, xvi
->visualid
);
217 colormap
= gdk_colormap_new(visual
, FALSE
);
220 gtk_widget_set_colormap( m_glWidget
, colormap
);
223 #endif // GTK+ >= 2.2
225 visual
= gdkx_visual_get( xvi
->visualid
);
226 colormap
= gdk_colormap_new( visual
, TRUE
);
228 gtk_widget_push_colormap( colormap
);
230 wxWindow::Create( parent
, id
, pos
, size
, style
, name
);
231 m_glWidget
= m_wxwindow
;
234 gtk_widget_set_double_buffered( m_glWidget
, FALSE
);
236 #if WXWIN_COMPATIBILITY_2_8
237 g_signal_connect(m_wxwindow
, "realize", G_CALLBACK(gtk_glwindow_realized_callback
), this);
238 #endif // WXWIN_COMPATIBILITY_2_8
239 g_signal_connect(m_wxwindow
, "map", G_CALLBACK(gtk_glwindow_map_callback
), this);
240 g_signal_connect(m_wxwindow
, "expose_event", G_CALLBACK(gtk_glwindow_expose_callback
), this);
241 g_signal_connect(m_widget
, "size_allocate", G_CALLBACK(gtk_glcanvas_size_callback
), this);
243 if (gtk_check_version(2,2,0) != NULL
)
245 gtk_widget_pop_colormap();
248 #if WXWIN_COMPATIBILITY_2_8
249 // if our parent window is already visible, we had been realized before we
250 // connected to the "realize" signal and hence our m_glContext hasn't been
251 // initialized yet and we have to do it now
252 if (GTK_WIDGET_REALIZED(m_wxwindow
))
253 gtk_glwindow_realized_callback( m_wxwindow
, this );
254 #endif // WXWIN_COMPATIBILITY_2_8
256 if (GTK_WIDGET_MAPPED(m_wxwindow
))
257 gtk_glwindow_map_callback( m_wxwindow
, this );
262 Window
wxGLCanvas::GetXWindow() const
264 GdkWindow
*window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
265 return window
? GDK_WINDOW_XWINDOW(window
) : 0;
268 void wxGLCanvas::OnInternalIdle()
272 wxPaintEvent
event( GetId() );
273 event
.SetEventObject( this );
274 GetEventHandler()->ProcessEvent( event
);
277 GetUpdateRegion().Clear();
280 wxWindow::OnInternalIdle();
283 #if WXWIN_COMPATIBILITY_2_8
285 void wxGLCanvas::GTKInitImplicitContext()
287 if ( !m_glContext
&& m_createImplicitContext
)
289 wxGLContext
*share
= m_sharedContext
;
290 if ( !share
&& m_sharedContextOf
)
291 share
= m_sharedContextOf
->m_glContext
;
293 m_glContext
= new wxGLContext(this, share
);
297 #endif // WXWIN_COMPATIBILITY_2_8
299 #endif // wxUSE_GLCANVAS