]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/glcanvas.h | |
3 | // Purpose: wxGLCanvas base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
8b089c5e JS |
12 | #ifndef _WX_GLCANVAS_H_BASE_ |
13 | #define _WX_GLCANVAS_H_BASE_ | |
14 | ||
a3081354 VZ |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_GLCANVAS | |
18 | ||
2b5f62a0 VZ |
19 | #define wxGLCanvasName _T("GLCanvas") |
20 | ||
8b089c5e JS |
21 | #if defined(__WXMSW__) |
22 | #include "wx/msw/glcanvas.h" | |
23 | #elif defined(__WXMOTIF__) | |
05e770c4 | 24 | #include "wx/x11/glcanvas.h" |
1be7a35c | 25 | #elif defined(__WXGTK20__) |
8b089c5e | 26 | #include "wx/gtk/glcanvas.h" |
1be7a35c MR |
27 | #elif defined(__WXGTK__) |
28 | #include "wx/gtk1/glcanvas.h" | |
83df96d6 JS |
29 | #elif defined(__WXX11__) |
30 | #include "wx/x11/glcanvas.h" | |
8b089c5e JS |
31 | #elif defined(__WXMAC__) |
32 | #include "wx/mac/glcanvas.h" | |
bd2af428 DE |
33 | #elif defined(__WXCOCOA__) |
34 | #include "wx/cocoa/glcanvas.h" | |
8b089c5e JS |
35 | #endif |
36 | ||
d7b766f5 | 37 | #include "wx/app.h" |
d8290dd0 | 38 | class WXDLLIMPEXP_GL wxGLApp : public wxApp |
a3081354 VZ |
39 | { |
40 | public: | |
41 | wxGLApp() : wxApp() { } | |
42 | virtual ~wxGLApp(); | |
43 | ||
44 | // use this in the constructor of the user-derived wxGLApp class to | |
45 | // determine if an OpenGL rendering context with these attributes | |
5d3e7b52 | 46 | // is available - returns true if so, false if not. |
a3081354 VZ |
47 | bool InitGLVisual(int *attribList); |
48 | ||
49 | private: | |
50 | DECLARE_DYNAMIC_CLASS(wxGLApp) | |
51 | }; | |
52 | ||
53 | #endif | |
54 | // wxUSE_GLCANVAS | |
8b089c5e JS |
55 | #endif |
56 | // _WX_GLCANVAS_H_BASE_ |