1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas base header
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GLCANVAS_H_BASE_
13 #define _WX_GLCANVAS_H_BASE_
20 #include "wx/palette.h"
21 #include "wx/window.h"
23 class WXDLLIMPEXP_FWD_GL wxGLCanvas
;
24 class WXDLLIMPEXP_FWD_GL wxGLContext
;
26 // ----------------------------------------------------------------------------
27 // Constants for attributes list
28 // ----------------------------------------------------------------------------
30 // Notice that not all implementation support options such as stereo, auxiliary
31 // buffers, alpha channel, and accumulator buffer, use IsDisplaySupported() to
32 // check for individual attributes support.
35 WX_GL_RGBA
= 1, // use true color palette (on if no attrs specified)
36 WX_GL_BUFFER_SIZE
, // bits for buffer if not WX_GL_RGBA
37 WX_GL_LEVEL
, // 0 for main buffer, >0 for overlay, <0 for underlay
38 WX_GL_DOUBLEBUFFER
, // use double buffering (on if no attrs specified)
39 WX_GL_STEREO
, // use stereoscopic display
40 WX_GL_AUX_BUFFERS
, // number of auxiliary buffers
41 WX_GL_MIN_RED
, // use red buffer with most bits (> MIN_RED bits)
42 WX_GL_MIN_GREEN
, // use green buffer with most bits (> MIN_GREEN bits)
43 WX_GL_MIN_BLUE
, // use blue buffer with most bits (> MIN_BLUE bits)
44 WX_GL_MIN_ALPHA
, // use alpha buffer with most bits (> MIN_ALPHA bits)
45 WX_GL_DEPTH_SIZE
, // bits for Z-buffer (0,16,32)
46 WX_GL_STENCIL_SIZE
, // bits for stencil buffer
47 WX_GL_MIN_ACCUM_RED
, // use red accum buffer with most bits (> MIN_ACCUM_RED bits)
48 WX_GL_MIN_ACCUM_GREEN
, // use green buffer with most bits (> MIN_ACCUM_GREEN bits)
49 WX_GL_MIN_ACCUM_BLUE
, // use blue buffer with most bits (> MIN_ACCUM_BLUE bits)
50 WX_GL_MIN_ACCUM_ALPHA
, // use alpha buffer with most bits (> MIN_ACCUM_ALPHA bits)
51 WX_GL_SAMPLE_BUFFERS
, // 1 for multisampling support (antialiasing)
52 WX_GL_SAMPLES
// 4 for 2x2 antialising supersampling on most graphics cards
55 #define wxGLCanvasName wxT("GLCanvas")
57 // ----------------------------------------------------------------------------
58 // wxGLContextBase: OpenGL rendering context
59 // ----------------------------------------------------------------------------
61 class WXDLLIMPEXP_GL wxGLContextBase
: public wxObject
65 The derived class should provide a ctor with this signature:
67 wxGLContext(wxGLCanvas *win, const wxGLContext *other = NULL);
70 // set this context as the current one
71 virtual bool SetCurrent(const wxGLCanvas
& win
) const = 0;
74 // ----------------------------------------------------------------------------
75 // wxGLCanvasBase: window which can be used for OpenGL rendering
76 // ----------------------------------------------------------------------------
78 class WXDLLIMPEXP_GL wxGLCanvasBase
: public wxWindow
81 // default ctor doesn't initialize the window, use Create() later
84 virtual ~wxGLCanvasBase();
88 The derived class should provide a ctor with this signature:
90 wxGLCanvas(wxWindow *parent,
91 wxWindowID id = wxID_ANY,
93 const wxPoint& pos = wxDefaultPosition,
94 const wxSize& size = wxDefaultSize,
96 const wxString& name = wxGLCanvasName,
97 const wxPalette& palette = wxNullPalette);
103 // set the given context associated with this window as the current one
104 bool SetCurrent(const wxGLContext
& context
) const;
106 // flush the back buffer (if we have it)
107 virtual bool SwapBuffers() = 0;
113 // check if the given attributes are supported without creating a canvas
114 static bool IsDisplaySupported(const int *attribList
);
116 const wxPalette
*GetPalette() const { return &m_palette
; }
118 // miscellaneous helper functions
119 // ------------------------------
121 #ifndef wxHAS_OPENGL_ES
122 // call glcolor() for the colour with the given name, return false if
124 bool SetColour(const wxString
& colour
);
127 // return true if the extension with given name is supported
129 // notice that while this function is implemented for all of GLX, WGL and
130 // AGL the extensions names are usually not the same for different
131 // platforms and so the code using it still usually uses conditional
133 static bool IsExtensionSupported(const char *extension
);
135 // deprecated methods using the implicit wxGLContext
136 #if WXWIN_COMPATIBILITY_2_8
137 wxDEPRECATED( wxGLContext
* GetContext() const );
139 wxDEPRECATED( void SetCurrent() );
141 wxDEPRECATED( void OnSize(wxSizeEvent
& event
) );
142 #endif // WXWIN_COMPATIBILITY_2_8
144 #ifdef __WXUNIVERSAL__
145 // resolve the conflict with wxWindowUniv::SetCurrent()
146 virtual bool SetCurrent(bool doit
) { return wxWindow::SetCurrent(doit
); };
150 // override this to implement SetColour() in GL_INDEX_MODE
151 // (currently only implemented in wxX11 and wxMotif ports)
152 virtual int GetColourIndex(const wxColour
& WXUNUSED(col
)) { return -1; }
154 // create default palette if we're not using RGBA mode
155 // (not supported in most ports)
156 virtual wxPalette
CreateDefaultPalette() { return wxNullPalette
; }
158 // check if the given extension name is present in the space-separated list
159 // of extensions supported by the current implementation such as returned
160 // by glXQueryExtensionsString() or glGetString(GL_EXTENSIONS)
161 static bool IsExtensionInList(const char *list
, const char *extension
);
165 #if WXWIN_COMPATIBILITY_2_8
166 wxGLContext
*m_glContext
;
167 #endif // WXWIN_COMPATIBILITY_2_8
170 // ----------------------------------------------------------------------------
171 // wxGLApp: a special wxApp subclass for OpenGL applications which must be used
172 // to select a visual compatible with the given attributes
173 // ----------------------------------------------------------------------------
175 class WXDLLIMPEXP_GL wxGLAppBase
: public wxApp
178 wxGLAppBase() : wxApp() { }
180 // use this in the constructor of the user-derived wxGLApp class to
181 // determine if an OpenGL rendering context with these attributes
182 // is available - returns true if so, false if not.
183 virtual bool InitGLVisual(const int *attribList
) = 0;
186 #if defined(__WXMSW__)
187 #include "wx/msw/glcanvas.h"
188 #elif defined(__WXMOTIF__) || defined(__WXX11__)
189 #include "wx/x11/glcanvas.h"
190 #elif defined(__WXGTK20__)
191 #include "wx/gtk/glcanvas.h"
192 #elif defined(__WXGTK__)
193 #include "wx/gtk1/glcanvas.h"
194 #elif defined(__WXMAC__)
195 #include "wx/osx/glcanvas.h"
196 #elif defined(__WXCOCOA__)
197 #include "wx/cocoa/glcanvas.h"
199 #error "wxGLCanvas not supported in this wxWidgets port"
202 // wxMac and wxMSW don't need anything extra in wxGLAppBase, so declare it here
203 #ifndef wxGL_APP_DEFINED
205 class WXDLLIMPEXP_GL wxGLApp
: public wxGLAppBase
208 wxGLApp() : wxGLAppBase() { }
210 virtual bool InitGLVisual(const int *attribList
);
213 DECLARE_DYNAMIC_CLASS(wxGLApp
)
216 #endif // !wxGL_APP_DEFINED
218 #endif // wxUSE_GLCANVAS
220 #endif // _WX_GLCANVAS_H_BASE_