]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/glcanvas.h
added wx/defs.h include to correct compilation issues under Mac OS X
[wxWidgets.git] / include / wx / glcanvas.h
index 6b21c5060413b289d821b3c3241ebda46b010e5d..0a6c7291229f2815bae0e22a3f9ad49f144100cb 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef _WX_GLCANVAS_H_BASE_
 #define _WX_GLCANVAS_H_BASE_
 
+#include "wx/defs.h"
+
+#if wxUSE_GLCANVAS
+
 #if defined(__WXMSW__)
 #include "wx/msw/glcanvas.h"
 #elif defined(__WXMOTIF__)
 #include "wx/stubs/glcanvas.h"
 #endif
 
+class WXDLLEXPORT wxGLApp : public wxApp
+{
+public:
+    wxGLApp() : wxApp() { }
+    virtual ~wxGLApp();
+
+    // use this in the constructor of the user-derived wxGLApp class to
+    // determine if an OpenGL rendering context with these attributes
+    // is available - returns TRUE if so, FALSE if not.
+    bool InitGLVisual(int *attribList);
+
+private:
+    DECLARE_DYNAMIC_CLASS(wxGLApp)
+};
+
+#endif
+    // wxUSE_GLCANVAS
 #endif
     // _WX_GLCANVAS_H_BASE_